forked from ogaclejapan/SmartTabLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·42 lines (37 loc) · 1016 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
apply plugin: 'com.android.application'
android {
compileSdkVersion COMPILE_SDK_VERSION as int
buildToolsVersion BUILD_TOOLS_VERSION
defaultConfig {
minSdkVersion 10
targetSdkVersion COMPILE_SDK_VERSION as int
versionCode VERSION_CODE as int
versionName VERSION_NAME
}
def secretFile = file("${rootDir}/secret.gradle")
if (secretFile.exists()) {
apply from: secretFile.absolutePath
signingConfigs {
release {
storeFile project.ext.storeFile
storePassword project.ext.storePassword
keyAlias project.ext.keyAlias
keyPassword project.ext.keyPassword
}
}
}
buildTypes {
release {
if (secretFile.exists()) {
signingConfig signingConfigs.release
}
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile project(':library')
compile project(':utils-v4')
compile 'com.android.support:appcompat-v7:22.0.0'
}