-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
43 lines (36 loc) · 831 Bytes
/
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
apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
group="com.github.kewang"
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.4'
}
}
dependencies {
implementation 'com.google.android.gms:play-services-location:21.2.0'
implementation 'com.google.android.gms:play-services-maps:18.2.0'
}
android {
compileSdkVersion 34
buildToolsVersion "29.0.2"
defaultConfig {
minSdkVersion 23
targetSdkVersion 34
versionCode 5
versionName "3.0.0"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}