trkpt/app/build.gradle

31 lines
840 B
Groovy
Raw Normal View History

2016-08-29 12:50:41 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
2016-08-29 12:50:41 +00:00
defaultConfig {
applicationId "org.y20k.trackbook"
minSdkVersion 22
targetSdkVersion 24
versionCode 5
versionName "0.9.4 (The Great Gig in the Sky)"
2016-08-29 12:50:41 +00:00
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
2016-08-29 12:50:41 +00:00
compile 'org.osmdroid:osmdroid-android:5.2@aar'
compile 'com.google.code.gson:gson:2.4'
2016-08-29 12:50:41 +00:00
}