]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/build.gradle
Double-tap for full screen viewing. Fixes https://redmine.stoutner.com/issues/46.
[PrivacyBrowserAndroid.git] / app / build.gradle
index e8c755090ccb0216a642124e222fb2eb88739dfa..b6334127d9d0f6b8ad73e7efba7c0d0011d890df 100644 (file)
@@ -25,8 +25,8 @@ android {
     defaultConfig {
         minSdkVersion 19
         targetSdkVersion 24
-        versionCode 13
-        versionName "1.11"
+        versionCode 14
+        versionName "1.12"
     }
 
     buildTypes {
@@ -57,8 +57,13 @@ android {
 }
 
 dependencies {
-    compile fileTree(dir: 'libs', include: ['*.jar'])
+    compile fileTree(include: ['*.jar'], dir: 'libs')
     compile 'com.android.support:design:24.2.1'
-    // Only compile `com.google.android.gms:play-services-ads` for the free flavor.
-    freeCompile 'com.google.android.gms:play-services-ads:9.8.00'
+
+    // Only compile `com.google.firebase:firebase-ads:9.8.0` for the free flavor.
+    freeCompile 'com.google.firebase:firebase-ads:9.8.0'
 }
+
+// Google's documentation says the following line is required for `firebase-ads` but things work correctly without it.  I have no interest in including Google Mobile Services if I don't have to.
+// https://firebase.google.com/docs/admob/android/quick-start
+// apply plugin: 'com.google.gms.google-services'
\ No newline at end of file