-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
60 lines (55 loc) · 1.36 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
apply plugin: 'com.android.application'
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
}
}
allprojects {
repositories {
mavenCentral()
google()
}
}
android {
signingConfigs {
release {
if (System.getenv("SIGNING_KEY_ALIAS")) {
storeFile file(System.getenv("SIGNING_STORE_FILENAME"))
keyAlias System.getenv("SIGNING_KEY_ALIAS")
keyPassword System.getenv("SIGNING_KEY_PASSWORD")
storePassword System.getenv("SIGNING_STORE_PASSWORD")
}
}
}
compileSdkVersion 33
defaultConfig {
applicationId "com.github.mrrar.gps_locker"
minSdkVersion 11 // Android 3.0
targetSdkVersion 33 // Android 13.0
versionCode 11
versionName "0.1.1"
if (System.getenv("SIGNING_KEY_ALIAS")) {
signingConfig signingConfigs.release
}
}
buildTypes {
debug {
shrinkResources true
minifyEnabled true
}
release {
shrinkResources true
minifyEnabled true
}
}
productFlavors {
}
namespace 'com.github.mrrar.gps_locker'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
}