aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example
Commit message (Collapse)AuthorAge
* APNs token handling improvements. (#157)Gravatar Xiangtian Dai2017-07-28
| | | | | | | | | | | | | * APNs token handling improvements. - Calls VerifyClient without token anyway if the APNs token cannot be retrieved. This allows server to use discretion if needed in future. The developer will receive the same error as before. - Moves token formatting code to the token class itself to make the main logic in the provider class more clear. This also eliminates duplicated code in the sample app. * Adds a comment about a string constant used in test.
* Merge from private/auth-master (#159)Gravatar Xiangtian Dai2017-07-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Adds passing state and continue URL in OOBCodes actions. (#82) * Adds actionCodeSettings class (#83) * Adds FIRActionCodeSettings class * Removes iOSAppStoreId to reflect update spec. * Adds “reset password in app” to sample app (#84) * Adds “reset password in app” to sample app * Addresses comments * Addresses comments * Adds @param documentation for actionCodeSettings (#85) Adds @param documentation for actionCodeSettings in FIRGetOOBConfirmationCodeRequest. * Adds request configuration class Adds a class that will comprise of all configurations needed to make a request to the Firebase Auth backend; including APIKey and Language code in the future. * Addresses comments. * Adds Setting Language Add Setting Language Feature to Firebase Auth. - Only adds support for two languages (English and Spanish) in this change. (Also supports two languages in test), more to come after this change is accepted. - For now sample app tests language setting only when using “reset password in app” option, the email sent will be in the current app language. Additional tests to come after change is accepted. * Amends code for unit tests Will add more comprehensive testing when code accepted. * Ecodes strings files in UTF-8 * Addresses comments * Addresses comments * Remove comments in .strings * Adds remaining TC languages to Firebase Auth. * Add line break to .strings files * remove language code english fallback Remove the fallback that sends “en” as the language code to the backend if no language code is specified. * addresses comment * Fixes FIRSecureToken Crash Integrates FIRSecureTokenService and FIRSecureTokenRequest with FIRAuthRequestConfiguration. * Addresses comment * Add auth language input Adds Auth language input to the Sample App in preparation for manual testing. * removes unnecessary comment * address comments * Add app language option Allow user to set the current app language code as the auth language code. This is in preparation for manual testing before release. * Addresses Comment * Adds missing continue URI Adds missing continue URL to Firebear error handling. * Remove unused line Removes unused line from FIRPhoneAuthProvider.m * Moves the new public header to the right place. * Fixes broken macOS build. * Removes trailing spaces. * Addresses review comments.
* Add clang-format options and script; apply to FirebaseCore (#151)Gravatar Paul Beusterien2017-07-27
|
* Disable another test that depended on broken pre-iOS 11 small doubles (#152)Gravatar Paul Beusterien2017-07-26
|
* Purge persistence cache if we can't load from it (#153)Gravatar Sebastian Schmidt2017-07-26
| | | | | | | | * Purge persistence cache if we can't load from it * Adding unit test * Review comments
* Moving sMessageCodeRegex initialization into #ifdef DEBUG to remove the init ↵Gravatar davidair2017-07-25
| | | | cost, adding [FIRApp configure] to the Core example (#150)
* Disabling NSJSON edge case test on iOS 11 (#148)Gravatar Sebastian Schmidt2017-07-20
| | | | | | | | | | * Disabling NSJSON edge case test on iOS 11 * Adding check for iOS * Fix formatting * Using TARGET_OS_IOS instead of TARGET_OS_IPHONE
* Add method to check if `defaultApp` is configured. (#139)Gravatar Ryan Wilson2017-07-17
| | | | This lets other SDKs check if the default `FIRApp` is set up without accessing it, which causes unnecessary log messages to appear.
* Use modulemap to fix exposure of FirebaseCore's internal headers (#121)Gravatar Paul Beusterien2017-07-10
|
* Removing a backspace character (#132)Gravatar davidair2017-07-10
|
* Disable failing FIRLogger test until Issue 128 is fixed (#129)Gravatar Paul Beusterien2017-07-10
|
* Adding size to Storage's NSDictionary representation (#120)Gravatar Sebastian Schmidt2017-07-04
| | | | | | | | * Adding size to Storage's NSDictionary representation * Review comments * Remove trailing whitespace
* Add travis trailing whitespace check (#116)Gravatar Paul Beusterien2017-06-30
| | | | | | * Add travis trailing whitespace check * Remove trailing white space
* Remove Auth/Source/Private - restoring headers to original location (#113)Gravatar Paul Beusterien2017-06-29
|
* Group public headers into Public directories (#112)Gravatar Paul Beusterien2017-06-29
|
* Fixing parsing for double numbers (#107)Gravatar Sebastian Schmidt2017-06-27
| | | NSJSONSerialization parses long values as doubles and returns NSNumber that are backed by doubles to the users. For NSNumbers that can be stored as longs, we can overwrite this behavior by re-running the initialization step.
* Rename FirebaseDev to FirebaseCommunity (#98)Gravatar Paul Beusterien2017-06-22
|
* Adds NSSecureCoding unit tests for FIRUser (#74)Gravatar Zsika Phillip2017-06-07
| | | * Adds unit tests for NSSecureCoding for FIRUser
* Add Foundation import so TARGET_OS_IOS or other TARGET_OS_* gets defined (#71)Gravatar Paul Beusterien2017-06-06
|
* Restore bundle id and dev team for Messaging iOS (#60)Gravatar Riz2017-06-02
| | | This got lost in the transfer to new Xcode targets. The reasons why Messaging iOS has a specific bundle id is that this bundle is whitelisted for internal Google development, making it easier for folks that work on FCM to test with this app.
* Fix build break from macOS - Auth merge (#59)Gravatar Paul Beusterien2017-06-02
|
* macOS (#38)Gravatar Mathew Huusko V2017-06-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Example/Core: create macOS app/tests target * Example/Core: Core_Example/Tests -> Core_Example/Tests_iOS * Example/Core: macOS building/tests passing * Example/Database: separate iOS/macOS targets * BuildFrameworks: macOS * .travis.yml, test.sh: AllUnitTests -> AllUnitTests_iOS * test.sh: add AllUnitTests_macOS * Example/Storage: Example/Tests->_iOS * Example/Storage: macOS * test.sh: try to prevent double error 65 * test.sh: build before test * Example/Auth|Messaging: -> _iOS * Example/Auth: macOS build * Example/Auth: macOS passing * Example/Firebase: pod de/re-integrate; fix static DerivedData references; copy phase for OCMock * Example/Firebase: manually copied OCMock, Products Dir vs. Frameworks * Example/Firebase: copied OCMock, prevent header removal * Example/Storage: integration tests sdk fix * Example/Auth: macOS exclude FIRAuthAppCredentialManager; cleanup * Firebase/Core: remove nullability annotation * Firebase/Core|Database: correct TARGET_X usage for correctness and anticipation of OS_WATCH|TV branches * build.swift: style fix * Firebase/Core: FIRLogger: fix macOS intermittent va_list error
* Handle missing email error (#54)Gravatar Zsika Phillip2017-06-01
| | | | | Adds appropriate error handling for missing email in the createUserWithEmail:password:completion: flow. Also fixes a few typos.
* Remove team value from targets (#44)Gravatar Ibrahim Ulukaya2017-05-31
|
* Adds GoogleService-Info_multi.plist to the Auth Sample (#33)Gravatar Xiangtian Dai2017-05-25
| | | | | | | | | * Adds GoogleService-Info_multi.plist to the Auth Sample so it no longer crashes on the settings view. * Also relaxes requirement of time differences in unit tests because Travis is slower. * Relaxes requirement of time difference because unit tests executes slower on Travis. * Applies the same relaxation on all time comparisons.
* Clean up logging and configuration in Messaging (#28)Gravatar Riz2017-05-24
| | | | | | | | | | * Remove mostly unused code from FIRMessagingLogger This cleans up some left-over old logging logic from before we moved to FIRLogger in Firebase Core. We no longer need this logging functionality. * Delete FIRMessagingConfig.{h,m} We no longer need a config class to store an unused log level filter (that filter is no longer needed).
* Enable direct channel in the sample app (#7)Gravatar Riz2017-05-19
| | | This shows the simple property, shouldEstablishDirectChannel, to open a new channel, and how to show incoming messages with the iOS 10 delegate handler
* Add three files in repo despite .gitignoreGravatar Paul Beusterien2017-05-15
|
* InitialGravatar Paul Beusterien2017-05-15