Amadeus/app/build.gradle

27 lines
627 B
Groovy
Raw Normal View History

2017-03-03 16:44:59 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
2017-03-03 16:44:59 +01:00
defaultConfig {
applicationId "com.example.yink.amadeus"
2017-03-05 16:35:03 +01:00
minSdkVersion 9
targetSdkVersion 20
2017-03-03 16:44:59 +01:00
versionCode 1
versionName "0.9.5-Beta.mkII"
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
}