Skip to content

Commit 4a26ed8

Browse files
authored
Fix build and run issues for Firestore Example (#10595)
1 parent c9325bd commit 4a26ed8

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>API_KEY</key>
6+
<string>AIzaSyAzlj4APqi5S58nFtE52Da0fYBOHA2MhaY</string>
7+
<key>BUNDLE_ID</key>
8+
<string>id</string>
9+
<key>CLIENT_ID</key>
10+
<string>123456789000-hjugbg6ud799v4c49dim8ce2usclthar.apps.googleusercontent.com</string>
11+
<key>DATABASE_URL</key>
12+
<string>https://mockproject-1234.firebaseio.com</string>
13+
<key>GCM_SENDER_ID</key>
14+
<string>123456789000</string>
15+
<key>GOOGLE_APP_ID</key>
16+
<string>1:123456789000:ios:f1bf012572b04063</string>
17+
<key>PLIST_VERSION</key>
18+
<string>1</string>
19+
<key>PROJECT_ID</key>
20+
<string>mockproject-1234</string>
21+
<key>REVERSED_CLIENT_ID</key>
22+
<string>com.googleusercontent.apps.123456789000-hjugbg6ud799v4c49dim8ce2usclthar</string>
23+
<key>STORAGE_BUCKET</key>
24+
<string>mockproject-1234.appspot.com</string>
25+
</dict>
26+
</plist>

Example/FirestoreSample/firestore.rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ service cloud.firestore {
1010
// Make sure to write security rules for your app before that time, or
1111
// else all client requests to your database will be denied until you
1212
// update your rules.
13-
allow read, write: if request.time < timestamp.date(2022, 9, 2);
13+
allow read, write: if request.time < timestamp.date(2123, 9, 2);
1414
}
1515
}
1616
}

0 commit comments

Comments
 (0)