-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathbuild.gradle
48 lines (44 loc) · 1.01 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.painless.pc"
minSdkVersion 16
targetSdkVersion 23
versionCode 160604
versionName "6.0.4"
}
buildTypes {
debug {
minifyEnabled false
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile("proguard-android.txt"), 'proguard-rules.txt'
}
}
sourceSets {
main {
res.srcDirs = ['res']
java.srcDirs = ['src']
manifest.srcFile 'AndroidManifest.xml'
}
}
lintOptions {
disable 'MissingTranslation'
disable 'ManifestResource'
}
}
dependencies {
provided files('libs/hidden-apis.jar')
provided files('libs/hidden-apis_2.jar')
}