-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (40 loc) · 1.12 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
apply plugin: 'com.android.application'
android {
signingConfigs {
debug {
keyAlias 'anonace'
keyPassword 'anonace'
storeFile file('/Users/valentin/anonace.jks')
storePassword 'anonace'
}
}
compileSdkVersion 28
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.anonace.android"
minSdkVersion 14
targetSdkVersion 28
versionCode 6
versionName "0.0.6"
}
buildTypes {
release {
lintOptions {
checkReleaseBuilds false
abortOnError false
}
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
}
debug {
signingConfig signingConfigs.debug
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:24.2.1'
implementation 'com.android.support:support-v4:24.2.1'
}