Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file modified .DS_Store
Binary file not shown.
Binary file added TIL to Code/Pods/.DS_Store
Binary file not shown.
189 changes: 189 additions & 0 deletions TIL to Code/TIL to Code.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions TIL to Code/TIL to Code/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
//

import UIKit
import Firebase


@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
Expand All @@ -34,6 +36,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
FirebaseApp.configure()

return true
}

Expand Down
40 changes: 40 additions & 0 deletions TIL to Code/TIL to Code/GoogleService-Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?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">
<plist version="1.0">
<dict>
<key>AD_UNIT_ID_FOR_BANNER_TEST</key>
<string>ca-app-pub-3940256099942544/2934735716</string>
<key>AD_UNIT_ID_FOR_INTERSTITIAL_TEST</key>
<string>ca-app-pub-3940256099942544/4411468910</string>
<key>CLIENT_ID</key>
<string>762543403547-5c56l3vqo5qfhva8qkijg5u5ccegg9k8.apps.googleusercontent.com</string>
<key>REVERSED_CLIENT_ID</key>
<string>com.googleusercontent.apps.762543403547-5c56l3vqo5qfhva8qkijg5u5ccegg9k8</string>
<key>API_KEY</key>
<string>AIzaSyCJ5uJO5Lgyq0Wx0D_A6MTmhJGvT4shBcA</string>
<key>GCM_SENDER_ID</key>
<string>762543403547</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>com.codex.TIL-to-Code</string>
<key>PROJECT_ID</key>
<string>til-to-code</string>
<key>STORAGE_BUCKET</key>
<string>til-to-code.appspot.com</string>
<key>IS_ADS_ENABLED</key>
<true></true>
<key>IS_ANALYTICS_ENABLED</key>
<false></false>
<key>IS_APPINVITE_ENABLED</key>
<false></false>
<key>IS_GCM_ENABLED</key>
<true></true>
<key>IS_SIGNIN_ENABLED</key>
<true></true>
<key>GOOGLE_APP_ID</key>
<string>1:762543403547:ios:9d6bb2dc63d3c206</string>
<key>DATABASE_URL</key>
<string>https://til-to-code.firebaseio.com</string>
</dict>
</plist>
40 changes: 40 additions & 0 deletions TIL to Code/TIL to CodeUITests/GoogleService-Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?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">
<plist version="1.0">
<dict>
<key>AD_UNIT_ID_FOR_BANNER_TEST</key>
<string>ca-app-pub-3940256099942544/2934735716</string>
<key>AD_UNIT_ID_FOR_INTERSTITIAL_TEST</key>
<string>ca-app-pub-3940256099942544/4411468910</string>
<key>CLIENT_ID</key>
<string>762543403547-5c56l3vqo5qfhva8qkijg5u5ccegg9k8.apps.googleusercontent.com</string>
<key>REVERSED_CLIENT_ID</key>
<string>com.googleusercontent.apps.762543403547-5c56l3vqo5qfhva8qkijg5u5ccegg9k8</string>
<key>API_KEY</key>
<string>AIzaSyCJ5uJO5Lgyq0Wx0D_A6MTmhJGvT4shBcA</string>
<key>GCM_SENDER_ID</key>
<string>762543403547</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>com.codex.TIL-to-Code</string>
<key>PROJECT_ID</key>
<string>til-to-code</string>
<key>STORAGE_BUCKET</key>
<string>til-to-code.appspot.com</string>
<key>IS_ADS_ENABLED</key>
<true></true>
<key>IS_ANALYTICS_ENABLED</key>
<false></false>
<key>IS_APPINVITE_ENABLED</key>
<false></false>
<key>IS_GCM_ENABLED</key>
<true></true>
<key>IS_SIGNIN_ENABLED</key>
<true></true>
<key>GOOGLE_APP_ID</key>
<string>1:762543403547:ios:9d6bb2dc63d3c206</string>
<key>DATABASE_URL</key>
<string>https://til-to-code.firebaseio.com</string>
</dict>
</plist>
File renamed without changes.
31 changes: 31 additions & 0 deletions Til to Code/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

use_frameworks!
target 'TIL to Code' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks


# Pods for TIL to Code
pod "Firebase"
pod "Firebase/Auth"
pod "Firebase/Database"
end

target 'TIL to CodeTests' do
inherit! :search_paths
# Pods for testing
pod "Firebase"
pod "Firebase/Auth"
pod "Firebase/Database"
end

target 'TIL to CodeUITests' do
inherit! :search_paths
# Pods for testing
pod "Firebase"
pod "Firebase/Auth"
pod "Firebase/Database"
end


107 changes: 107 additions & 0 deletions Til to Code/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
PODS:
- Firebase (5.12.0):
- Firebase/Core (= 5.12.0)
- Firebase/Auth (5.12.0):
- Firebase/CoreOnly
- FirebaseAuth (= 5.0.5)
- Firebase/Core (5.12.0):
- Firebase/CoreOnly
- FirebaseAnalytics (= 5.3.0)
- Firebase/CoreOnly (5.12.0):
- FirebaseCore (= 5.1.7)
- Firebase/Database (5.12.0):
- Firebase/CoreOnly
- FirebaseDatabase (= 5.0.3)
- FirebaseAnalytics (5.3.0):
- FirebaseCore (~> 5.1)
- FirebaseInstanceID (~> 3.3)
- GoogleAppMeasurement (~> 5.3)
- GoogleUtilities/AppDelegateSwizzler (~> 5.2)
- GoogleUtilities/MethodSwizzler (~> 5.2)
- GoogleUtilities/Network (~> 5.2)
- "GoogleUtilities/NSData+zlib (~> 5.2)"
- nanopb (~> 0.3)
- FirebaseAuth (5.0.5):
- FirebaseAuthInterop (~> 1.0)
- FirebaseCore (~> 5.1)
- GoogleUtilities/Environment (~> 5.2)
- GTMSessionFetcher/Core (~> 1.1)
- FirebaseAuthInterop (1.0.0)
- FirebaseCore (5.1.7):
- GoogleUtilities/Logger (~> 5.2)
- FirebaseDatabase (5.0.3):
- FirebaseCore (~> 5.0)
- leveldb-library (~> 1.18)
- FirebaseInstanceID (3.3.0):
- FirebaseCore (~> 5.1)
- GoogleUtilities/Environment (~> 5.3)
- GoogleUtilities/UserDefaults (~> 5.3)
- GoogleAppMeasurement (5.3.0):
- GoogleUtilities/AppDelegateSwizzler (~> 5.2)
- GoogleUtilities/MethodSwizzler (~> 5.2)
- GoogleUtilities/Network (~> 5.2)
- "GoogleUtilities/NSData+zlib (~> 5.2)"
- nanopb (~> 0.3)
- GoogleUtilities/AppDelegateSwizzler (5.3.4):
- GoogleUtilities/Environment
- GoogleUtilities/Logger
- GoogleUtilities/Network
- GoogleUtilities/Environment (5.3.4)
- GoogleUtilities/Logger (5.3.4):
- GoogleUtilities/Environment
- GoogleUtilities/MethodSwizzler (5.3.4):
- GoogleUtilities/Logger
- GoogleUtilities/Network (5.3.4):
- GoogleUtilities/Logger
- "GoogleUtilities/NSData+zlib"
- GoogleUtilities/Reachability
- "GoogleUtilities/NSData+zlib (5.3.4)"
- GoogleUtilities/Reachability (5.3.4):
- GoogleUtilities/Logger
- GoogleUtilities/UserDefaults (5.3.4):
- GoogleUtilities/Logger
- GTMSessionFetcher/Core (1.2.0)
- leveldb-library (1.20)
- nanopb (0.3.901):
- nanopb/decode (= 0.3.901)
- nanopb/encode (= 0.3.901)
- nanopb/decode (0.3.901)
- nanopb/encode (0.3.901)

DEPENDENCIES:
- Firebase
- Firebase/Auth
- Firebase/Database

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- Firebase
- FirebaseAnalytics
- FirebaseAuth
- FirebaseAuthInterop
- FirebaseCore
- FirebaseDatabase
- FirebaseInstanceID
- GoogleAppMeasurement
- GoogleUtilities
- GTMSessionFetcher
- leveldb-library
- nanopb

SPEC CHECKSUMS:
Firebase: 9190018e296139d938b99521cde0c15a6e8d2946
FirebaseAnalytics: 63202d2665de4e6adcbdce189135255d8b5962ba
FirebaseAuth: 9299ab178271bec7426967b05b2718bb6fc31f17
FirebaseAuthInterop: 0ffa57668be100582bb7643d4fcb7615496c41fc
FirebaseCore: 027d350adc039aa5483357c6f56556f117c5170e
FirebaseDatabase: e2bcbc106adc4b11a2da3ec2eb63c0c4a44f2f54
FirebaseInstanceID: e2fa4cb35ef5558c200f7f0ad8a53e212215f93e
GoogleAppMeasurement: 5029d78f2b438bd30ffb44e6c558b57c21622727
GoogleUtilities: abb092d2c12e817fa3e0e7b274987dd72fb86ec3
GTMSessionFetcher: 0c4baf0a73acd0041bf9f71ea018deedab5ea84e
leveldb-library: 08cba283675b7ed2d99629a4bc5fd052cd2bb6a5
nanopb: 2901f78ea1b7b4015c860c2fdd1ea2fee1a18d48

PODFILE CHECKSUM: a11de7113df12f33709fee00a7614343c1e014b2

COCOAPODS: 1.5.3
5 changes: 5 additions & 0 deletions Til to Code/Pods/Firebase/.cocoapods.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Til to Code/Pods/Firebase/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

105 changes: 105 additions & 0 deletions Til to Code/Pods/Firebase/CoreOnly/Sources/Firebase.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Til to Code/Pods/Firebase/CoreOnly/Sources/module.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading