123456789101112131415161718192021222324252627282930313233343536 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- ext.kotlin_version = '1.6.10'
- ext.djisdk_version = '5.6.0'
- ext.arcgissdk_version = '100.8.0'
- repositories {
- google()
- jcenter()
- mavenCentral()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:4.2.2'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
- }
- allprojects {
- repositories {
- google()
- jcenter()
- mavenCentral()
- /* 添加ArcGIS For Android 依赖 */
- maven {
- url 'https://esri.jfrog.io/artifactory/arcgis'
- }
- maven {
- url 'https://jitpack.io'
- }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|