X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fbuild.gradle;h=0a2c245bf31141fa1ec09236dccca5fa25e2e85b;hp=b0169cd584aff207911f8e2498c8d7bf517ed9dd;hb=f386169ee9c68325562068394cb6b21b0b89be1c;hpb=4e087dd6a40ef24878a308c0c9d3102d8b1acdd7 diff --git a/app/build.gradle b/app/build.gradle index b0169cd5..0a2c245b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,7 @@ /** * Copyright 2016 Soren Stoutner . * - * This file is part of Privacy Browser. + * 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 @@ -22,38 +22,38 @@ apply plugin: 'com.android.application' android { signingConfigs { } + compileSdkVersion 23 - buildToolsVersion "23.0.2" + buildToolsVersion "23.0.3" defaultConfig { applicationId "com.stoutner.privacybrowser" - minSdkVersion 10 + minSdkVersion 19 targetSdkVersion 23 - versionCode 1 - versionName "1.0" + versionCode 9 + versionName "1.8" } + buildTypes { release { - minifyEnabled false + minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } + productFlavors { standard { applicationId "com.stoutner.privacybrowser.standard" - versionName "1.0-standard" } free { applicationId "com.stoutner.privacybrowser.free" - versionName "1.0-free" } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:23.2.0' - compile 'com.android.support:design:23.2.0' - compile 'com.android.support:support-v4:23.2.0' - compile 'com.google.android.gms:play-services-ads:8.4.0' + compile 'com.android.support:design:23.4.0' + // Only compile `com.google.android.gms:play-services-ads` for the free flavor. + freeCompile 'com.google.android.gms:play-services-ads:9.2.1' }