Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

JitsiMeet.h 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright @ 2018-present 8x8, Inc.
  3. * Copyright @ 2017-2018 Atlassian Pty Ltd
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. #import <JitsiMeet/JitsiMeetView.h>
  18. #import <JitsiMeet/JitsiMeetViewDelegate.h>
  19. #import <JitsiMeet/JitsiMeetConferenceOptions.h>
  20. #import <JitsiMeet/JitsiMeetLogger.h>
  21. #import <JitsiMeet/JitsiMeetBaseLogHandler.h>
  22. #import <JitsiMeet/InfoPlistUtil.h>
  23. @interface JitsiMeet : NSObject
  24. /**
  25. * Name for the conference NSUserActivity type. This is used when integrating with
  26. * SiriKit or Handoff, for example.
  27. */
  28. @property (copy, nonatomic, nullable) NSString *conferenceActivityType;
  29. /**
  30. * Custom URL scheme used for deep-linking.
  31. */
  32. @property (copy, nonatomic, nullable) NSString *customUrlScheme;
  33. /**
  34. * List of domains used for universal linking.
  35. */
  36. @property (copy, nonatomic, nullable) NSArray<NSString *> *universalLinkDomains;
  37. /**
  38. * Default conference options used for all conferences. These options will be merged
  39. * with those passed to JitsiMeetView.join when joining a conference.
  40. */
  41. @property (nonatomic, nullable) JitsiMeetConferenceOptions *defaultConferenceOptions;
  42. #pragma mark - This class is a singleton
  43. + (instancetype _Nonnull)sharedInstance;
  44. #pragma mark - Methods that the App delegate must call
  45. - (BOOL)application:(UIApplication *_Nonnull)application
  46. didFinishLaunchingWithOptions:(NSDictionary *_Nonnull)launchOptions;
  47. - (BOOL)application:(UIApplication *_Nonnull)application
  48. continueUserActivity:(NSUserActivity *_Nonnull)userActivity
  49. restorationHandler:(void (^_Nullable)(NSArray<id<UIUserActivityRestoring>> *_Nonnull))restorationHandler;
  50. - (BOOL)application:(UIApplication *_Nonnull)app
  51. openURL:(NSURL *_Nonnull)url
  52. options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *_Nonnull)options;
  53. #pragma mark - Utility methods
  54. - (JitsiMeetConferenceOptions *_Nonnull)getInitialConferenceOptions;
  55. - (BOOL)isCrashReportingDisabled;
  56. @end