32 lines
717 B
Groovy
32 lines
717 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion "22.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 22
|
|
versionCode Integer.parseInt(project.VERSION_CODE)
|
|
versionName project.VERSION_NAME
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
release {
|
|
//minifyEnabled true
|
|
//shrinkResources true
|
|
//proguardFiles getDefaultProguardFile('proguard-android.txt')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile project(':library')
|
|
|
|
// Image loading sample
|
|
compile 'com.github.bumptech.glide:glide:3.5.2'
|
|
}
|