X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fbuild.gradle;h=ad44a2b8d2672cf27ccf005dbc7693b009218540;hp=7e45a6393641121489d28c9d1dade09f98b6cb5e;hb=6b2cf168a9c3697be63dee603d05a88506c380a1;hpb=5bd318993ebf675433f514dd04fc3e29545c9312 diff --git a/app/build.gradle b/app/build.gradle index 7e45a639..03ce2d9b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,32 +1,36 @@ -/** - * Copyright 2016-2017 Soren Stoutner . +/* + * Copyright 2016-2022 Soren Stoutner . * - * This file is part of Privacy Browser . + * This file is part of Privacy Browser Android . * - * Privacy Browser is free software: you can redistribute it and/or modify + * Privacy Browser Android is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Privacy Browser is distributed in the hope that it will be useful, + * Privacy Browser Android is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Privacy Browser. If not, see . + * along with Privacy Browser Android. If not, see . */ -apply plugin: 'com.android.application' +plugins { + id 'com.android.application' + id 'kotlin-android' +} android { - compileSdkVersion 25 - buildToolsVersion "25.0.2" + compileSdk 33 + defaultConfig { - minSdkVersion 19 - targetSdkVersion 25 - versionCode 17 - versionName "1.14.1" + minSdk 23 + targetSdk 33 + versionCode 62 + versionName "3.12.1" + resConfigs "en", "de", "es", "fr", "it", "pt-rBR", "ru", "tr" } buildTypes { @@ -38,32 +42,47 @@ android { release { minifyEnabled true shrinkResources true - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } + // Gradle requires a `flavorDimension`, but it isn't used for anything in Privacy Browser. + flavorDimensions "basic" + productFlavors { standard { applicationId "com.stoutner.privacybrowser.standard" + dimension "basic" } - free { - applicationId "com.stoutner.privacybrowser.free" + alt { + applicationId "com.stoutner.privacybrowser.alt" + dimension "basic" } } - // `return void` removes the lint error: `Not all execution paths return a value`. - return void + namespace 'com.stoutner.privacybrowser' } dependencies { - compile fileTree(include: ['*.jar'], dir: 'libs') - compile 'com.android.support:design:25.1.0' + // Include the following AndroidX libraries. + implementation "androidx.activity:activity-ktx:1.7.0-alpha02" + implementation 'androidx.arch.core:core-common:2.1.0' + implementation 'androidx.arch.core:core-runtime:2.1.0' + implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'androidx.cardview:cardview:1.0.0' + implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0' + implementation 'androidx.core:core-ktx:1.9.0' + implementation 'androidx.drawerlayout:drawerlayout:1.1.1' + implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' + implementation 'androidx.preference:preference-ktx:1.2.0' + implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' + implementation 'androidx.viewpager:viewpager:1.0.0' + implementation 'androidx.webkit:webkit:1.5.0' - // Only compile `com.google.firebase:firebase-ads:9.8.0` for the free flavor. - freeCompile 'com.google.firebase:firebase-ads:9.8.0' -} + // Include the Kotlin standard library. This should be the same version number listed in project build.gradle. + implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.20' -// Google's documentation says the following line is required for `firebase-ads` but things work correctly without it. I have no interest in applying the Google Mobile Services plugin in the standard flavor if I don't have to. -// I suspect that in the free flavor `firebase-ads` applies it even when not specified. https://firebase.google.com/docs/admob/android/quick-start -// apply plugin: 'com.google.gms.google-services' \ No newline at end of file + // Include the Google material library. + implementation 'com.google.android.material:material:1.7.0' +}