Skip to content

Commit 795ab26

Browse files
committed
Integrate Latest @ 217800785
Changes to all ... - Update Android dependency versions. Changes to admob/testapp ... - Add the sample AdMob Application ID to the Android manifest. Changes to auth/testapp ... - Update bundle ids for Firebase C++ Auth/DynamicLinks/Messaging/Invites testapps. Changes to dynamic_links/testapp ... - Update bundle ids for Firebase C++ Auth/DynamicLinks/Messaging/Invites testapps. Changes to invites/testapp ... - Update bundle ids for Firebase C++ Auth/DynamicLinks/Messaging/Invites testapps. - In the Firebase Invites testapp, change the Android Minimum Version Code we check against to 1 instead of 19, since the testapp's version code is, in fact, 1. Changes to messaging/testapp ... - Make placeholder values in C++ messaging testapp consistent. - Fix messaging C++ sample's Android package name. - Update bundle ids for Firebase C++ Auth/DynamicLinks/Messaging/Invites testapps. CL: 217800785
1 parent 1a3a979 commit 795ab26

File tree

20 files changed

+53
-47
lines changed

20 files changed

+53
-47
lines changed

admob/testapp/AndroidManifest.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
<uses-permission android:name="android.permission.WAKE_LOCK" />
99
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="24" />
1010
<application android:label="@string/app_name">
11+
<!-- You may replace the sample Admob App ID below with your own App ID. -->
12+
<meta-data
13+
android:name="com.google.android.gms.ads.APPLICATION_ID"
14+
android:value="ca-app-pub-3940256099942544~3347511713"/>
1115
<activity android:name="android.app.NativeActivity"
1216
android:screenOrientation="portrait"
1317
android:configChanges="orientation|screenSize">

admob/testapp/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ android {
9191
}
9292

9393
dependencies {
94-
compile 'com.google.firebase:firebase-core:16.0.3'
95-
compile 'com.google.firebase:firebase-ads:15.0.1'
96-
compile 'com.google.firebase:firebase-common:16.0.2'
94+
compile 'com.google.firebase:firebase-core:16.0.4'
95+
compile 'com.google.firebase:firebase-ads:17.0.0'
96+
compile 'com.google.firebase:firebase-common:16.0.3'
9797
}
9898

9999
apply plugin: 'com.google.gms.google-services'

admob/testapp/src/common_main.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ class LoggingRewardedVideoListener
7070

7171
// The AdMob app IDs for the test app.
7272
#if defined(__ANDROID__)
73+
// If you change the AdMob app ID for your Android app, make sure to change it
74+
// in AndroidManifest.xml as well.
7375
const char* kAdMobAppID = "ca-app-pub-3940256099942544~3347511713";
7476
#else
7577
const char* kAdMobAppID = "ca-app-pub-3940256099942544~1458002511";

analytics/testapp/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ android {
9191
}
9292

9393
dependencies {
94-
compile 'com.google.firebase:firebase-core:16.0.3'
95-
compile 'com.google.firebase:firebase-analytics:16.0.3'
96-
compile 'com.google.firebase:firebase-common:16.0.2'
94+
compile 'com.google.firebase:firebase-core:16.0.4'
95+
compile 'com.google.firebase:firebase-analytics:16.0.4'
96+
compile 'com.google.firebase:firebase-common:16.0.3'
9797
}
9898

9999
apply plugin: 'com.google.gms.google-services'

auth/testapp/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ android {
9191
}
9292

9393
dependencies {
94-
compile 'com.google.firebase:firebase-core:16.0.3'
95-
compile 'com.google.firebase:firebase-auth:16.0.3'
96-
compile 'com.google.firebase:firebase-common:16.0.2'
94+
compile 'com.google.firebase:firebase-core:16.0.4'
95+
compile 'com.google.firebase:firebase-auth:16.0.5'
96+
compile 'com.google.firebase:firebase-common:16.0.3'
9797
}
9898

9999
apply plugin: 'com.google.gms.google-services'

auth/testapp/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Building and Running the testapp
4949
- Register your iOS app with Firebase.
5050
- Create a new app on the [Firebase console](https://firebase.google.com/console/), and attach
5151
your iOS app to it.
52-
- You can use "com.google.ios.auth.testapp" as the iOS Bundle ID
52+
- You can use "com.google.FirebaseCppAuthTestApp.dev" as the iOS Bundle ID
5353
while you're testing. You can omit App Store ID while testing.
5454
- Add the GoogleService-Info.plist that you downloaded from Firebase
5555
console to the testapp root directory. This file identifies your iOS app

auth/testapp/testapp/Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<key>CFBundleExecutable</key>
88
<string>$(EXECUTABLE_NAME)</string>
99
<key>CFBundleIdentifier</key>
10-
<string>com.google.ios.auth.testapp</string>
10+
<string>com.google.FirebaseCppAuthTestApp.dev</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>
@@ -22,10 +22,10 @@
2222
<key>CFBundleTypeRole</key>
2323
<string>Editor</string>
2424
<key>CFBundleURLName</key>
25-
<string>com.google.ios.auth.testapp</string>
25+
<string>com.google.FirebaseCppAuthTestApp.dev</string>
2626
<key>CFBundleURLSchemes</key>
2727
<array>
28-
<string>com.google.ios.auth.testapp</string>
28+
<string>com.google.FirebaseCppAuthTestApp.dev</string>
2929
</array>
3030
</dict>
3131
<dict>

database/testapp/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ android {
9292
}
9393

9494
dependencies {
95-
compile 'com.google.firebase:firebase-core:16.0.3'
96-
compile 'com.google.firebase:firebase-auth:16.0.3'
97-
compile 'com.google.firebase:firebase-database:16.0.1'
95+
compile 'com.google.firebase:firebase-core:16.0.4'
96+
compile 'com.google.firebase:firebase-auth:16.0.5'
97+
compile 'com.google.firebase:firebase-database:16.0.3'
9898
}
9999

100100
apply plugin: 'com.google.gms.google-services'

dynamic_links/testapp/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ android {
9191
}
9292

9393
dependencies {
94-
compile 'com.google.firebase:firebase-core:16.0.3'
95-
compile 'com.google.firebase:firebase-invites:16.0.3'
96-
compile 'com.google.firebase:firebase-common:16.0.2'
94+
compile 'com.google.firebase:firebase-core:16.0.4'
95+
compile 'com.google.firebase:firebase-invites:16.0.4'
96+
compile 'com.google.firebase:firebase-common:16.0.3'
9797
}
9898

9999
apply plugin: 'com.google.gms.google-services'

dynamic_links/testapp/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Building and Running the testapp
3333
- Register your iOS app with Firebase.
3434
- Create a new app on the [Firebase console](https://firebase.google.com/console/), and attach
3535
your iOS app to it.
36-
- You can use "com.google.ios.dynamiclinks.testapp" as the iOS Bundle ID
36+
- You can use "com.google.FirebaseCppDynamicLinksTestApp.dev" as the iOS Bundle ID
3737
while you're testing. You can omit App Store ID while testing.
3838
- Add the GoogleService-Info.plist that you downloaded from Firebase
3939
console to the testapp root directory. This file identifies your iOS app

0 commit comments

Comments
 (0)