2023-12-23 11:31:14 +08:00
|
|
|
group 'com.amap.flutter.map'
|
2023-12-22 21:23:24 +08:00
|
|
|
version '1.0'
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
2023-12-23 11:31:14 +08:00
|
|
|
mavenCentral()
|
2023-12-22 21:23:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-12-23 11:31:14 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:3.5.3'
|
2023-12-22 21:23:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2023-12-23 11:31:14 +08:00
|
|
|
mavenCentral()
|
2023-12-22 21:23:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2024-11-19 17:23:45 +08:00
|
|
|
if (project.android.hasProperty("namespace")) {
|
|
|
|
namespace = "com.amap.flutter.map"
|
|
|
|
}
|
2024-01-03 18:52:32 +08:00
|
|
|
compileSdkVersion 34
|
2023-12-22 21:23:24 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
|
|
|
}
|
|
|
|
lintOptions {
|
|
|
|
disable 'InvalidPackage'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-11-19 17:23:45 +08:00
|
|
|
// implementation 'com.amap.api:3dmap-location-search:10.0.800_loc6.4.5_sea9.7.2'
|
|
|
|
implementation 'com.amap.api:navi-3dmap:latest.integration'
|
2024-07-29 00:28:45 +08:00
|
|
|
implementation 'androidx.annotation:annotation:1.8.1'
|
2023-12-22 21:23:24 +08:00
|
|
|
}
|
|
|
|
|