X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fbuild.gradle;h=a2b17ad8e52dbc4fdf5c74c6893ef9ae69154de4;hb=6eb99f0c383d678bc62208ddad0b1bfb2ee6e352;hp=03805931e9d78b07ad5a23d65172cd1c0e8ebb97;hpb=58e6c22da860871eadd1cbf214a30e88ced4f19e;p=PrivacyBrowserAndroid.git diff --git a/app/build.gradle b/app/build.gradle index 03805931..a2b17ad8 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.4.0' }