38 Star 134 Fork 46

gis-luq / RuntimeViewer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 991 Bytes
一键复制 编辑 原始数据 按行查看 历史
GISJian 提交于 2021-01-26 16:10 . 更改arcgis sdk路径
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
//自定义编译输出路径
// buildDir = "C:/Android_Tmp_data/${rootProject.name}/${project.name}"
final def var = repositories {
google()
jcenter()
maven { url 'https://esri.jfrog.io/artifactory/arcgis' }
}
var
}
subprojects{
afterEvaluate {project ->
if(project.hasProperty("dependencies")){
dependencies {
implementation "com.esri.arcgisruntime:arcgis-android:100.9.0"
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
repositories {
google()
}
Android
1
https://gitee.com/gis-luq/RuntimeViewer.git
git@gitee.com:gis-luq/RuntimeViewer.git
gis-luq
RuntimeViewer
RuntimeViewer
master

搜索帮助