29 lines
796 B
Groovy
29 lines
796 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "24.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "org.y20k.trackbook"
|
|
minSdkVersion 22
|
|
targetSdkVersion 24
|
|
versionCode 3
|
|
versionName "0.9.2 (The Great Gig in the Sky)"
|
|
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'
|
|
compile 'org.osmdroid:osmdroid-android:5.2@aar'
|
|
}
|