microframe/app/build.gradle

32 lines
897 B
Groovy
Raw Permalink Normal View History

2016-10-15 05:03:14 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "horse.jaeil.microframe"
2016-10-16 06:09:03 +00:00
minSdkVersion 21
2016-10-15 05:03:14 +00:00
targetSdkVersion 23
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2016-10-15 23:31:15 +00:00
productFlavors {
}
2016-10-15 05:03:14 +00:00
}
dependencies {
2016-10-15 23:31:15 +00:00
compile fileTree(include: ['*.jar'], dir: 'libs')
2016-10-15 05:03:14 +00:00
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:23.4.0'
testCompile 'junit:junit:4.12'
}