From 11640276459754fb457b6d89097c70a3ead33510 Mon Sep 17 00:00:00 2001 From: Tiago Jacobs Date: Mon, 14 Feb 2022 15:37:27 -0300 Subject: [PATCH] Initial commit --- README.md | 9 +- ios/BigBlueButtonMobileSDK/.gitignore | 37 -- ios/BigBlueButtonMobileSDK/.travis.yml | 14 - .../BigBlueButtonMobileSDK.podspec | 43 -- .../BigBlueButtonMobileSDK/Assets/.gitkeep | 0 .../BigBlueButtonMobileSDK/Classes/.gitkeep | 0 .../Classes/ReplaceMe.swift | 0 .../._BigBlueButtonMobileSDK.xcodeproj | Bin 4096 -> 0 bytes .../._BigBlueButtonMobileSDK.xcworkspace | Bin 4096 -> 0 bytes .../project.pbxproj | 581 ------------------ .../contents.xcworkspacedata | 7 - .../BigBlueButtonMobileSDK-Example.xcscheme | 117 ---- .../contents.xcworkspacedata | 10 - .../xcshareddata/IDEWorkspaceChecks.plist | 8 - .../BigBlueButtonMobileSDK/AppDelegate.swift | 46 -- .../Base.lproj/LaunchScreen.xib | 46 -- .../Base.lproj/Main.storyboard | 30 - .../AppIcon.appiconset/Contents.json | 53 -- .../Example/BigBlueButtonMobileSDK/Info.plist | 39 -- .../ViewController.swift | 24 - ios/BigBlueButtonMobileSDK/Example/Podfile | 14 - .../Example/Podfile.lock | 23 - .../Example/Tests/Info.plist | 24 - .../Example/Tests/Tests.swift | 28 - ios/BigBlueButtonMobileSDK/LICENSE | 19 - ios/BigBlueButtonMobileSDK/README.md | 29 - ios/BigBlueButtonMobileSDK/_Pods.xcodeproj | 1 - 27 files changed, 2 insertions(+), 1200 deletions(-) delete mode 100644 ios/BigBlueButtonMobileSDK/.gitignore delete mode 100644 ios/BigBlueButtonMobileSDK/.travis.yml delete mode 100644 ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK.podspec delete mode 100644 ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK/Assets/.gitkeep delete mode 100644 ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK/Classes/.gitkeep delete mode 100644 ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK/Classes/ReplaceMe.swift delete mode 100644 ios/BigBlueButtonMobileSDK/Example/._BigBlueButtonMobileSDK.xcodeproj delete mode 100644 ios/BigBlueButtonMobileSDK/Example/._BigBlueButtonMobileSDK.xcworkspace delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcodeproj/project.pbxproj delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcodeproj/xcshareddata/xcschemes/BigBlueButtonMobileSDK-Example.xcscheme delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcworkspace/contents.xcworkspacedata delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/AppDelegate.swift delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Base.lproj/LaunchScreen.xib delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Base.lproj/Main.storyboard delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Images.xcassets/AppIcon.appiconset/Contents.json delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Info.plist delete mode 100644 ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/ViewController.swift delete mode 100644 ios/BigBlueButtonMobileSDK/Example/Podfile delete mode 100644 ios/BigBlueButtonMobileSDK/Example/Podfile.lock delete mode 100644 ios/BigBlueButtonMobileSDK/Example/Tests/Info.plist delete mode 100644 ios/BigBlueButtonMobileSDK/Example/Tests/Tests.swift delete mode 100644 ios/BigBlueButtonMobileSDK/LICENSE delete mode 100644 ios/BigBlueButtonMobileSDK/README.md delete mode 120000 ios/BigBlueButtonMobileSDK/_Pods.xcodeproj diff --git a/README.md b/README.md index 2ae2275..2857b6f 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,3 @@ -# bigbluebutton-mobile-lib +# bigbluebutton-mobile-sdk -## IOS - -In order to open the workspace to build this library, you can run: -```sh -open ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcworkspace -``` +This repository contains BigBlueButton react-native component, that's used in our [sample implementation](https://github.com/bigbluebutton/bigbluebutton-mobile). diff --git a/ios/BigBlueButtonMobileSDK/.gitignore b/ios/BigBlueButtonMobileSDK/.gitignore deleted file mode 100644 index be82548..0000000 --- a/ios/BigBlueButtonMobileSDK/.gitignore +++ /dev/null @@ -1,37 +0,0 @@ -# macOS -.DS_Store - -# Xcode -build/ -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata/ -*.xccheckout -profile -*.moved-aside -DerivedData -*.hmap -*.ipa - -# Bundler -.bundle - -# Add this line if you want to avoid checking in source code from Carthage dependencies. -# Carthage/Checkouts - -Carthage/Build - -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control -# -# Note: if you ignore the Pods directory, make sure to uncomment -# `pod install` in .travis.yml -# -Pods/ diff --git a/ios/BigBlueButtonMobileSDK/.travis.yml b/ios/BigBlueButtonMobileSDK/.travis.yml deleted file mode 100644 index bc0dccd..0000000 --- a/ios/BigBlueButtonMobileSDK/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -# references: -# * https://www.objc.io/issues/6-build-tools/travis-ci/ -# * https://github.com/supermarin/xcpretty#usage - -osx_image: xcode7.3 -language: objective-c -# cache: cocoapods -# podfile: Example/Podfile -# before_install: -- gem install cocoapods # Since Travis is not always on latest version -- pod install --project-directory=Example -script: -- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/BigBlueButtonMobileSDK.xcworkspace -scheme BigBlueButtonMobileSDK-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty -- pod lib lint diff --git a/ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK.podspec b/ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK.podspec deleted file mode 100644 index 7f8750f..0000000 --- a/ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK.podspec +++ /dev/null @@ -1,43 +0,0 @@ -# -# Be sure to run `pod lib lint BigBlueButtonMobileSDK.podspec' to ensure this is a -# valid spec before submitting. -# -# Any lines starting with a # are optional, but their use is encouraged -# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html -# - -Pod::Spec.new do |s| - s.name = 'BigBlueButtonMobileSDK' - s.version = '0.1.0' - s.summary = 'SDK containing swift code for BigBlueButton mobile application.' - -# This description is used to generate tags and improve search results. -# * Think: What does it do? Why did you write it? What is the focus? -# * Try to keep it short, snappy and to the point. -# * Write the description between the DESC delimiters below. -# * Finally, don't worry about the indent, CocoaPods strips it! - - s.description = <<-DESC - This SDK is used in BigBlueButton mobile application, and its main goal is to provide abstraction on the internals of BigBlueButton. - DESC - - s.homepage = 'https://github.com/bigbluebutton/bigbluebutton-mobile-sdk' - s.license = { :type => 'LGPL-3.0', :file => 'LICENSE' } - s.author = { 'Tiago Daniel Jacobs' => 'tiago.jacobs@gmail.com' } - s.source = { :git => 'https://github.com/bigbluebutton/bigbluebutton-mobile-sdk.git', :tag => s.version.to_s } - s.social_media_url = 'https://twitter.com/BigBlueButton' - - s.ios.deployment_target = '14.0' - - s.source_files = 'BigBlueButtonMobileSDK/Classes/**/*' - - # s.resource_bundles = { - # 'BigBlueButtonMobileSDK' => ['BigBlueButtonMobileSDK/Assets/*.png'] - # } - - # s.public_header_files = 'Pod/Classes/**/*.h' - # s.frameworks = 'UIKit', 'MapKit' - # s.dependency 'AFNetworking', '~> 2.3' - s.dependency 'GoogleWebRTC' - s.swift_versions = '5.1' -end diff --git a/ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK/Assets/.gitkeep b/ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK/Assets/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK/Classes/.gitkeep b/ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK/Classes/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK/Classes/ReplaceMe.swift b/ios/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK/Classes/ReplaceMe.swift deleted file mode 100644 index e69de29..0000000 diff --git a/ios/BigBlueButtonMobileSDK/Example/._BigBlueButtonMobileSDK.xcodeproj b/ios/BigBlueButtonMobileSDK/Example/._BigBlueButtonMobileSDK.xcodeproj deleted file mode 100644 index 1eb4cb8700a7cc52d6cea1c86d7aea3d37a422fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDJkFz{^v(m+1nBL)UWIUt(=a103vVn~w= zgy>*c08}o3riBs6hl)!j=jZAr78K;9>g6OBmy{N#rlcg6q$&plgY+0*=S%|8c{L6| zmyCkZ5Eu=C(GVC7fzc2c4S~@R7!85Z5Eu=C(GVC7fzc4a9Ri@vCJ2LpTu4S{u|iR5 zaeir0a;idFeo?kUW?o5ZUP)$tUSdv8r9w_>T8TnZPGVj*urCbNHKZw2|HHi^!yxzn FKLGJ(DWCuV diff --git a/ios/BigBlueButtonMobileSDK/Example/._BigBlueButtonMobileSDK.xcworkspace b/ios/BigBlueButtonMobileSDK/Example/._BigBlueButtonMobileSDK.xcworkspace deleted file mode 100644 index 1b07a77ff9e5aec2efc0848d344380b523267e9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDJkFz{^v(m+1nBL)UWIUt(=a103vVn~zp zhv;Bf08}o3riBs6hl)!j=jZAr78K;9>g6OBmy{N#rlcg6q$&plgY=|c /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; - 60439B14AAEEB535467AD76E /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-BigBlueButtonMobileSDK_Tests-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; - E52D0D388FDCCE471BC2326E /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-BigBlueButtonMobileSDK_Example/Pods-BigBlueButtonMobileSDK_Example-frameworks.sh", - "${BUILT_PRODUCTS_DIR}/BigBlueButtonMobileSDK/BigBlueButtonMobileSDK.framework", - "${PODS_ROOT}/GoogleWebRTC/Frameworks/frameworks/WebRTC.framework", - ); - name = "[CP] Embed Pods Frameworks"; - outputPaths = ( - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/BigBlueButtonMobileSDK.framework", - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/WebRTC.framework", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-BigBlueButtonMobileSDK_Example/Pods-BigBlueButtonMobileSDK_Example-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 607FACCC1AFB9204008FA782 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, - 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 607FACE11AFB9204008FA782 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 607FACCF1AFB9204008FA782 /* BigBlueButtonMobileSDK_Example */; - targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 607FACD91AFB9204008FA782 /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 607FACDA1AFB9204008FA782 /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { - isa = PBXVariantGroup; - children = ( - 607FACDF1AFB9204008FA782 /* Base */, - ); - name = LaunchScreen.xib; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 607FACED1AFB9204008FA782 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 14.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 607FACEE1AFB9204008FA782 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 14.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 607FACF01AFB9204008FA782 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 37C2BD78AF15CA70C39D6921 /* Pods-BigBlueButtonMobileSDK_Example.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = BigBlueButtonMobileSDK/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MODULE_NAME = ExampleApp; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_SWIFT3_OBJC_INFERENCE = Default; - SWIFT_VERSION = 4.0; - }; - name = Debug; - }; - 607FACF11AFB9204008FA782 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0715319342FF7B8A8F3874D8 /* Pods-BigBlueButtonMobileSDK_Example.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = BigBlueButtonMobileSDK/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MODULE_NAME = ExampleApp; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_SWIFT3_OBJC_INFERENCE = Default; - SWIFT_VERSION = 4.0; - }; - name = Release; - }; - 607FACF31AFB9204008FA782 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BEFA8556F187F598AABF2E16 /* Pods-BigBlueButtonMobileSDK_Tests.debug.xcconfig */; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(PLATFORM_DIR)/Developer/Library/Frameworks", - "$(inherited)", - ); - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_SWIFT3_OBJC_INFERENCE = Default; - SWIFT_VERSION = 4.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BigBlueButtonMobileSDK_Example.app/BigBlueButtonMobileSDK_Example"; - }; - name = Debug; - }; - 607FACF41AFB9204008FA782 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6643DBFB5205EA86FCFE96D4 /* Pods-BigBlueButtonMobileSDK_Tests.release.xcconfig */; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(PLATFORM_DIR)/Developer/Library/Frameworks", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_SWIFT3_OBJC_INFERENCE = Default; - SWIFT_VERSION = 4.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BigBlueButtonMobileSDK_Example.app/BigBlueButtonMobileSDK_Example"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "BigBlueButtonMobileSDK" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 607FACED1AFB9204008FA782 /* Debug */, - 607FACEE1AFB9204008FA782 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "BigBlueButtonMobileSDK_Example" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 607FACF01AFB9204008FA782 /* Debug */, - 607FACF11AFB9204008FA782 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "BigBlueButtonMobileSDK_Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 607FACF31AFB9204008FA782 /* Debug */, - 607FACF41AFB9204008FA782 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 607FACC81AFB9204008FA782 /* Project object */; -} diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index c13c6b4..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcodeproj/xcshareddata/xcschemes/BigBlueButtonMobileSDK-Example.xcscheme b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcodeproj/xcshareddata/xcschemes/BigBlueButtonMobileSDK-Example.xcscheme deleted file mode 100644 index 9378ad3..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcodeproj/xcshareddata/xcschemes/BigBlueButtonMobileSDK-Example.xcscheme +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcworkspace/contents.xcworkspacedata b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 41e305d..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/AppDelegate.swift b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/AppDelegate.swift deleted file mode 100644 index 324dd7a..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/AppDelegate.swift +++ /dev/null @@ -1,46 +0,0 @@ -// -// AppDelegate.swift -// BigBlueButtonMobileSDK -// -// Created by Tiago Jacobs on 02/14/2022. -// Copyright (c) 2022 Tiago Jacobs. All rights reserved. -// - -import UIKit - -@UIApplicationMain -class AppDelegate: UIResponder, UIApplicationDelegate { - - var window: UIWindow? - - - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { - // Override point for customization after application launch. - return true - } - - func applicationWillResignActive(_ application: UIApplication) { - // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. - // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. - } - - func applicationDidEnterBackground(_ application: UIApplication) { - // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. - // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. - } - - func applicationWillEnterForeground(_ application: UIApplication) { - // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. - } - - func applicationDidBecomeActive(_ application: UIApplication) { - // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. - } - - func applicationWillTerminate(_ application: UIApplication) { - // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. - } - - -} - diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Base.lproj/LaunchScreen.xib b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Base.lproj/LaunchScreen.xib deleted file mode 100644 index f760612..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Base.lproj/LaunchScreen.xib +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Base.lproj/Main.storyboard b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Base.lproj/Main.storyboard deleted file mode 100644 index be273b9..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Base.lproj/Main.storyboard +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Images.xcassets/AppIcon.appiconset/Contents.json b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Images.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 7006c9e..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Images.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "images" : [ - { - "idiom" : "iphone", - "size" : "20x20", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "20x20", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "3x" - }, - { - "idiom" : "ios-marketing", - "size" : "1024x1024", - "scale" : "1x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Info.plist b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Info.plist deleted file mode 100644 index eb18faa..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/Info.plist +++ /dev/null @@ -1,39 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - - - diff --git a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/ViewController.swift b/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/ViewController.swift deleted file mode 100644 index fb1b921..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/BigBlueButtonMobileSDK/ViewController.swift +++ /dev/null @@ -1,24 +0,0 @@ -// -// ViewController.swift -// BigBlueButtonMobileSDK -// -// Created by Tiago Jacobs on 02/14/2022. -// Copyright (c) 2022 Tiago Jacobs. All rights reserved. -// - -import UIKit - -class ViewController: UIViewController { - - override func viewDidLoad() { - super.viewDidLoad() - // Do any additional setup after loading the view, typically from a nib. - } - - override func didReceiveMemoryWarning() { - super.didReceiveMemoryWarning() - // Dispose of any resources that can be recreated. - } - -} - diff --git a/ios/BigBlueButtonMobileSDK/Example/Podfile b/ios/BigBlueButtonMobileSDK/Example/Podfile deleted file mode 100644 index e195bd9..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/Podfile +++ /dev/null @@ -1,14 +0,0 @@ -use_frameworks! - -platform :ios, '14.0' - -target 'BigBlueButtonMobileSDK_Example' do - project 'BigBlueButtonMobileSDK.xcodeproj' - pod 'BigBlueButtonMobileSDK', :path => '../' - - target 'BigBlueButtonMobileSDK_Tests' do - inherit! :search_paths - - - end -end diff --git a/ios/BigBlueButtonMobileSDK/Example/Podfile.lock b/ios/BigBlueButtonMobileSDK/Example/Podfile.lock deleted file mode 100644 index a741ea9..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/Podfile.lock +++ /dev/null @@ -1,23 +0,0 @@ -PODS: - - BigBlueButtonMobileSDK (0.1.0): - - GoogleWebRTC - - GoogleWebRTC (1.1.27828) - -DEPENDENCIES: - - BigBlueButtonMobileSDK (from `../`) - -SPEC REPOS: - trunk: - - GoogleWebRTC - -EXTERNAL SOURCES: - BigBlueButtonMobileSDK: - :path: "../" - -SPEC CHECKSUMS: - BigBlueButtonMobileSDK: 611d32fdbb5e122bbae4d976a53fedb2b24b0949 - GoogleWebRTC: 55e46bee9ac2a4961542e9571bea589b64493f45 - -PODFILE CHECKSUM: f422a6a7d5ee634b7125c9a4cfdcf1979f49f302 - -COCOAPODS: 1.11.2 diff --git a/ios/BigBlueButtonMobileSDK/Example/Tests/Info.plist b/ios/BigBlueButtonMobileSDK/Example/Tests/Info.plist deleted file mode 100644 index ba72822..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/Tests/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/ios/BigBlueButtonMobileSDK/Example/Tests/Tests.swift b/ios/BigBlueButtonMobileSDK/Example/Tests/Tests.swift deleted file mode 100644 index 77d8849..0000000 --- a/ios/BigBlueButtonMobileSDK/Example/Tests/Tests.swift +++ /dev/null @@ -1,28 +0,0 @@ -import XCTest -import BigBlueButtonMobileSDK - -class Tests: XCTestCase { - - override func setUp() { - super.setUp() - // Put setup code here. This method is called before the invocation of each test method in the class. - } - - override func tearDown() { - // Put teardown code here. This method is called after the invocation of each test method in the class. - super.tearDown() - } - - func testExample() { - // This is an example of a functional test case. - XCTAssert(true, "Pass") - } - - func testPerformanceExample() { - // This is an example of a performance test case. - self.measure() { - // Put the code you want to measure the time of here. - } - } - -} diff --git a/ios/BigBlueButtonMobileSDK/LICENSE b/ios/BigBlueButtonMobileSDK/LICENSE deleted file mode 100644 index b854ab7..0000000 --- a/ios/BigBlueButtonMobileSDK/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2022 Tiago Jacobs - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/ios/BigBlueButtonMobileSDK/README.md b/ios/BigBlueButtonMobileSDK/README.md deleted file mode 100644 index 78a4dba..0000000 --- a/ios/BigBlueButtonMobileSDK/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# BigBlueButtonMobileSDK - -[![CI Status](https://img.shields.io/travis/Tiago Jacobs/BigBlueButtonMobileSDK.svg?style=flat)](https://travis-ci.org/Tiago Jacobs/BigBlueButtonMobileSDK) -[![Version](https://img.shields.io/cocoapods/v/BigBlueButtonMobileSDK.svg?style=flat)](https://cocoapods.org/pods/BigBlueButtonMobileSDK) -[![License](https://img.shields.io/cocoapods/l/BigBlueButtonMobileSDK.svg?style=flat)](https://cocoapods.org/pods/BigBlueButtonMobileSDK) -[![Platform](https://img.shields.io/cocoapods/p/BigBlueButtonMobileSDK.svg?style=flat)](https://cocoapods.org/pods/BigBlueButtonMobileSDK) - -## Example - -To run the example project, clone the repo, and run `pod install` from the Example directory first. - -## Requirements - -## Installation - -BigBlueButtonMobileSDK is available through [CocoaPods](https://cocoapods.org). To install -it, simply add the following line to your Podfile: - -```ruby -pod 'BigBlueButtonMobileSDK' -``` - -## Author - -Tiago Jacobs, tiago.jacobs@gmail.com - -## License - -BigBlueButtonMobileSDK is available under the MIT license. See the LICENSE file for more info. diff --git a/ios/BigBlueButtonMobileSDK/_Pods.xcodeproj b/ios/BigBlueButtonMobileSDK/_Pods.xcodeproj deleted file mode 120000 index 3c5a8e7..0000000 --- a/ios/BigBlueButtonMobileSDK/_Pods.xcodeproj +++ /dev/null @@ -1 +0,0 @@ -Example/Pods/Pods.xcodeproj \ No newline at end of file