Rosalyn Tan 40924d9d40 Always swizzle application:didReceiveRemoteNotification:fetchCompletionHandler: instead of application:didReceiveRemoteNotification:. 5 роки тому
..
AppDelegateSwizzler 40924d9d40 Always swizzle application:didReceiveRemoteNotification:fetchCompletionHandler: instead of application:didReceiveRemoteNotification:. 5 роки тому
Common 8843dbfd25 Add GULSceneDelegateSwizzler (#4524) 6 роки тому
Environment 74b256b415 GUL: make NSURLSession promise extension public (#7097) 5 роки тому
ISASwizzler 13beb58fa1 Refactor GULSwizzledObject to ARC to unblock SwiftPM support (#5862) 5 роки тому
Logger 00be38c556 Don't allow logger version deallocation (#6719) 5 роки тому
MethodSwizzler f2bcd5d82b Make all GoogleUtilities APIs public (#6588) 5 роки тому
NSData+zlib f2bcd5d82b Make all GoogleUtilities APIs public (#6588) 5 роки тому
Network 19159a4b25 Fix tvOS storage issues. (#6658) 5 роки тому
Reachability f2bcd5d82b Make all GoogleUtilities APIs public (#6588) 5 роки тому
SwizzlerTestHelpers f2bcd5d82b Make all GoogleUtilities APIs public (#6588) 5 роки тому
Tests 74b256b415 GUL: make NSURLSession promise extension public (#7097) 5 роки тому
UserDefaults f2bcd5d82b Make all GoogleUtilities APIs public (#6588) 5 роки тому
CHANGELOG.md 74b256b415 GUL: make NSURLSession promise extension public (#7097) 5 роки тому
CMakeLists.txt f2bcd5d82b Make all GoogleUtilities APIs public (#6588) 5 роки тому
LICENSE 0dd8dda165 GoogleUtilities - Standardize imports and add LICENSE (#4655) 6 роки тому
README.md 56807f383e GoogleUtilities to testspec and pod gen (#2908) 6 роки тому

README.md

Google Utilities

Overview

The GoogleUtilities pod is a set of utilities organized into CocoaPods subspecs. See the podspec for a summary of what utilities are currently included. They're used by Firebase and other Google products.

Direct usage by non-Google products and CocoaPods is NOT currently recommended or supported in general.

However, we do specifically recommend that non-Google SDKs can use the App Delegate Swizzler to hook into app delegate methods as this reduces conflicts with multiple SDKs trying to do the same.

Instructions on how to adopt the app delegate swizzler for use by your SDK are available here.

Development

Follow the subsequent instructions to develop, debug, unit test, and integration test FirebaseFunctions:

Prereqs

  • At least CocoaPods 1.7.0

To Develop

  • Run pod gen GoogleUtilities.podspec
  • open gen/GoogleUtilities/GoogleUtilities.xcworkspace

OR these two commands can be combined with

  • pod gen GoogleUtilities.podspec --auto-open --gen-directory="gen" --clean

You're now in an Xcode workspace generate for building, debugging and testing the GoogleUtilities CocoaPod.

Running Unit Tests

Choose the one of the Tests* schemes and press Command-u.