FIRAppDistribution+Private.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright 2018 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. #import "FIRAppDistribution.h"
  18. #import <AppAuth/AppAuth.h>
  19. NS_ASSUME_NONNULL_BEGIN
  20. @interface FIRAppDistribution ()
  21. /**
  22. * Current view controller presenting the `SFSafariViewController` if any.
  23. */
  24. @property(nullable, nonatomic) UIViewController *safariHostingViewController;
  25. /**
  26. * Current auth state for app distribution tester
  27. */
  28. @property(nullable, nonatomic) OIDAuthState *authState;
  29. @property(nullable, nonatomic) UIWindow *window;
  30. @end
  31. //
  32. ///** Encodes the API key in a query parameter string. */
  33. //NSString *_Nullable FIRDynamicLinkAPIKeyParameter(NSString *apiKey);
  34. //
  35. ///** Creates and returns an NSData object from an NSDictionary along with any error. */
  36. //NSData *_Nullable FIRDataWithDictionary(NSDictionary *dictionary, NSError **_Nullable error);
  37. //
  38. NS_ASSUME_NONNULL_END