X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fbuild.gradle;h=30954025b2a20e4a74143270b7dd2fd1b5f698e1;hp=5c9bb272e8fe8c3ffbbfb5ec5fa05c21424c10a5;hb=7a9f8fd0700dc347fa71d2a7bc296c98a57d3c0b;hpb=8f7e9b7db429568e26f00bc2eef88402d722bec7 diff --git a/app/build.gradle b/app/build.gradle index 5c9bb272..30954025 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,10 +27,10 @@ android { defaultConfig { minSdkVersion 19 targetSdkVersion 29 - versionCode 47 - versionName "3.3" + versionCode 53 + versionName "3.6.1" - // The `multiDexEnabled` entry could possibly be removed once the `minSdkVersion` is >= 21. + // `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' } } @@ -79,22 +78,22 @@ dependencies { // Include the following AndroidX libraries. implementation 'androidx.arch.core:core-common:2.1.0' implementation 'androidx.arch.core:core-runtime:2.1.0' - implementation 'androidx.appcompat:appcompat:1.1.0' + 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.2.0" - implementation 'androidx.drawerlayout:drawerlayout:1.0.0' - implementation 'androidx.preference:preference:1.1.0' - implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0' + 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.4.0' - // Include the Kotlin standard libraries - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61" + // 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.21" // Include the Google material library. - implementation 'com.google.android.material:material:1.1.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.0.0' + freeImplementation 'com.google.firebase:firebase-ads:19.6.0' } \ No newline at end of file