|
@ -11,7 +11,7 @@ android { |
|
|
buildToolsVersion = '29.0.3' |
|
|
buildToolsVersion = '29.0.3' |
|
|
|
|
|
|
|
|
defaultConfig { |
|
|
defaultConfig { |
|
|
vectorDrawables.useSupportLibrary = true |
|
|
vectorDrawables.useSupportLibrary = true //TODO: Remove when minSdkVersion >= 21 |
|
|
applicationId "gr.thmmy.mthmmy" |
|
|
applicationId "gr.thmmy.mthmmy" |
|
|
minSdkVersion 19 |
|
|
minSdkVersion 19 |
|
|
targetSdkVersion 29 |
|
|
targetSdkVersion 29 |
|
@ -25,13 +25,14 @@ android { |
|
|
|
|
|
|
|
|
buildTypes { |
|
|
buildTypes { |
|
|
release { |
|
|
release { |
|
|
|
|
|
multiDexEnabled true //TODO: Remove when minSdkVersion >= 21 |
|
|
minifyEnabled true |
|
|
minifyEnabled true |
|
|
shrinkResources true |
|
|
shrinkResources true |
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
|
|
multiDexKeepProguard file('proguard-rules.pro') //TODO: Remove when minSdkVersion >= 21 |
|
|
multiDexKeepProguard file('proguard-rules.pro') //TODO: Remove when minSdkVersion >= 21 |
|
|
} |
|
|
} |
|
|
debug { |
|
|
debug { |
|
|
multiDexEnabled true |
|
|
multiDexEnabled true //TODO: Remove when minSdkVersion >= 21 |
|
|
def date = new Date().format('ddMMyy_HHmmss') |
|
|
def date = new Date().format('ddMMyy_HHmmss') |
|
|
archivesBaseName = archivesBaseName + "-$date" |
|
|
archivesBaseName = archivesBaseName + "-$date" |
|
|
firebaseCrashlytics { |
|
|
firebaseCrashlytics { |
|
@ -77,7 +78,7 @@ tasks.whenTaskAdded { task -> |
|
|
dependencies { |
|
|
dependencies { |
|
|
implementation fileTree(dir: 'libs', include: ['*.jar']) |
|
|
implementation fileTree(dir: 'libs', include: ['*.jar']) |
|
|
implementation project(":emojis") |
|
|
implementation project(":emojis") |
|
|
implementation 'androidx.appcompat:appcompat:1.2.0-rc01' |
|
|
implementation 'androidx.appcompat:appcompat:1.3.0-alpha01' |
|
|
implementation 'androidx.preference:preference:1.1.1' |
|
|
implementation 'androidx.preference:preference:1.1.1' |
|
|
implementation 'androidx.legacy:legacy-preference-v14:1.0.0' |
|
|
implementation 'androidx.legacy:legacy-preference-v14:1.0.0' |
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0' |
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0' |
|
@ -88,9 +89,9 @@ dependencies { |
|
|
implementation 'androidx.exifinterface:exifinterface:1.2.0' |
|
|
implementation 'androidx.exifinterface:exifinterface:1.2.0' |
|
|
implementation 'androidx.multidex:multidex:2.0.1' //TODO: Remove when minSdkVersion >= 21 |
|
|
implementation 'androidx.multidex:multidex:2.0.1' //TODO: Remove when minSdkVersion >= 21 |
|
|
implementation 'com.google.android.material:material:1.1.0' |
|
|
implementation 'com.google.android.material:material:1.1.0' |
|
|
implementation 'com.google.firebase:firebase-analytics:17.4.3' |
|
|
implementation 'com.google.firebase:firebase-analytics:17.4.4' |
|
|
implementation 'com.google.firebase:firebase-crashlytics:17.0.1' |
|
|
implementation 'com.google.firebase:firebase-crashlytics:17.1.1' |
|
|
implementation 'com.google.firebase:firebase-messaging:20.2.0' |
|
|
implementation 'com.google.firebase:firebase-messaging:20.2.3' |
|
|
implementation 'com.snatik:storage:2.1.0' |
|
|
implementation 'com.snatik:storage:2.1.0' |
|
|
implementation ('com.squareup.okhttp3:okhttp:3.12.12') { //TODO: Warning: OkHttp has dropped support for Android 19 since OkHttp 3.13! |
|
|
implementation ('com.squareup.okhttp3:okhttp:3.12.12') { //TODO: Warning: OkHttp has dropped support for Android 19 since OkHttp 3.13! |
|
|
force = true //TODO: Remove when minSdkVersion >= 21 |
|
|
force = true //TODO: Remove when minSdkVersion >= 21 |
|
|