forked from geosmart/coordtransform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
82 lines (71 loc) · 1.99 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
}
}
allprojects {
repositories {
google()
maven { url 'https://jitpack.io' }
mavenCentral()
}
}
ext {
compileSdkVersion = 33
minSdkVersion = 19
targetSdkVersion = 33
}
apply plugin: 'com.android.application'
android {
compileSdk rootProject.compileSdkVersion
defaultConfig {
applicationId "com.github.ipcjs.coordtransform"
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
manifestPlaceholders = [
BAIDU_MAP_KEY : "rM8VXLKBO7K9F69vdAyNc1Mr9H8p9wma",
GOOGLE_MAP_KEY: "xx",
]
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
signingConfigs {
// your debug keystore
debug {
storeFile file("debug.keystore")
}
}
sourceSets {
main {
jniLibs.srcDir 'libs'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation project(':library')
implementation 'com.github.ipcjs.baidu-map-sdk:g01:g01_3.0.5'
testImplementation "junit:junit:4.13.2"
androidTestImplementation "androidx.test.ext:junit:1.1.5"
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "androidx.appcompat:appcompat:1.3.1"
}