Skip to content

Commit 1bb307f

Browse files
authored
Add source code for Getting Started with Sign in with Apple using Firebase Authentication on Apple platforms (#9)
* ✨ Starter project for Getting Started with Sign in with Apple using Firebase Authentication on Apple platforms * ✨ Final state for Getting Started with Sign in with Apple using Firebase Authentication on Apple platforms
1 parent 71f43a6 commit 1bb307f

112 files changed

Lines changed: 4451 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ xcuserdata/
4040
## Xcode 8 and earlier
4141
*.xcscmblueprint
4242
*.xccheckout
43+
4344
GoogleService-Info.plist
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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>CLIENT_ID</key>
6+
<string>233337430937-qv2lf458c3874r789gujjnqh4aa8i1i9.apps.googleusercontent.com</string>
7+
<key>REVERSED_CLIENT_ID</key>
8+
<string>com.googleusercontent.apps.233337430937-qv2lf458c3874r789gujjnqh4aa8i1i9</string>
9+
<key>API_KEY</key>
10+
<string>AIzaSyAxEWJvJ26PP-AorNAzOlrlYCuLy0xpc2s</string>
11+
<key>GCM_SENDER_ID</key>
12+
<string>233337430937</string>
13+
<key>PLIST_VERSION</key>
14+
<string>1</string>
15+
<key>BUNDLE_ID</key>
16+
<string>dev.peterfriese.Favourites</string>
17+
<key>PROJECT_ID</key>
18+
<string>favourites-1ae4d</string>
19+
<key>STORAGE_BUCKET</key>
20+
<string>favourites-1ae4d.appspot.com</string>
21+
<key>IS_ADS_ENABLED</key>
22+
<false/>
23+
<key>IS_ANALYTICS_ENABLED</key>
24+
<false/>
25+
<key>IS_APPINVITE_ENABLED</key>
26+
<true/>
27+
<key>IS_GCM_ENABLED</key>
28+
<true/>
29+
<key>IS_SIGNIN_ENABLED</key>
30+
<true/>
31+
<key>GOOGLE_APP_ID</key>
32+
<string>1:233337430937:ios:98fd3ace4db5637fb36908</string>
33+
</dict>
34+
</plist>
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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>CLIENT_ID</key>
6+
<string>233337430937-qv2lf458c3874r789gujjnqh4aa8i1i9.apps.googleusercontent.com</string>
7+
<key>REVERSED_CLIENT_ID</key>
8+
<string>com.googleusercontent.apps.233337430937-qv2lf458c3874r789gujjnqh4aa8i1i9</string>
9+
<key>API_KEY</key>
10+
<string>AIzaSyAxEWJvJ26PP-AorNAzOlrlYCuLy0xpc2s</string>
11+
<key>GCM_SENDER_ID</key>
12+
<string>233337430937</string>
13+
<key>PLIST_VERSION</key>
14+
<string>1</string>
15+
<key>BUNDLE_ID</key>
16+
<string>dev.peterfriese.Favourites</string>
17+
<key>PROJECT_ID</key>
18+
<string>favourites-1ae4d</string>
19+
<key>STORAGE_BUCKET</key>
20+
<string>favourites-1ae4d.appspot.com</string>
21+
<key>IS_ADS_ENABLED</key>
22+
<false/>
23+
<key>IS_ANALYTICS_ENABLED</key>
24+
<false/>
25+
<key>IS_APPINVITE_ENABLED</key>
26+
<true/>
27+
<key>IS_GCM_ENABLED</key>
28+
<true/>
29+
<key>IS_SIGNIN_ENABLED</key>
30+
<true/>
31+
<key>GOOGLE_APP_ID</key>
32+
<string>1:233337430937:ios:98fd3ace4db5637fb36908</string>
33+
</dict>
34+
</plist>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "dummy-project-id"
4+
}
5+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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>com.apple.developer.applesignin</key>
6+
<array>
7+
<string>Default</string>
8+
</array>
9+
</dict>
10+
</plist>

fundamentals/apple/auth-sign-in-with-apple/final/Favourites/Favourites.xcodeproj/project.pbxproj

Lines changed: 592 additions & 0 deletions
Large diffs are not rendered by default.

fundamentals/apple/auth-sign-in-with-apple/final/Favourites/Favourites.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

fundamentals/apple/auth-sign-in-with-apple/final/Favourites/Favourites.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 113 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)