Jitpack to Migration
Step 1. Add it in your settingsTemplate.gradle in project:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
**ARTIFACTORYREPOSITORY**
google()
mavenCentral()
maven { url 'https://jitpack.io' } //added
flatDir {
dirs "${project(':unityLibrary').projectDir}/libs"
}
}
}Step 2. Add the dependency
gradle:
dependencies.xml
Last updated