1
0
mirror of https://github.com/sunflower-zyb/Blog.git synced 2025-06-07 14:34:03 +08:00
Blog/app/build.gradle
2015-08-27 15:08:33 +08:00

26 lines
584 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.sunflower.blog"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.1'
}