28 lines
761 B
Groovy
28 lines
761 B
Groovy
apply plugin: 'android'
|
|
apply from: 'signing.gradle'
|
|
|
|
android {
|
|
compileSdkVersion 19
|
|
buildToolsVersion '19.1.0'
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion 19
|
|
}
|
|
buildTypes {
|
|
release {
|
|
signingConfig signingConfigs.release
|
|
runProguard false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':botejars')
|
|
compile fileTree(dir: 'libs', include: '*.jar')
|
|
compile 'com.android.support:support-v4:19.+'
|
|
compile 'com.android.support:appcompat-v7:19.+'
|
|
compile 'com.github.chrisbanes.actionbarpulltorefresh:extra-abc:+'
|
|
compile 'com.mcxiaoke.viewpagerindicator:library:2.4.1'
|
|
}
|