X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fbuild.gradle;h=0a2c245bf31141fa1ec09236dccca5fa25e2e85b;hp=03805931e9d78b07ad5a23d65172cd1c0e8ebb97;hb=f386169ee9c68325562068394cb6b21b0b89be1c;hpb=58e6c22da860871eadd1cbf214a30e88ced4f19e diff --git a/app/build.gradle b/app/build.gradle index 03805931..0a2c245b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -27,10 +27,10 @@ android { buildToolsVersion "23.0.3" defaultConfig { applicationId "com.stoutner.privacybrowser" - minSdkVersion 15 + minSdkVersion 19 targetSdkVersion 23 - versionCode 5 - versionName "1.4" + versionCode 9 + versionName "1.8" } buildTypes { @@ -43,19 +43,17 @@ android { productFlavors { standard { applicationId "com.stoutner.privacybrowser.standard" - versionName "1.4-standard" } free { applicationId "com.stoutner.privacybrowser.free" - versionName "1.4-free" } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:design:23.3.0' - // Only compile com.google.android.gms:play-services-ads for the free version. - freeCompile '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' }