33 lines
940 B
Groovy
33 lines
940 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
|
|
defaultConfig {
|
|
versionCode 702031 // MMmmPPv
|
|
versionName '7.2.3'
|
|
minSdkVersion 16
|
|
targetSdkVersion 30
|
|
resConfigs 'af', 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en', 'es', 'fi',
|
|
'fr', 'he', 'hi', 'hu', 'it', 'ja', 'ko', 'nl', 'no', 'pl',
|
|
'pt', 'ro', 'ru', 'sv', 'th', 'tr', 'uk', 'vi', 'zh'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Dependencies must be hardcoded to support F-droid
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
// Google
|
|
implementation 'com.google.android.gms:play-services-instantapps:17.0.0'
|
|
}
|