X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fbuild.gradle;h=f52a93cfdb4b6b06ba80637549eada58598ac3f4;hb=7a1c39f9bb5a68ca31591d01b10a6f1c47145005;hp=c749baafcda550dcfadb320d9b27ffe2653749eb;hpb=8ee8e28f3ea0b1cbab0e792fb065475953bb0b55;p=PrivacyBrowserAndroid.git diff --git a/app/build.gradle b/app/build.gradle index c749baaf..f52a93cf 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,25 +1,72 @@ +/** + * Copyright 2016 Soren Stoutner . + * + * This file is part of Privacy Browser . + * + * Privacy Browser 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, + * 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 . + */ + apply plugin: 'com.android.application' android { - compileSdkVersion 22 - buildToolsVersion "22.0.1" - + compileSdkVersion 24 + buildToolsVersion "24.0.3" defaultConfig { - applicationId "com.stoutner.privacybrowser" - minSdkVersion 8 - targetSdkVersion 22 - versionCode 1 - versionName "1.0" + minSdkVersion 19 + targetSdkVersion 24 + versionCode 14 + versionName "1.12" } + buildTypes { - release { + debug { minifyEnabled false + shrinkResources false + } + + release { + minifyEnabled true + shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } + + productFlavors { + standard { + applicationId "com.stoutner.privacybrowser.standard" + } + + free { + applicationId "com.stoutner.privacybrowser.free" + } + } + + // `return void` removes the lint error: `Not all execution paths return a value`. + return void } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:22.2.0' + compile fileTree(include: ['*.jar'], dir: 'libs') + compile 'com.android.support:design:24.2.1' + + // GMS (Google Mobile Services) is necessary to update OpenSSL on API 19, but must be removed to build on F-Droid. + compile 'com.google.android.gms:play-services-safetynet:9.8.0' + + // Only compile `com.google.firebase:firebase-ads:9.8.0` for the free flavor. + freeCompile 'com.google.firebase:firebase-ads:9.8.0' } + +// Google's documentation says the following line is required for `firebase-ads` but things work correctly without it. I have no interest in including Google Mobile Services if I don't have to. +// https://firebase.google.com/docs/admob/android/quick-start +// apply plugin: 'com.google.gms.google-services' \ No newline at end of file