X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fbuild.gradle;h=25c4781126806ddfebc29ce427cc2a21d3ace482;hb=57b05bcbae9759d4b58ce3b96ede61992eb34eee;hp=b0169cd584aff207911f8e2498c8d7bf517ed9dd;hpb=4e087dd6a40ef24878a308c0c9d3102d8b1acdd7;p=PrivacyBrowserAndroid.git diff --git a/app/build.gradle b/app/build.gradle index b0169cd5..25c47811 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 15 targetSdkVersion 23 - versionCode 1 - versionName "1.0" + versionCode 7 + versionName "1.6" } + 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 version. + freeCompile 'com.google.android.gms:play-services-ads:9.0.0' }