-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGoogleService-Info.example.plist
More file actions
43 lines (41 loc) · 1.33 KB
/
Copy pathGoogleService-Info.example.plist
File metadata and controls
43 lines (41 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!--
This is an EXAMPLE file. Replace with your own GoogleService-Info.plist from Firebase Console.
Instructions:
1. Go to https://console.firebase.google.com/
2. Create or select your Firebase project
3. Add an iOS app with bundle ID: ai.bitsleuth.wallet
4. Download GoogleService-Info.plist
5. Replace this example file with your downloaded file
6. Place it in: ios/BitSleuthWallet/GoogleService-Info.plist AND root directory
See docs/FIREBASE_SETUP.md for complete setup guide.
-->
<plist version="1.0">
<dict>
<key>API_KEY</key>
<string>AIzaSy_YOUR_IOS_API_KEY_HERE</string>
<key>GCM_SENDER_ID</key>
<string>YOUR_PROJECT_NUMBER</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>ai.bitsleuth.wallet</string>
<key>PROJECT_ID</key>
<string>your-project-id</string>
<key>STORAGE_BUCKET</key>
<string>your-project-id.appspot.com</string>
<key>IS_ADS_ENABLED</key>
<false></false>
<key>IS_ANALYTICS_ENABLED</key>
<false></false>
<key>IS_APPINVITE_ENABLED</key>
<true></true>
<key>IS_GCM_ENABLED</key>
<true></true>
<key>IS_SIGNIN_ENABLED</key>
<true></true>
<key>GOOGLE_APP_ID</key>
<string>1:YOUR_PROJECT_NUMBER:ios:YOUR_APP_ID</string>
</dict>
</plist>