trkpt/app/build.gradle

43 lines
1.4 KiB
Groovy
Raw Normal View History

2016-08-29 12:50:41 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion project.ext.compileSdkVersion
buildToolsVersion project.ext.buildToolsVersion
2016-08-29 12:50:41 +00:00
defaultConfig {
applicationId project.ext.applicationId
minSdkVersion project.ext.minSdkVersion
targetSdkVersion project.ext.targetSdkVersion
versionCode project.ext.versionCode
versionName project.ext.versionName
2016-08-29 12:50:41 +00:00
vectorDrawables.useSupportLibrary = true
2018-03-20 19:43:00 +00:00
resConfigs "en", "de", "id", "it", "ja", "nb-rNO", "nl"
2016-08-29 12:50:41 +00:00
}
buildTypes {
release {
minifyEnabled true
2017-11-28 21:02:45 +00:00
shrinkResources true
2016-08-29 12:50:41 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
// minifyEnabled true
// shrinkResources true
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
2016-08-29 12:50:41 +00:00
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation "androidx.constraintlayout:constraintlayout:$constraintlayoutVersion"
implementation "androidx.cardview:cardview:$cardviewVersion"
implementation "com.google.android.material:material:$materialVersion"
implementation 'org.osmdroid:osmdroid-android:' + osmdroidVersion
implementation 'com.google.code.gson:gson:' + gsonVersion
2016-08-29 12:50:41 +00:00
}