Files
SellyCloudSDK_Android_demo/settings.gradle

25 lines
502 B
Groovy

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
mavenLocal()
google()
mavenCentral()
maven { url 'https://jitpack.io' }
// Local AARs for the demo
flatDir {
dirs file('example/libs')
}
}
}
rootProject.name = "SellyCloudSDKExample"
include ':example'