forked from sengjea/calibre-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·62 lines (54 loc) · 1.35 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7+'
}
}
apply plugin: 'android'
dependencies {
compile 'com.android.support:support-v4:19.0.+'
}
repositories {
mavenCentral()
}
android {
compileSdkVersion 19
buildToolsVersion "19"
defaultConfig {
versionCode 11
versionName '1.1.4.6'
minSdkVersion 5
targetSdkVersion 19
}
lintOptions {
disable 'NewApi'
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDir 'src/main/java'
res.srcDir 'src/main/res'
}
}
signingConfigs {
release {
Properties keystore = new Properties()
keystore.load(new FileInputStream(file("../keystore.properties")))
storeFile file(keystore['storeFile'])
storePassword keystore['storePassword']
keyAlias keystore['keyAlias']
keyPassword keystore['keyPassword']
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
applicationVariants.all { variant ->
apk = variant.outputFile
variant.outputFile = new File(apk.parentFile, apk.name.replace("-release", "-v" + defaultConfig.versionName))
}
}