X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fbuild.gradle;h=ed3da87c482afa54ee5fb4319c51a4b8c930398a;hp=b0169cd584aff207911f8e2498c8d7bf517ed9dd;hb=347e702f50a02782add9400afa552fbee1cf7ab6;hpb=4e087dd6a40ef24878a308c0c9d3102d8b1acdd7 diff --git a/app/build.gradle b/app/build.gradle index b0169cd5..ed3da87c 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 8 + versionName "1.7" } + 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.2' }