├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── swiftbridge │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── index.android.js ├── index.ios.js ├── ios ├── CalendarManager.swift ├── CalendarManagerBridge.m ├── SwiftBridge-Bridging-Header.h ├── SwiftBridge-tvOS │ └── Info.plist ├── SwiftBridge-tvOSTests │ └── Info.plist ├── SwiftBridge.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SwiftBridge-tvOS.xcscheme │ │ └── SwiftBridge.xcscheme ├── SwiftBridge │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── SwiftBridgeTests │ ├── Info.plist │ └── SwiftBridgeTests.m └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | emoji=true 26 | 27 | module.system=haste 28 | 29 | experimental.strict_type_args=true 30 | 31 | munge_underscores=true 32 | 33 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 34 | 35 | suppress_type=$FlowIssue 36 | suppress_type=$FlowFixMe 37 | suppress_type=$FixMe 38 | 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-8]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-8]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 41 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 42 | 43 | unsafe.enable_getters_and_setters=true 44 | 45 | [version] 46 | ^0.38.0 47 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![No longer maintained](https://img.shields.io/badge/Maintenance-OFF-red.svg) 2 | ### [DEPRECATED] This repository is no longer maintained 3 | > While this project is fully functional, the dependencies are no longer up to date. You are still welcome to explore, learn, and use the code provided here. 4 | > 5 | > Modus is dedicated to supporting the community with innovative ideas, best-practice patterns, and inspiring open source solutions. Check out the latest [Modus Labs](https://labs.moduscreate.com?utm_source=github&utm_medium=readme&utm_campaign=deprecated) projects. 6 | 7 | [![Modus Labs](https://res.cloudinary.com/modus-labs/image/upload/h_80/v1531492623/labs/logo-black.png)](https://labs.moduscreate.com?utm_source=github&utm_medium=readme&utm_campaign=deprecated) 8 | 9 | --- 10 | 11 | # swift-modules-for-react-native 12 | http://moduscreate.com/swift-modules-for-react-native/ 13 | -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'com.swiftbridge', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'com.swiftbridge', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"] 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion "23.0.1" 88 | 89 | defaultConfig { 90 | applicationId "com.swiftbridge" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile fileTree(dir: "libs", include: ["*.jar"]) 130 | compile "com.android.support:appcompat-v7:23.0.1" 131 | compile "com.facebook.react:react-native:+" // From node_modules 132 | } 133 | 134 | // Run this once to be able to run the application with BUCK 135 | // puts all compile dependencies into folder libs for BUCK to use 136 | task copyDownloadableDepsToLibs(type: Copy) { 137 | from configurations.compile 138 | into 'libs' 139 | } 140 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # okhttp 54 | 55 | -keepattributes Signature 56 | -keepattributes *Annotation* 57 | -keep class okhttp3.** { *; } 58 | -keep interface okhttp3.** { *; } 59 | -dontwarn okhttp3.** 60 | 61 | # okio 62 | 63 | -keep class sun.misc.Unsafe { *; } 64 | -dontwarn java.nio.file.* 65 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 66 | -dontwarn okio.** 67 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/swiftbridge/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.swiftbridge; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "SwiftBridge"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/swiftbridge/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.swiftbridge; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.facebook.react.ReactNativeHost; 7 | import com.facebook.react.ReactPackage; 8 | import com.facebook.react.shell.MainReactPackage; 9 | import com.facebook.soloader.SoLoader; 10 | 11 | import java.util.Arrays; 12 | import java.util.List; 13 | 14 | public class MainApplication extends Application implements ReactApplication { 15 | 16 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 17 | @Override 18 | public boolean getUseDeveloperSupport() { 19 | return BuildConfig.DEBUG; 20 | } 21 | 22 | @Override 23 | protected List getPackages() { 24 | return Arrays.asList( 25 | new MainReactPackage() 26 | ); 27 | } 28 | }; 29 | 30 | @Override 31 | public ReactNativeHost getReactNativeHost() { 32 | return mReactNativeHost; 33 | } 34 | 35 | @Override 36 | public void onCreate() { 37 | super.onCreate(); 38 | SoLoader.init(this, /* native exopackage */ false); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/swift-modules-for-react-native/d9f21b215e9dc4dc39a8639063766a911ba4bedc/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/swift-modules-for-react-native/d9f21b215e9dc4dc39a8639063766a911ba4bedc/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/swift-modules-for-react-native/d9f21b215e9dc4dc39a8639063766a911ba4bedc/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/swift-modules-for-react-native/d9f21b215e9dc4dc39a8639063766a911ba4bedc/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SwiftBridge 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/swift-modules-for-react-native/d9f21b215e9dc4dc39a8639063766a911ba4bedc/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 5 | visibility = [ 6 | 'PUBLIC', 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'SwiftBridge' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | AppRegistry, 10 | StyleSheet, 11 | Text, 12 | View 13 | } from 'react-native'; 14 | 15 | export default class SwiftBridge extends Component { 16 | render() { 17 | return ( 18 | 19 | 20 | Welcome to React Native! 21 | 22 | 23 | To get started, edit index.android.js 24 | 25 | 26 | Double tap R on your keyboard to reload,{'\n'} 27 | Shake or press menu button for dev menu 28 | 29 | 30 | ); 31 | } 32 | } 33 | 34 | const styles = StyleSheet.create({ 35 | container: { 36 | flex: 1, 37 | justifyContent: 'center', 38 | alignItems: 'center', 39 | backgroundColor: '#F5FCFF', 40 | }, 41 | welcome: { 42 | fontSize: 20, 43 | textAlign: 'center', 44 | margin: 10, 45 | }, 46 | instructions: { 47 | textAlign: 'center', 48 | color: '#333333', 49 | marginBottom: 5, 50 | }, 51 | }); 52 | 53 | AppRegistry.registerComponent('SwiftBridge', () => SwiftBridge); 54 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | AppRegistry, 10 | StyleSheet, 11 | Text, 12 | View 13 | } from 'react-native'; 14 | 15 | import { NativeModules, NativeEventEmitter } from 'react-native'; 16 | console.log('Calendar Manager', NativeModules.CalendarManager); 17 | const calendarManagerEmitter = new NativeEventEmitter(NativeModules.CalendarManager); 18 | const subscription = calendarManagerEmitter.addListener( 19 | 'EventReminder', 20 | (reminder) => { 21 | console.log('EVENT') 22 | console.log('name: ' + reminder.name) 23 | console.log('location: ' + reminder.location) 24 | console.log('date: ' + reminder.date) 25 | } 26 | ); 27 | NativeModules.CalendarManager.addEvent("One", "Two", 3, function(o) { 28 | console.log('In Callback', o); 29 | }); 30 | 31 | export default class SwiftBridge extends Component { 32 | render() { 33 | return ( 34 | 35 | 36 | Welcome to React Native! 37 | 38 | 39 | To get started, edit index.ios.js 40 | 41 | 42 | Press Cmd+R to reload,{'\n'} 43 | Cmd+D or shake for dev menu 44 | 45 | 46 | ); 47 | } 48 | } 49 | 50 | const styles = StyleSheet.create({ 51 | container: { 52 | flex: 1, 53 | justifyContent: 'center', 54 | alignItems: 'center', 55 | backgroundColor: '#F5FCFF', 56 | }, 57 | welcome: { 58 | fontSize: 20, 59 | textAlign: 'center', 60 | margin: 10, 61 | }, 62 | instructions: { 63 | textAlign: 'center', 64 | color: '#333333', 65 | marginBottom: 5, 66 | }, 67 | }); 68 | 69 | AppRegistry.registerComponent('SwiftBridge', () => SwiftBridge); 70 | -------------------------------------------------------------------------------- /ios/CalendarManager.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CalendarManager.swift 3 | // SwiftBridge 4 | // 5 | // Created by Brice Mason on 3/6/2017. 6 | // Copyright © 2017 Facebook. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | // CalendarManager.swift 12 | 13 | @objc(CalendarManager) 14 | class CalendarManager: RCTEventEmitter { 15 | 16 | @objc override func supportedEvents() -> [String]! { 17 | return ["EventReminder"]; 18 | } 19 | 20 | @objc func addEvent(_ name: String, location: String, date: NSNumber, callback: RCTResponseSenderBlock ) -> Void { 21 | // Date is ready to use! 22 | NSLog("%@ %@ %@", name, location, date) 23 | let ret:[String:Any] = ["name": name, "location": location, "date" : date] 24 | callback([ret]) 25 | self.sendEvent(withName: "EventReminder", body: ret) 26 | } 27 | 28 | @objc override func constantsToExport() -> [String : Any]! { 29 | return [ 30 | "x": 1, 31 | "y": 2, 32 | "z": "Arbitrary string" 33 | ] 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /ios/CalendarManagerBridge.m: -------------------------------------------------------------------------------- 1 | // 2 | // CalendarManagerBridge.m 3 | // SwiftBridge 4 | // 5 | // Created by Brice Mason on 3/6/2017. 6 | // Copyright © 2017 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | // CalendarManagerBridge.m 12 | #import 13 | 14 | @interface RCT_EXTERN_MODULE(CalendarManager, NSObject) 15 | 16 | RCT_EXTERN_METHOD(addEvent:(NSString *)name location:(NSString *)location date:(nonnull NSNumber *)date callback: (RCTResponseSenderBlock)callback); 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ios/SwiftBridge-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | 6 | #import 7 | #import 8 | #import 9 | #import 10 | -------------------------------------------------------------------------------- /ios/SwiftBridge-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/SwiftBridge-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/SwiftBridge.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* SwiftBridgeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* SwiftBridgeTests.m */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* SwiftBridgeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* SwiftBridgeTests.m */; }; 37 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 38 | 65DE84C21E6DB397002A5D7B /* CalendarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65DE84C11E6DB397002A5D7B /* CalendarManager.swift */; }; 39 | 65DE84DD1E6DB3F9002A5D7B /* CalendarManagerBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 65DE84DC1E6DB3F9002A5D7B /* CalendarManagerBridge.m */; }; 40 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 41 | /* End PBXBuildFile section */ 42 | 43 | /* Begin PBXContainerItemProxy section */ 44 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 45 | isa = PBXContainerItemProxy; 46 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 47 | proxyType = 2; 48 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 49 | remoteInfo = RCTActionSheet; 50 | }; 51 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 52 | isa = PBXContainerItemProxy; 53 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 54 | proxyType = 2; 55 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 56 | remoteInfo = RCTGeolocation; 57 | }; 58 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 59 | isa = PBXContainerItemProxy; 60 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 61 | proxyType = 2; 62 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 63 | remoteInfo = RCTImage; 64 | }; 65 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 66 | isa = PBXContainerItemProxy; 67 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 68 | proxyType = 2; 69 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 70 | remoteInfo = RCTNetwork; 71 | }; 72 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 73 | isa = PBXContainerItemProxy; 74 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 75 | proxyType = 2; 76 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 77 | remoteInfo = RCTVibration; 78 | }; 79 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 80 | isa = PBXContainerItemProxy; 81 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 82 | proxyType = 1; 83 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 84 | remoteInfo = SwiftBridge; 85 | }; 86 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 87 | isa = PBXContainerItemProxy; 88 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 89 | proxyType = 2; 90 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 91 | remoteInfo = RCTSettings; 92 | }; 93 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 94 | isa = PBXContainerItemProxy; 95 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 96 | proxyType = 2; 97 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 98 | remoteInfo = RCTWebSocket; 99 | }; 100 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 101 | isa = PBXContainerItemProxy; 102 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 103 | proxyType = 2; 104 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 105 | remoteInfo = React; 106 | }; 107 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 108 | isa = PBXContainerItemProxy; 109 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 110 | proxyType = 1; 111 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 112 | remoteInfo = "SwiftBridge-tvOS"; 113 | }; 114 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 115 | isa = PBXContainerItemProxy; 116 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 117 | proxyType = 2; 118 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 119 | remoteInfo = "RCTImage-tvOS"; 120 | }; 121 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 122 | isa = PBXContainerItemProxy; 123 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 124 | proxyType = 2; 125 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 126 | remoteInfo = "RCTLinking-tvOS"; 127 | }; 128 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 129 | isa = PBXContainerItemProxy; 130 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 131 | proxyType = 2; 132 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 133 | remoteInfo = "RCTNetwork-tvOS"; 134 | }; 135 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 136 | isa = PBXContainerItemProxy; 137 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 138 | proxyType = 2; 139 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 140 | remoteInfo = "RCTSettings-tvOS"; 141 | }; 142 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 143 | isa = PBXContainerItemProxy; 144 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 145 | proxyType = 2; 146 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 147 | remoteInfo = "RCTText-tvOS"; 148 | }; 149 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 150 | isa = PBXContainerItemProxy; 151 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 152 | proxyType = 2; 153 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 154 | remoteInfo = "RCTWebSocket-tvOS"; 155 | }; 156 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 157 | isa = PBXContainerItemProxy; 158 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 159 | proxyType = 2; 160 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 161 | remoteInfo = "React-tvOS"; 162 | }; 163 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 164 | isa = PBXContainerItemProxy; 165 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 166 | proxyType = 2; 167 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 168 | remoteInfo = yoga; 169 | }; 170 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 171 | isa = PBXContainerItemProxy; 172 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 173 | proxyType = 2; 174 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 175 | remoteInfo = "yoga-tvOS"; 176 | }; 177 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 178 | isa = PBXContainerItemProxy; 179 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 180 | proxyType = 2; 181 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 182 | remoteInfo = cxxreact; 183 | }; 184 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 185 | isa = PBXContainerItemProxy; 186 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 187 | proxyType = 2; 188 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 189 | remoteInfo = "cxxreact-tvOS"; 190 | }; 191 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 192 | isa = PBXContainerItemProxy; 193 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 194 | proxyType = 2; 195 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 196 | remoteInfo = jschelpers; 197 | }; 198 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 199 | isa = PBXContainerItemProxy; 200 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 201 | proxyType = 2; 202 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 203 | remoteInfo = "jschelpers-tvOS"; 204 | }; 205 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 206 | isa = PBXContainerItemProxy; 207 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 208 | proxyType = 2; 209 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 210 | remoteInfo = RCTAnimation; 211 | }; 212 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 213 | isa = PBXContainerItemProxy; 214 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 215 | proxyType = 2; 216 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 217 | remoteInfo = "RCTAnimation-tvOS"; 218 | }; 219 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 220 | isa = PBXContainerItemProxy; 221 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 222 | proxyType = 2; 223 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 224 | remoteInfo = RCTLinking; 225 | }; 226 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 227 | isa = PBXContainerItemProxy; 228 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 229 | proxyType = 2; 230 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 231 | remoteInfo = RCTText; 232 | }; 233 | /* End PBXContainerItemProxy section */ 234 | 235 | /* Begin PBXFileReference section */ 236 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 237 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 238 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 239 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 240 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 241 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 242 | 00E356EE1AD99517003FC87E /* SwiftBridgeTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SwiftBridgeTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 243 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 244 | 00E356F21AD99517003FC87E /* SwiftBridgeTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SwiftBridgeTests.m; sourceTree = ""; }; 245 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 246 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 247 | 13B07F961A680F5B00A75B9A /* SwiftBridge.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SwiftBridge.app; sourceTree = BUILT_PRODUCTS_DIR; }; 248 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = SwiftBridge/AppDelegate.h; sourceTree = ""; }; 249 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = SwiftBridge/AppDelegate.m; sourceTree = ""; }; 250 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 251 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = SwiftBridge/Images.xcassets; sourceTree = ""; }; 252 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = SwiftBridge/Info.plist; sourceTree = ""; }; 253 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = SwiftBridge/main.m; sourceTree = ""; }; 254 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 255 | 2D02E47B1E0B4A5D006451C7 /* SwiftBridge-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "SwiftBridge-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 256 | 2D02E4901E0B4A5D006451C7 /* SwiftBridge-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "SwiftBridge-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 257 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 258 | 65DE84C01E6DB397002A5D7B /* SwiftBridge-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SwiftBridge-Bridging-Header.h"; sourceTree = ""; }; 259 | 65DE84C11E6DB397002A5D7B /* CalendarManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalendarManager.swift; sourceTree = ""; }; 260 | 65DE84DC1E6DB3F9002A5D7B /* CalendarManagerBridge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CalendarManagerBridge.m; sourceTree = ""; }; 261 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 262 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 263 | /* End PBXFileReference section */ 264 | 265 | /* Begin PBXFrameworksBuildPhase section */ 266 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 267 | isa = PBXFrameworksBuildPhase; 268 | buildActionMask = 2147483647; 269 | files = ( 270 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 271 | ); 272 | runOnlyForDeploymentPostprocessing = 0; 273 | }; 274 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 275 | isa = PBXFrameworksBuildPhase; 276 | buildActionMask = 2147483647; 277 | files = ( 278 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 279 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 280 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 281 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 282 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 283 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 284 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 285 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 286 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 287 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 288 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 289 | ); 290 | runOnlyForDeploymentPostprocessing = 0; 291 | }; 292 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 293 | isa = PBXFrameworksBuildPhase; 294 | buildActionMask = 2147483647; 295 | files = ( 296 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 297 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */, 298 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 299 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 300 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 301 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 302 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 303 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 304 | ); 305 | runOnlyForDeploymentPostprocessing = 0; 306 | }; 307 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 308 | isa = PBXFrameworksBuildPhase; 309 | buildActionMask = 2147483647; 310 | files = ( 311 | ); 312 | runOnlyForDeploymentPostprocessing = 0; 313 | }; 314 | /* End PBXFrameworksBuildPhase section */ 315 | 316 | /* Begin PBXGroup section */ 317 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 318 | isa = PBXGroup; 319 | children = ( 320 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 321 | ); 322 | name = Products; 323 | sourceTree = ""; 324 | }; 325 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 326 | isa = PBXGroup; 327 | children = ( 328 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 329 | ); 330 | name = Products; 331 | sourceTree = ""; 332 | }; 333 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 334 | isa = PBXGroup; 335 | children = ( 336 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 337 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 338 | ); 339 | name = Products; 340 | sourceTree = ""; 341 | }; 342 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 343 | isa = PBXGroup; 344 | children = ( 345 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 346 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 347 | ); 348 | name = Products; 349 | sourceTree = ""; 350 | }; 351 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 352 | isa = PBXGroup; 353 | children = ( 354 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 355 | ); 356 | name = Products; 357 | sourceTree = ""; 358 | }; 359 | 00E356EF1AD99517003FC87E /* SwiftBridgeTests */ = { 360 | isa = PBXGroup; 361 | children = ( 362 | 00E356F21AD99517003FC87E /* SwiftBridgeTests.m */, 363 | 00E356F01AD99517003FC87E /* Supporting Files */, 364 | ); 365 | path = SwiftBridgeTests; 366 | sourceTree = ""; 367 | }; 368 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 369 | isa = PBXGroup; 370 | children = ( 371 | 00E356F11AD99517003FC87E /* Info.plist */, 372 | ); 373 | name = "Supporting Files"; 374 | sourceTree = ""; 375 | }; 376 | 139105B71AF99BAD00B5F7CC /* Products */ = { 377 | isa = PBXGroup; 378 | children = ( 379 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 380 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 381 | ); 382 | name = Products; 383 | sourceTree = ""; 384 | }; 385 | 139FDEE71B06529A00C62182 /* Products */ = { 386 | isa = PBXGroup; 387 | children = ( 388 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 389 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 390 | ); 391 | name = Products; 392 | sourceTree = ""; 393 | }; 394 | 13B07FAE1A68108700A75B9A /* SwiftBridge */ = { 395 | isa = PBXGroup; 396 | children = ( 397 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 398 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 399 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 400 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 401 | 13B07FB61A68108700A75B9A /* Info.plist */, 402 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 403 | 13B07FB71A68108700A75B9A /* main.m */, 404 | 65DE84C11E6DB397002A5D7B /* CalendarManager.swift */, 405 | 65DE84C01E6DB397002A5D7B /* SwiftBridge-Bridging-Header.h */, 406 | 65DE84DC1E6DB3F9002A5D7B /* CalendarManagerBridge.m */, 407 | ); 408 | name = SwiftBridge; 409 | sourceTree = ""; 410 | }; 411 | 146834001AC3E56700842450 /* Products */ = { 412 | isa = PBXGroup; 413 | children = ( 414 | 146834041AC3E56700842450 /* libReact.a */, 415 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 416 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 417 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 418 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 419 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 420 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 421 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 422 | ); 423 | name = Products; 424 | sourceTree = ""; 425 | }; 426 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 427 | isa = PBXGroup; 428 | children = ( 429 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 430 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 431 | ); 432 | name = Products; 433 | sourceTree = ""; 434 | }; 435 | 78C398B11ACF4ADC00677621 /* Products */ = { 436 | isa = PBXGroup; 437 | children = ( 438 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 439 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 440 | ); 441 | name = Products; 442 | sourceTree = ""; 443 | }; 444 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 445 | isa = PBXGroup; 446 | children = ( 447 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 448 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 449 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 450 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 451 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 452 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 453 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 454 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 455 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 456 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 457 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 458 | ); 459 | name = Libraries; 460 | sourceTree = ""; 461 | }; 462 | 832341B11AAA6A8300B99B32 /* Products */ = { 463 | isa = PBXGroup; 464 | children = ( 465 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 466 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 467 | ); 468 | name = Products; 469 | sourceTree = ""; 470 | }; 471 | 83CBB9F61A601CBA00E9B192 = { 472 | isa = PBXGroup; 473 | children = ( 474 | 13B07FAE1A68108700A75B9A /* SwiftBridge */, 475 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 476 | 00E356EF1AD99517003FC87E /* SwiftBridgeTests */, 477 | 83CBBA001A601CBA00E9B192 /* Products */, 478 | ); 479 | indentWidth = 2; 480 | sourceTree = ""; 481 | tabWidth = 2; 482 | }; 483 | 83CBBA001A601CBA00E9B192 /* Products */ = { 484 | isa = PBXGroup; 485 | children = ( 486 | 13B07F961A680F5B00A75B9A /* SwiftBridge.app */, 487 | 00E356EE1AD99517003FC87E /* SwiftBridgeTests.xctest */, 488 | 2D02E47B1E0B4A5D006451C7 /* SwiftBridge-tvOS.app */, 489 | 2D02E4901E0B4A5D006451C7 /* SwiftBridge-tvOSTests.xctest */, 490 | ); 491 | name = Products; 492 | sourceTree = ""; 493 | }; 494 | /* End PBXGroup section */ 495 | 496 | /* Begin PBXNativeTarget section */ 497 | 00E356ED1AD99517003FC87E /* SwiftBridgeTests */ = { 498 | isa = PBXNativeTarget; 499 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "SwiftBridgeTests" */; 500 | buildPhases = ( 501 | 00E356EA1AD99517003FC87E /* Sources */, 502 | 00E356EB1AD99517003FC87E /* Frameworks */, 503 | 00E356EC1AD99517003FC87E /* Resources */, 504 | ); 505 | buildRules = ( 506 | ); 507 | dependencies = ( 508 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 509 | ); 510 | name = SwiftBridgeTests; 511 | productName = SwiftBridgeTests; 512 | productReference = 00E356EE1AD99517003FC87E /* SwiftBridgeTests.xctest */; 513 | productType = "com.apple.product-type.bundle.unit-test"; 514 | }; 515 | 13B07F861A680F5B00A75B9A /* SwiftBridge */ = { 516 | isa = PBXNativeTarget; 517 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "SwiftBridge" */; 518 | buildPhases = ( 519 | 13B07F871A680F5B00A75B9A /* Sources */, 520 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 521 | 13B07F8E1A680F5B00A75B9A /* Resources */, 522 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 523 | ); 524 | buildRules = ( 525 | ); 526 | dependencies = ( 527 | ); 528 | name = SwiftBridge; 529 | productName = "Hello World"; 530 | productReference = 13B07F961A680F5B00A75B9A /* SwiftBridge.app */; 531 | productType = "com.apple.product-type.application"; 532 | }; 533 | 2D02E47A1E0B4A5D006451C7 /* SwiftBridge-tvOS */ = { 534 | isa = PBXNativeTarget; 535 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SwiftBridge-tvOS" */; 536 | buildPhases = ( 537 | 2D02E4771E0B4A5D006451C7 /* Sources */, 538 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 539 | 2D02E4791E0B4A5D006451C7 /* Resources */, 540 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 541 | ); 542 | buildRules = ( 543 | ); 544 | dependencies = ( 545 | ); 546 | name = "SwiftBridge-tvOS"; 547 | productName = "SwiftBridge-tvOS"; 548 | productReference = 2D02E47B1E0B4A5D006451C7 /* SwiftBridge-tvOS.app */; 549 | productType = "com.apple.product-type.application"; 550 | }; 551 | 2D02E48F1E0B4A5D006451C7 /* SwiftBridge-tvOSTests */ = { 552 | isa = PBXNativeTarget; 553 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SwiftBridge-tvOSTests" */; 554 | buildPhases = ( 555 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 556 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 557 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 558 | ); 559 | buildRules = ( 560 | ); 561 | dependencies = ( 562 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 563 | ); 564 | name = "SwiftBridge-tvOSTests"; 565 | productName = "SwiftBridge-tvOSTests"; 566 | productReference = 2D02E4901E0B4A5D006451C7 /* SwiftBridge-tvOSTests.xctest */; 567 | productType = "com.apple.product-type.bundle.unit-test"; 568 | }; 569 | /* End PBXNativeTarget section */ 570 | 571 | /* Begin PBXProject section */ 572 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 573 | isa = PBXProject; 574 | attributes = { 575 | LastUpgradeCheck = 0610; 576 | ORGANIZATIONNAME = Facebook; 577 | TargetAttributes = { 578 | 00E356ED1AD99517003FC87E = { 579 | CreatedOnToolsVersion = 6.2; 580 | TestTargetID = 13B07F861A680F5B00A75B9A; 581 | }; 582 | 13B07F861A680F5B00A75B9A = { 583 | LastSwiftMigration = 0820; 584 | }; 585 | 2D02E47A1E0B4A5D006451C7 = { 586 | CreatedOnToolsVersion = 8.2.1; 587 | ProvisioningStyle = Automatic; 588 | }; 589 | 2D02E48F1E0B4A5D006451C7 = { 590 | CreatedOnToolsVersion = 8.2.1; 591 | ProvisioningStyle = Automatic; 592 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 593 | }; 594 | }; 595 | }; 596 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SwiftBridge" */; 597 | compatibilityVersion = "Xcode 3.2"; 598 | developmentRegion = English; 599 | hasScannedForEncodings = 0; 600 | knownRegions = ( 601 | en, 602 | Base, 603 | ); 604 | mainGroup = 83CBB9F61A601CBA00E9B192; 605 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 606 | projectDirPath = ""; 607 | projectReferences = ( 608 | { 609 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 610 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 611 | }, 612 | { 613 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 614 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 615 | }, 616 | { 617 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 618 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 619 | }, 620 | { 621 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 622 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 623 | }, 624 | { 625 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 626 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 627 | }, 628 | { 629 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 630 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 631 | }, 632 | { 633 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 634 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 635 | }, 636 | { 637 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 638 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 639 | }, 640 | { 641 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 642 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 643 | }, 644 | { 645 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 646 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 647 | }, 648 | { 649 | ProductGroup = 146834001AC3E56700842450 /* Products */; 650 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 651 | }, 652 | ); 653 | projectRoot = ""; 654 | targets = ( 655 | 13B07F861A680F5B00A75B9A /* SwiftBridge */, 656 | 00E356ED1AD99517003FC87E /* SwiftBridgeTests */, 657 | 2D02E47A1E0B4A5D006451C7 /* SwiftBridge-tvOS */, 658 | 2D02E48F1E0B4A5D006451C7 /* SwiftBridge-tvOSTests */, 659 | ); 660 | }; 661 | /* End PBXProject section */ 662 | 663 | /* Begin PBXReferenceProxy section */ 664 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 665 | isa = PBXReferenceProxy; 666 | fileType = archive.ar; 667 | path = libRCTActionSheet.a; 668 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 669 | sourceTree = BUILT_PRODUCTS_DIR; 670 | }; 671 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 672 | isa = PBXReferenceProxy; 673 | fileType = archive.ar; 674 | path = libRCTGeolocation.a; 675 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 676 | sourceTree = BUILT_PRODUCTS_DIR; 677 | }; 678 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 679 | isa = PBXReferenceProxy; 680 | fileType = archive.ar; 681 | path = libRCTImage.a; 682 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 683 | sourceTree = BUILT_PRODUCTS_DIR; 684 | }; 685 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 686 | isa = PBXReferenceProxy; 687 | fileType = archive.ar; 688 | path = libRCTNetwork.a; 689 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 690 | sourceTree = BUILT_PRODUCTS_DIR; 691 | }; 692 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 693 | isa = PBXReferenceProxy; 694 | fileType = archive.ar; 695 | path = libRCTVibration.a; 696 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 697 | sourceTree = BUILT_PRODUCTS_DIR; 698 | }; 699 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 700 | isa = PBXReferenceProxy; 701 | fileType = archive.ar; 702 | path = libRCTSettings.a; 703 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 704 | sourceTree = BUILT_PRODUCTS_DIR; 705 | }; 706 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 707 | isa = PBXReferenceProxy; 708 | fileType = archive.ar; 709 | path = libRCTWebSocket.a; 710 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 711 | sourceTree = BUILT_PRODUCTS_DIR; 712 | }; 713 | 146834041AC3E56700842450 /* libReact.a */ = { 714 | isa = PBXReferenceProxy; 715 | fileType = archive.ar; 716 | path = libReact.a; 717 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 718 | sourceTree = BUILT_PRODUCTS_DIR; 719 | }; 720 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 721 | isa = PBXReferenceProxy; 722 | fileType = archive.ar; 723 | path = "libRCTImage-tvOS.a"; 724 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 725 | sourceTree = BUILT_PRODUCTS_DIR; 726 | }; 727 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 728 | isa = PBXReferenceProxy; 729 | fileType = archive.ar; 730 | path = "libRCTLinking-tvOS.a"; 731 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 732 | sourceTree = BUILT_PRODUCTS_DIR; 733 | }; 734 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 735 | isa = PBXReferenceProxy; 736 | fileType = archive.ar; 737 | path = "libRCTNetwork-tvOS.a"; 738 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 739 | sourceTree = BUILT_PRODUCTS_DIR; 740 | }; 741 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 742 | isa = PBXReferenceProxy; 743 | fileType = archive.ar; 744 | path = "libRCTSettings-tvOS.a"; 745 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 746 | sourceTree = BUILT_PRODUCTS_DIR; 747 | }; 748 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 749 | isa = PBXReferenceProxy; 750 | fileType = archive.ar; 751 | path = "libRCTText-tvOS.a"; 752 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 753 | sourceTree = BUILT_PRODUCTS_DIR; 754 | }; 755 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 756 | isa = PBXReferenceProxy; 757 | fileType = archive.ar; 758 | path = "libRCTWebSocket-tvOS.a"; 759 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 760 | sourceTree = BUILT_PRODUCTS_DIR; 761 | }; 762 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 763 | isa = PBXReferenceProxy; 764 | fileType = archive.ar; 765 | path = libReact.a; 766 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 767 | sourceTree = BUILT_PRODUCTS_DIR; 768 | }; 769 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 770 | isa = PBXReferenceProxy; 771 | fileType = archive.ar; 772 | path = libyoga.a; 773 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 774 | sourceTree = BUILT_PRODUCTS_DIR; 775 | }; 776 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 777 | isa = PBXReferenceProxy; 778 | fileType = archive.ar; 779 | path = libyoga.a; 780 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 781 | sourceTree = BUILT_PRODUCTS_DIR; 782 | }; 783 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 784 | isa = PBXReferenceProxy; 785 | fileType = archive.ar; 786 | path = libcxxreact.a; 787 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 788 | sourceTree = BUILT_PRODUCTS_DIR; 789 | }; 790 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 791 | isa = PBXReferenceProxy; 792 | fileType = archive.ar; 793 | path = libcxxreact.a; 794 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 795 | sourceTree = BUILT_PRODUCTS_DIR; 796 | }; 797 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 798 | isa = PBXReferenceProxy; 799 | fileType = archive.ar; 800 | path = libjschelpers.a; 801 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 802 | sourceTree = BUILT_PRODUCTS_DIR; 803 | }; 804 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 805 | isa = PBXReferenceProxy; 806 | fileType = archive.ar; 807 | path = libjschelpers.a; 808 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 809 | sourceTree = BUILT_PRODUCTS_DIR; 810 | }; 811 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 812 | isa = PBXReferenceProxy; 813 | fileType = archive.ar; 814 | path = libRCTAnimation.a; 815 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 816 | sourceTree = BUILT_PRODUCTS_DIR; 817 | }; 818 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 819 | isa = PBXReferenceProxy; 820 | fileType = archive.ar; 821 | path = "libRCTAnimation-tvOS.a"; 822 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 823 | sourceTree = BUILT_PRODUCTS_DIR; 824 | }; 825 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 826 | isa = PBXReferenceProxy; 827 | fileType = archive.ar; 828 | path = libRCTLinking.a; 829 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 830 | sourceTree = BUILT_PRODUCTS_DIR; 831 | }; 832 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 833 | isa = PBXReferenceProxy; 834 | fileType = archive.ar; 835 | path = libRCTText.a; 836 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 837 | sourceTree = BUILT_PRODUCTS_DIR; 838 | }; 839 | /* End PBXReferenceProxy section */ 840 | 841 | /* Begin PBXResourcesBuildPhase section */ 842 | 00E356EC1AD99517003FC87E /* Resources */ = { 843 | isa = PBXResourcesBuildPhase; 844 | buildActionMask = 2147483647; 845 | files = ( 846 | ); 847 | runOnlyForDeploymentPostprocessing = 0; 848 | }; 849 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 850 | isa = PBXResourcesBuildPhase; 851 | buildActionMask = 2147483647; 852 | files = ( 853 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 854 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 855 | ); 856 | runOnlyForDeploymentPostprocessing = 0; 857 | }; 858 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 859 | isa = PBXResourcesBuildPhase; 860 | buildActionMask = 2147483647; 861 | files = ( 862 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 863 | ); 864 | runOnlyForDeploymentPostprocessing = 0; 865 | }; 866 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 867 | isa = PBXResourcesBuildPhase; 868 | buildActionMask = 2147483647; 869 | files = ( 870 | ); 871 | runOnlyForDeploymentPostprocessing = 0; 872 | }; 873 | /* End PBXResourcesBuildPhase section */ 874 | 875 | /* Begin PBXShellScriptBuildPhase section */ 876 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 877 | isa = PBXShellScriptBuildPhase; 878 | buildActionMask = 2147483647; 879 | files = ( 880 | ); 881 | inputPaths = ( 882 | ); 883 | name = "Bundle React Native code and images"; 884 | outputPaths = ( 885 | ); 886 | runOnlyForDeploymentPostprocessing = 0; 887 | shellPath = /bin/sh; 888 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 889 | }; 890 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 891 | isa = PBXShellScriptBuildPhase; 892 | buildActionMask = 2147483647; 893 | files = ( 894 | ); 895 | inputPaths = ( 896 | ); 897 | name = "Bundle React Native Code And Images"; 898 | outputPaths = ( 899 | ); 900 | runOnlyForDeploymentPostprocessing = 0; 901 | shellPath = /bin/sh; 902 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 903 | }; 904 | /* End PBXShellScriptBuildPhase section */ 905 | 906 | /* Begin PBXSourcesBuildPhase section */ 907 | 00E356EA1AD99517003FC87E /* Sources */ = { 908 | isa = PBXSourcesBuildPhase; 909 | buildActionMask = 2147483647; 910 | files = ( 911 | 00E356F31AD99517003FC87E /* SwiftBridgeTests.m in Sources */, 912 | ); 913 | runOnlyForDeploymentPostprocessing = 0; 914 | }; 915 | 13B07F871A680F5B00A75B9A /* Sources */ = { 916 | isa = PBXSourcesBuildPhase; 917 | buildActionMask = 2147483647; 918 | files = ( 919 | 65DE84DD1E6DB3F9002A5D7B /* CalendarManagerBridge.m in Sources */, 920 | 65DE84C21E6DB397002A5D7B /* CalendarManager.swift in Sources */, 921 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 922 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 923 | ); 924 | runOnlyForDeploymentPostprocessing = 0; 925 | }; 926 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 927 | isa = PBXSourcesBuildPhase; 928 | buildActionMask = 2147483647; 929 | files = ( 930 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 931 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 932 | ); 933 | runOnlyForDeploymentPostprocessing = 0; 934 | }; 935 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 936 | isa = PBXSourcesBuildPhase; 937 | buildActionMask = 2147483647; 938 | files = ( 939 | 2DCD954D1E0B4F2C00145EB5 /* SwiftBridgeTests.m in Sources */, 940 | ); 941 | runOnlyForDeploymentPostprocessing = 0; 942 | }; 943 | /* End PBXSourcesBuildPhase section */ 944 | 945 | /* Begin PBXTargetDependency section */ 946 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 947 | isa = PBXTargetDependency; 948 | target = 13B07F861A680F5B00A75B9A /* SwiftBridge */; 949 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 950 | }; 951 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 952 | isa = PBXTargetDependency; 953 | target = 2D02E47A1E0B4A5D006451C7 /* SwiftBridge-tvOS */; 954 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 955 | }; 956 | /* End PBXTargetDependency section */ 957 | 958 | /* Begin PBXVariantGroup section */ 959 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 960 | isa = PBXVariantGroup; 961 | children = ( 962 | 13B07FB21A68108700A75B9A /* Base */, 963 | ); 964 | name = LaunchScreen.xib; 965 | path = SwiftBridge; 966 | sourceTree = ""; 967 | }; 968 | /* End PBXVariantGroup section */ 969 | 970 | /* Begin XCBuildConfiguration section */ 971 | 00E356F61AD99517003FC87E /* Debug */ = { 972 | isa = XCBuildConfiguration; 973 | buildSettings = { 974 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 975 | BUNDLE_LOADER = "$(TEST_HOST)"; 976 | GCC_PREPROCESSOR_DEFINITIONS = ( 977 | "DEBUG=1", 978 | "$(inherited)", 979 | ); 980 | INFOPLIST_FILE = SwiftBridgeTests/Info.plist; 981 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 982 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 983 | OTHER_LDFLAGS = ( 984 | "-ObjC", 985 | "-lc++", 986 | ); 987 | PRODUCT_NAME = "$(TARGET_NAME)"; 988 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftBridge.app/SwiftBridge"; 989 | }; 990 | name = Debug; 991 | }; 992 | 00E356F71AD99517003FC87E /* Release */ = { 993 | isa = XCBuildConfiguration; 994 | buildSettings = { 995 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 996 | BUNDLE_LOADER = "$(TEST_HOST)"; 997 | COPY_PHASE_STRIP = NO; 998 | INFOPLIST_FILE = SwiftBridgeTests/Info.plist; 999 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1000 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1001 | OTHER_LDFLAGS = ( 1002 | "-ObjC", 1003 | "-lc++", 1004 | ); 1005 | PRODUCT_NAME = "$(TARGET_NAME)"; 1006 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftBridge.app/SwiftBridge"; 1007 | }; 1008 | name = Release; 1009 | }; 1010 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1011 | isa = XCBuildConfiguration; 1012 | buildSettings = { 1013 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1014 | CLANG_ENABLE_MODULES = YES; 1015 | CURRENT_PROJECT_VERSION = 1; 1016 | DEAD_CODE_STRIPPING = NO; 1017 | INFOPLIST_FILE = SwiftBridge/Info.plist; 1018 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1019 | OTHER_LDFLAGS = ( 1020 | "$(inherited)", 1021 | "-ObjC", 1022 | "-lc++", 1023 | ); 1024 | PRODUCT_NAME = SwiftBridge; 1025 | SWIFT_OBJC_BRIDGING_HEADER = "SwiftBridge-Bridging-Header.h"; 1026 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 1027 | SWIFT_VERSION = 3.0; 1028 | VERSIONING_SYSTEM = "apple-generic"; 1029 | }; 1030 | name = Debug; 1031 | }; 1032 | 13B07F951A680F5B00A75B9A /* Release */ = { 1033 | isa = XCBuildConfiguration; 1034 | buildSettings = { 1035 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1036 | CLANG_ENABLE_MODULES = YES; 1037 | CURRENT_PROJECT_VERSION = 1; 1038 | INFOPLIST_FILE = SwiftBridge/Info.plist; 1039 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1040 | OTHER_LDFLAGS = ( 1041 | "$(inherited)", 1042 | "-ObjC", 1043 | "-lc++", 1044 | ); 1045 | PRODUCT_NAME = SwiftBridge; 1046 | SWIFT_OBJC_BRIDGING_HEADER = "SwiftBridge-Bridging-Header.h"; 1047 | SWIFT_VERSION = 3.0; 1048 | VERSIONING_SYSTEM = "apple-generic"; 1049 | }; 1050 | name = Release; 1051 | }; 1052 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1053 | isa = XCBuildConfiguration; 1054 | buildSettings = { 1055 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1056 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1057 | CLANG_ANALYZER_NONNULL = YES; 1058 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1059 | CLANG_WARN_INFINITE_RECURSION = YES; 1060 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1061 | DEBUG_INFORMATION_FORMAT = dwarf; 1062 | ENABLE_TESTABILITY = YES; 1063 | GCC_NO_COMMON_BLOCKS = YES; 1064 | INFOPLIST_FILE = "SwiftBridge-tvOS/Info.plist"; 1065 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1066 | OTHER_LDFLAGS = ( 1067 | "-ObjC", 1068 | "-lc++", 1069 | ); 1070 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.SwiftBridge-tvOS"; 1071 | PRODUCT_NAME = "$(TARGET_NAME)"; 1072 | SDKROOT = appletvos; 1073 | TARGETED_DEVICE_FAMILY = 3; 1074 | TVOS_DEPLOYMENT_TARGET = 9.2; 1075 | }; 1076 | name = Debug; 1077 | }; 1078 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1079 | isa = XCBuildConfiguration; 1080 | buildSettings = { 1081 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1082 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1083 | CLANG_ANALYZER_NONNULL = YES; 1084 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1085 | CLANG_WARN_INFINITE_RECURSION = YES; 1086 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1087 | COPY_PHASE_STRIP = NO; 1088 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1089 | GCC_NO_COMMON_BLOCKS = YES; 1090 | INFOPLIST_FILE = "SwiftBridge-tvOS/Info.plist"; 1091 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1092 | OTHER_LDFLAGS = ( 1093 | "-ObjC", 1094 | "-lc++", 1095 | ); 1096 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.SwiftBridge-tvOS"; 1097 | PRODUCT_NAME = "$(TARGET_NAME)"; 1098 | SDKROOT = appletvos; 1099 | TARGETED_DEVICE_FAMILY = 3; 1100 | TVOS_DEPLOYMENT_TARGET = 9.2; 1101 | }; 1102 | name = Release; 1103 | }; 1104 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1105 | isa = XCBuildConfiguration; 1106 | buildSettings = { 1107 | BUNDLE_LOADER = "$(TEST_HOST)"; 1108 | CLANG_ANALYZER_NONNULL = YES; 1109 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1110 | CLANG_WARN_INFINITE_RECURSION = YES; 1111 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1112 | DEBUG_INFORMATION_FORMAT = dwarf; 1113 | ENABLE_TESTABILITY = YES; 1114 | GCC_NO_COMMON_BLOCKS = YES; 1115 | INFOPLIST_FILE = "SwiftBridge-tvOSTests/Info.plist"; 1116 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1117 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.SwiftBridge-tvOSTests"; 1118 | PRODUCT_NAME = "$(TARGET_NAME)"; 1119 | SDKROOT = appletvos; 1120 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftBridge-tvOS.app/SwiftBridge-tvOS"; 1121 | TVOS_DEPLOYMENT_TARGET = 10.1; 1122 | }; 1123 | name = Debug; 1124 | }; 1125 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1126 | isa = XCBuildConfiguration; 1127 | buildSettings = { 1128 | BUNDLE_LOADER = "$(TEST_HOST)"; 1129 | CLANG_ANALYZER_NONNULL = YES; 1130 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1131 | CLANG_WARN_INFINITE_RECURSION = YES; 1132 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1133 | COPY_PHASE_STRIP = NO; 1134 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1135 | GCC_NO_COMMON_BLOCKS = YES; 1136 | INFOPLIST_FILE = "SwiftBridge-tvOSTests/Info.plist"; 1137 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1138 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.SwiftBridge-tvOSTests"; 1139 | PRODUCT_NAME = "$(TARGET_NAME)"; 1140 | SDKROOT = appletvos; 1141 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftBridge-tvOS.app/SwiftBridge-tvOS"; 1142 | TVOS_DEPLOYMENT_TARGET = 10.1; 1143 | }; 1144 | name = Release; 1145 | }; 1146 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1147 | isa = XCBuildConfiguration; 1148 | buildSettings = { 1149 | ALWAYS_SEARCH_USER_PATHS = NO; 1150 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1151 | CLANG_CXX_LIBRARY = "libc++"; 1152 | CLANG_ENABLE_MODULES = YES; 1153 | CLANG_ENABLE_OBJC_ARC = YES; 1154 | CLANG_WARN_BOOL_CONVERSION = YES; 1155 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1156 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1157 | CLANG_WARN_EMPTY_BODY = YES; 1158 | CLANG_WARN_ENUM_CONVERSION = YES; 1159 | CLANG_WARN_INT_CONVERSION = YES; 1160 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1161 | CLANG_WARN_UNREACHABLE_CODE = YES; 1162 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1163 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1164 | COPY_PHASE_STRIP = NO; 1165 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1166 | GCC_C_LANGUAGE_STANDARD = gnu99; 1167 | GCC_DYNAMIC_NO_PIC = NO; 1168 | GCC_OPTIMIZATION_LEVEL = 0; 1169 | GCC_PREPROCESSOR_DEFINITIONS = ( 1170 | "DEBUG=1", 1171 | "$(inherited)", 1172 | ); 1173 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1174 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1175 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1176 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1177 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1178 | GCC_WARN_UNUSED_FUNCTION = YES; 1179 | GCC_WARN_UNUSED_VARIABLE = YES; 1180 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1181 | MTL_ENABLE_DEBUG_INFO = YES; 1182 | ONLY_ACTIVE_ARCH = YES; 1183 | SDKROOT = iphoneos; 1184 | }; 1185 | name = Debug; 1186 | }; 1187 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1188 | isa = XCBuildConfiguration; 1189 | buildSettings = { 1190 | ALWAYS_SEARCH_USER_PATHS = NO; 1191 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1192 | CLANG_CXX_LIBRARY = "libc++"; 1193 | CLANG_ENABLE_MODULES = YES; 1194 | CLANG_ENABLE_OBJC_ARC = YES; 1195 | CLANG_WARN_BOOL_CONVERSION = YES; 1196 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1197 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1198 | CLANG_WARN_EMPTY_BODY = YES; 1199 | CLANG_WARN_ENUM_CONVERSION = YES; 1200 | CLANG_WARN_INT_CONVERSION = YES; 1201 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1202 | CLANG_WARN_UNREACHABLE_CODE = YES; 1203 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1204 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1205 | COPY_PHASE_STRIP = YES; 1206 | ENABLE_NS_ASSERTIONS = NO; 1207 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1208 | GCC_C_LANGUAGE_STANDARD = gnu99; 1209 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1210 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1211 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1212 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1213 | GCC_WARN_UNUSED_FUNCTION = YES; 1214 | GCC_WARN_UNUSED_VARIABLE = YES; 1215 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1216 | MTL_ENABLE_DEBUG_INFO = NO; 1217 | SDKROOT = iphoneos; 1218 | VALIDATE_PRODUCT = YES; 1219 | }; 1220 | name = Release; 1221 | }; 1222 | /* End XCBuildConfiguration section */ 1223 | 1224 | /* Begin XCConfigurationList section */ 1225 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "SwiftBridgeTests" */ = { 1226 | isa = XCConfigurationList; 1227 | buildConfigurations = ( 1228 | 00E356F61AD99517003FC87E /* Debug */, 1229 | 00E356F71AD99517003FC87E /* Release */, 1230 | ); 1231 | defaultConfigurationIsVisible = 0; 1232 | defaultConfigurationName = Release; 1233 | }; 1234 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "SwiftBridge" */ = { 1235 | isa = XCConfigurationList; 1236 | buildConfigurations = ( 1237 | 13B07F941A680F5B00A75B9A /* Debug */, 1238 | 13B07F951A680F5B00A75B9A /* Release */, 1239 | ); 1240 | defaultConfigurationIsVisible = 0; 1241 | defaultConfigurationName = Release; 1242 | }; 1243 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SwiftBridge-tvOS" */ = { 1244 | isa = XCConfigurationList; 1245 | buildConfigurations = ( 1246 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1247 | 2D02E4981E0B4A5E006451C7 /* Release */, 1248 | ); 1249 | defaultConfigurationIsVisible = 0; 1250 | defaultConfigurationName = Release; 1251 | }; 1252 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SwiftBridge-tvOSTests" */ = { 1253 | isa = XCConfigurationList; 1254 | buildConfigurations = ( 1255 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1256 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1257 | ); 1258 | defaultConfigurationIsVisible = 0; 1259 | defaultConfigurationName = Release; 1260 | }; 1261 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SwiftBridge" */ = { 1262 | isa = XCConfigurationList; 1263 | buildConfigurations = ( 1264 | 83CBBA201A601CBA00E9B192 /* Debug */, 1265 | 83CBBA211A601CBA00E9B192 /* Release */, 1266 | ); 1267 | defaultConfigurationIsVisible = 0; 1268 | defaultConfigurationName = Release; 1269 | }; 1270 | /* End XCConfigurationList section */ 1271 | }; 1272 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1273 | } 1274 | -------------------------------------------------------------------------------- /ios/SwiftBridge.xcodeproj/xcshareddata/xcschemes/SwiftBridge-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/SwiftBridge.xcodeproj/xcshareddata/xcschemes/SwiftBridge.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/SwiftBridge/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/SwiftBridge/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"SwiftBridge" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /ios/SwiftBridge/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/SwiftBridge/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/SwiftBridge/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/SwiftBridge/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ios/SwiftBridgeTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/SwiftBridgeTests/SwiftBridgeTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface SwiftBridgeTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation SwiftBridgeTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SwiftBridge", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "15.4.2", 11 | "react-native": "0.42.0" 12 | }, 13 | "devDependencies": { 14 | "babel-jest": "19.0.0", 15 | "babel-preset-react-native": "1.9.1", 16 | "jest": "19.0.2", 17 | "react-test-renderer": "15.4.2" 18 | }, 19 | "jest": { 20 | "preset": "react-native" 21 | } 22 | } --------------------------------------------------------------------------------