1234567891011121314151617181920212223 |
- pluginManagement {
- repositories {
- gradlePluginPortal()
- google()
- mavenCentral()
- maven {
- url "https://repo.eclipse.org/content/repositories/paho-snapshots/"
- }
- }
- }
- dependencyResolutionManagement {
- repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
- repositories {
- google()
- mavenCentral()
- }
- }
- include ':app'
- rootProject.name='XPWatchCommonService'
- include ':libaws-mqtt-android'
- include ':libPahoAndroid'
- include ':libPaho'
|