48 lines
1.4 KiB
Groovy
48 lines
1.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
|
|
compileSdkVersion project.ext.compileSdkVersion
|
|
// buildToolsVersion is optional because the plugin uses a recommended version by default
|
|
|
|
defaultConfig {
|
|
applicationId project.ext.applicationId
|
|
minSdkVersion project.ext.minSdkVersion
|
|
targetSdkVersion project.ext.targetSdkVersion
|
|
versionCode project.ext.versionCode
|
|
versionName project.ext.versionName
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
|
resConfigs "b+zh+HANS+CN", "en", "da", "de", "fr", "id", "it", "ja", "nb-rNO", "nl", "sv"
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
|
|
}
|
|
|
|
lintOptions {
|
|
warning 'MissingTranslation'
|
|
}
|
|
|
|
}
|
|
|
|
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"
|
|
|
|
}
|