-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathbuild.gradle
43 lines (36 loc) · 979 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 20
buildToolsVersion '20.0.0'
defaultConfig {
minSdkVersion 9
targetSdkVersion 20
versionCode 3
versionName "1.2"
}
signingConfigs {
release {
storePassword System.env['SIGNING_PASSWORD']
keyAlias 'veeti'
keyPassword ''
}
}
if (System.env['SIGNING_KEYSTORE']) {
signingConfigs.release.storeFile = file(System.env['SIGNING_KEYSTORE'])
buildTypes.release.signingConfig = signingConfigs.release
} else {
buildTypes.release.signingConfig = null
print "Release signing not set up. Set SIGNING_KEYSTORE and SIGNING_PASSWORD in the environment.\n"
}
}
dependencies {
provided files('libs/XposedBridge.jar')
}