X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fbuild.gradle;fp=app%2Fbuild.gradle;h=8a16a90c8cdc0f0ee50d267f714ca41868937bf7;hp=ebf69c8ad30ee56a5def9549221f1e711e0d06e1;hb=83a2b6e5635956bb940642e0e5beb47453145dc3;hpb=bc29bcf998135032c958dc1926f70f3749173f3e diff --git a/app/build.gradle b/app/build.gradle index ebf69c8a..8a16a90c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -58,6 +58,11 @@ android { } } + buildFeatures { + // Generate BuildConfig so it can be accessed from withing the app. + buildConfig = true + } + // Gradle requires a `flavorDimension`, but it isn't used for anything in Privacy Browser. flavorDimensions = ['basic'] @@ -78,7 +83,7 @@ android { dependencies { // Include the following AndroidX libraries. - implementation "androidx.activity:activity-ktx:1.8.1" + implementation "androidx.activity:activity-ktx:1.8.2" implementation 'androidx.arch.core:core-common:2.2.0' implementation 'androidx.arch.core:core-runtime:2.2.0' implementation 'androidx.appcompat:appcompat:1.6.1' @@ -90,11 +95,11 @@ dependencies { implementation 'androidx.preference:preference-ktx:1.2.1' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.viewpager:viewpager:1.0.0' - implementation 'androidx.webkit:webkit:1.8.0' + implementation 'androidx.webkit:webkit:1.9.0' // Include the Kotlin standard library. This should be the same version number listed in project build.gradle. - implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.22' + implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.0' // Include the Google material library. - implementation 'com.google.android.material:material:1.10.0' + implementation 'com.google.android.material:material:1.11.0' }