Amadeus/app/build.gradle

27 lines
636 B
Groovy
Raw Permalink Normal View History

2017-03-03 16:44:59 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
2018-04-29 12:19:34 +02:00
buildToolsVersion '26.0.2'
2017-03-03 16:44:59 +01:00
defaultConfig {
2018-04-29 12:19:34 +02:00
applicationId "com.example.yink.amadeus.kurisutina"
2017-03-05 16:35:03 +01:00
minSdkVersion 9
targetSdkVersion 20
2017-03-03 16:44:59 +01:00
versionCode 1
2018-04-29 23:50:27 +02:00
versionName "0.9.6-alpha.5"
2017-03-03 16:44:59 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
2017-03-18 00:33:19 +01:00
compile 'com.android.support:appcompat-v7:25.3.0'
2017-03-03 16:44:59 +01:00
}