Hi, everybody
I’m asking for advice on connecting a local maven. I have my own .aar + .pom package. I am creating an extension_feature folder in the root of the project. Next, manifests / arm64-android and the file build.gradle
repositories {
mavenCentral()
maven { url = url(“C:/maven”) }
}
dependencies {
implementation of “com.plugin.defold.feature:1.0.0”
}
But I always get a ResolveException error.
The project is minimal. The package connects well in Android Studio or Unreal Engine projects.
Any advice, what’s wrong?