|
@ -14,8 +14,8 @@ android { |
|
|
applicationId "gr.thmmy.mthmmy" |
|
|
applicationId "gr.thmmy.mthmmy" |
|
|
minSdkVersion 19 |
|
|
minSdkVersion 19 |
|
|
targetSdkVersion 29 |
|
|
targetSdkVersion 29 |
|
|
versionCode 23 |
|
|
versionCode 24 |
|
|
versionName "1.8.0" |
|
|
versionName "1.8.1" |
|
|
archivesBaseName = "mTHMMY-v$versionName" |
|
|
archivesBaseName = "mTHMMY-v$versionName" |
|
|
buildConfigField "String", "CURRENT_BRANCH", "\"" + getCurrentBranch() + "\"" |
|
|
buildConfigField "String", "CURRENT_BRANCH", "\"" + getCurrentBranch() + "\"" |
|
|
buildConfigField "String", "COMMIT_HASH", "\"" + getCommitHash() + "\"" |
|
|
buildConfigField "String", "COMMIT_HASH", "\"" + getCommitHash() + "\"" |
|
@ -27,6 +27,7 @@ android { |
|
|
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 |
|
|
} |
|
|
} |
|
|
debug { |
|
|
debug { |
|
|
multiDexEnabled true |
|
|
multiDexEnabled true |
|
@ -83,12 +84,15 @@ dependencies { |
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' |
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' |
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' |
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' |
|
|
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 '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.3' |
|
|
implementation 'com.google.firebase:firebase-messaging:20.2.0' |
|
|
implementation 'com.google.firebase:firebase-messaging:20.2.0' |
|
|
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1' |
|
|
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1' |
|
|
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 v.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 |
|
|
|
|
|
} |
|
|
implementation 'org.jsoup:jsoup:1.13.1' |
|
|
implementation 'org.jsoup:jsoup:1.13.1' |
|
|
implementation 'joda-time:joda-time:2.10.4' |
|
|
implementation 'joda-time:joda-time:2.10.4' |
|
|
implementation 'com.github.franmontiel:PersistentCookieJar:1.0.1' |
|
|
implementation 'com.github.franmontiel:PersistentCookieJar:1.0.1' |
|
|