X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fbuild.gradle;h=8735b5610fa5b9523ec346cb77096a2ddcd8e7d8;hb=78e6b0e9a553e3bf800e4c69535c46fb63bef017;hp=ce410bdeba20aa64cfcb1567d57662d4db2b425e;hpb=379ae3eabfd9ee949151b7b218b875ffcc627c5a;p=PrivacyBrowserAndroid.git diff --git a/app/build.gradle b/app/build.gradle index ce410bde..8735b561 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -19,7 +19,6 @@ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' -apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 29 @@ -28,8 +27,8 @@ android { defaultConfig { minSdkVersion 19 targetSdkVersion 29 - versionCode 50 - versionName "3.5" + versionCode 53 + versionName "3.6.1" // `multiDexEnabled` can possibly be removed once the `minSdkVersion` is >= 21. multiDexEnabled true @@ -44,7 +43,7 @@ android { release { minifyEnabled true shrinkResources true - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } @@ -82,19 +81,19 @@ dependencies { implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0' - implementation "androidx.core:core-ktx:1.3.1" - implementation 'androidx.drawerlayout:drawerlayout:1.1.0' - implementation 'androidx.preference:preference:1.1.1' + implementation "androidx.core:core-ktx:1.3.2" + implementation 'androidx.drawerlayout:drawerlayout:1.1.1' + implementation 'androidx.preference:preference-ktx:1.1.1' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.viewpager:viewpager:1.0.0' - implementation 'androidx.webkit:webkit:1.2.0' + implementation 'androidx.webkit:webkit:1.3.0' - // Include the Kotlin standard libraries - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72" + // Include the Kotlin standard libraries. This should be the same version number listed in project build.gradle. + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.20" // Include the Google material library. - implementation 'com.google.android.material:material:1.2.0' + implementation 'com.google.android.material:material:1.2.1' // Only compile Firebase ads for the free flavor. - freeImplementation 'com.google.firebase:firebase-ads:19.3.0' + freeImplementation 'com.google.firebase:firebase-ads:19.5.0' } \ No newline at end of file