2020-04-08 12:34:28 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2020-08-17 12:56:29 +00:00
|
|
|
|
|
|
|
if (System.getenv('IS_GOOGLE_BUILD')) {
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|
|
|
|
}
|
2020-04-08 12:34:28 +00:00
|
|
|
|
|
|
|
android {
|
2020-07-01 02:52:35 +00:00
|
|
|
compileSdkVersion 30
|
2020-04-08 12:34:28 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2020-08-25 03:02:04 +00:00
|
|
|
versionCode 800061
|
|
|
|
versionName '8.0.6'
|
2020-08-18 02:39:29 +00:00
|
|
|
minSdkVersion 21
|
2020-07-01 02:52:35 +00:00
|
|
|
targetSdkVersion 30
|
2020-04-08 12:34:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-04-20 03:28:49 +00:00
|
|
|
// Dependencies must be hardcoded to support F-droid
|
|
|
|
|
2020-04-08 12:34:28 +00:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2020-08-16 23:28:16 +00:00
|
|
|
implementation project(':external')
|
2020-04-08 12:34:28 +00:00
|
|
|
|
|
|
|
// Google
|
2020-08-16 23:28:16 +00:00
|
|
|
implementation 'com.android.billingclient:billing-ktx:3.0.0'
|
2020-04-20 03:28:49 +00:00
|
|
|
implementation 'com.google.android.gms:play-services-instantapps:17.0.0'
|
2020-08-25 01:23:23 +00:00
|
|
|
implementation 'com.google.android.gms:play-services-games:20.0.0'
|
2020-08-16 23:28:16 +00:00
|
|
|
implementation 'com.google.android.gms:play-services-auth:18.1.0'
|
|
|
|
|
|
|
|
// Firebase
|
|
|
|
implementation 'com.google.firebase:firebase-analytics:17.5.0'
|
|
|
|
|
|
|
|
// Kotlin Lib
|
2020-08-25 03:10:23 +00:00
|
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.0'
|
2020-04-08 12:34:28 +00:00
|
|
|
}
|