├── .npmignore
├── example
├── .watchmanconfig
├── .gitattributes
├── app.json
├── babel.config.js
├── android
│ ├── app
│ │ ├── src
│ │ │ ├── main
│ │ │ │ ├── res
│ │ │ │ │ ├── values
│ │ │ │ │ │ ├── strings.xml
│ │ │ │ │ │ └── styles.xml
│ │ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ └── mipmap-xxxhdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ ├── java
│ │ │ │ │ └── com
│ │ │ │ │ │ └── example
│ │ │ │ │ │ ├── MainActivity.java
│ │ │ │ │ │ └── MainApplication.java
│ │ │ │ └── AndroidManifest.xml
│ │ │ └── debug
│ │ │ │ └── AndroidManifest.xml
│ │ ├── build_defs.bzl
│ │ ├── proguard-rules.pro
│ │ ├── BUCK
│ │ └── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── keystores
│ │ ├── debug.keystore.properties
│ │ └── BUCK
│ ├── settings.gradle
│ ├── gradle.properties
│ ├── build.gradle
│ ├── gradlew.bat
│ └── gradlew
├── ios
│ ├── example
│ │ ├── Images.xcassets
│ │ │ ├── Contents.json
│ │ │ └── AppIcon.appiconset
│ │ │ │ └── Contents.json
│ │ ├── AppDelegate.h
│ │ ├── main.m
│ │ ├── AppDelegate.m
│ │ ├── Info.plist
│ │ └── Base.lproj
│ │ │ └── LaunchScreen.xib
│ ├── example.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ ├── exampleTests
│ │ ├── Info.plist
│ │ └── exampleTests.m
│ ├── example-tvOSTests
│ │ └── Info.plist
│ ├── Podfile
│ ├── example-tvOS
│ │ └── Info.plist
│ ├── example.xcodeproj
│ │ ├── xcshareddata
│ │ │ └── xcschemes
│ │ │ │ ├── example.xcscheme
│ │ │ │ └── example-tvOS.xcscheme
│ │ └── project.pbxproj
│ └── Podfile.lock
├── .buckconfig
├── index.js
├── __tests__
│ └── App-test.js
├── metro.config.js
├── package.json
├── .gitignore
├── .flowconfig
└── App.js
├── .gitattributes
├── ios
├── RNQuiet.h
├── RNQuiet.xcworkspace
│ └── contents.xcworkspacedata
├── Podfile
├── Podfile.lock
├── RNQuiet.m
└── RNQuiet.xcodeproj
│ └── project.pbxproj
├── android
├── src
│ └── main
│ │ ├── AndroidManifest.xml
│ │ └── java
│ │ └── io
│ │ └── github
│ │ └── cawfree
│ │ └── quiet
│ │ ├── RNQuietPackage.java
│ │ └── RNQuietModule.java
├── README.md
└── build.gradle
├── .gitignore
├── react-native-quiet.podspec
├── package.json
├── index.js
├── README.md
└── scripts
└── examples_postinstall.js
/.npmignore:
--------------------------------------------------------------------------------
1 | example
2 |
--------------------------------------------------------------------------------
/example/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/example/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/example/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "example",
3 | "displayName": "example"
4 | }
--------------------------------------------------------------------------------
/example/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: ['module:metro-react-native-babel-preset'],
3 | };
4 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | example
3 |
4 |
--------------------------------------------------------------------------------
/example/ios/example/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/example/.buckconfig:
--------------------------------------------------------------------------------
1 |
2 | [android]
3 | target = Google Inc.:Google APIs:23
4 |
5 | [maven_repositories]
6 | central = https://repo1.maven.org/maven2
7 |
--------------------------------------------------------------------------------
/example/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/ios/RNQuiet.h:
--------------------------------------------------------------------------------
1 | #import
2 | #import
3 |
4 | @interface RNQuiet : RCTEventEmitter
5 |
6 | @end
7 |
--------------------------------------------------------------------------------
/example/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/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cawfree/react-native-quiet/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/keystores/BUCK:
--------------------------------------------------------------------------------
1 | keystore(
2 | name = "debug",
3 | properties = "debug.keystore.properties",
4 | store = "debug.keystore",
5 | visibility = [
6 | "PUBLIC",
7 | ],
8 | )
9 |
--------------------------------------------------------------------------------
/example/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import {AppRegistry} from 'react-native';
6 | import App from './App';
7 | import {name as appName} from './app.json';
8 |
9 | AppRegistry.registerComponent(appName, () => App);
10 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/example/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 |
--------------------------------------------------------------------------------
/ios/RNQuiet.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/example/ios/example.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ios/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment the next line to define a global platform for your project
2 | # platform :ios, '9.0'
3 |
4 | target 'RNQuiet' do
5 | # Comment the next line if you don't want to use dynamic frameworks
6 | use_frameworks!
7 |
8 | # Pods for RNQuiet
9 | pod 'QuietModemKit', '~> 0.0.1'
10 |
11 | end
12 |
--------------------------------------------------------------------------------
/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/example/__tests__/App-test.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import 'react-native';
6 | import React from 'react';
7 | import App from '../App';
8 |
9 | // Note: test renderer must be required after react-native.
10 | import renderer from 'react-test-renderer';
11 |
12 | it('renders correctly', () => {
13 | renderer.create();
14 | });
15 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - QuietModemKit (0.0.1)
3 |
4 | DEPENDENCIES:
5 | - QuietModemKit (~> 0.0.1)
6 |
7 | SPEC REPOS:
8 | trunk:
9 | - QuietModemKit
10 |
11 | SPEC CHECKSUMS:
12 | QuietModemKit: d4ec7ef422a64caa8670babee8fc99ae2ce44852
13 |
14 | PODFILE CHECKSUM: 4c557be30f5781ca834ba6f2e80a38c8aef6ca4f
15 |
16 | COCOAPODS: 1.8.3
17 |
--------------------------------------------------------------------------------
/example/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'example'
2 | include ':react-native-quiet'
3 | project(':react-native-quiet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-quiet/android')
4 | include ':quiet'
5 | project(':quiet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-quiet/android/org.quietmodem.Quiet/quiet')
6 |
7 | include ':app'
8 |
--------------------------------------------------------------------------------
/example/metro.config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Metro configuration for React Native
3 | * https://github.com/facebook/react-native
4 | *
5 | * @format
6 | */
7 |
8 | module.exports = {
9 | transformer: {
10 | getTransformOptions: async () => ({
11 | transform: {
12 | experimentalImportSupport: false,
13 | inlineRequires: false,
14 | },
15 | }),
16 | },
17 | };
18 |
--------------------------------------------------------------------------------
/example/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/example/android/app/src/main/java/com/example/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.example;
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 "example";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/example/ios/example/AppDelegate.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Facebook, Inc. and its affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 | #import
10 |
11 | @interface AppDelegate : UIResponder
12 |
13 | @property (nonatomic, strong) UIWindow *window;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/example/ios/example/main.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Facebook, Inc. and its affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 |
10 | #import "AppDelegate.h"
11 |
12 | int main(int argc, char * argv[]) {
13 | @autoreleasepool {
14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/example/android/app/build_defs.bzl:
--------------------------------------------------------------------------------
1 | """Helper definitions to glob .aar and .jar targets"""
2 |
3 | def create_aar_targets(aarfiles):
4 | for aarfile in aarfiles:
5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")]
6 | lib_deps.append(":" + name)
7 | android_prebuilt_aar(
8 | name = name,
9 | aar = aarfile,
10 | )
11 |
12 | def create_jar_targets(jarfiles):
13 | for jarfile in jarfiles:
14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")]
15 | lib_deps.append(":" + name)
16 | prebuilt_jar(
17 | name = name,
18 | binary_jar = jarfile,
19 | )
20 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # node.js
6 | #
7 | node_modules/
8 | npm-debug.log
9 | yarn-error.log
10 |
11 | # Xcode
12 | #
13 | build/
14 | *.pbxuser
15 | !default.pbxuser
16 | *.mode1v3
17 | !default.mode1v3
18 | *.mode2v3
19 | !default.mode2v3
20 | *.perspectivev3
21 | !default.perspectivev3
22 | xcuserdata
23 | *.xccheckout
24 | *.moved-aside
25 | DerivedData
26 | *.hmap
27 | *.ipa
28 | *.xcuserstate
29 | project.xcworkspace
30 |
31 | # Android/IntelliJ
32 | #
33 | build/
34 | .idea
35 | .gradle
36 | local.properties
37 | *.iml
38 |
39 | # BUCK
40 | buck-out/
41 | \.buckd/
42 | *.keystore
43 | ios/Pods/
44 | example/ios/Pods/
45 |
46 | android/org.quietmodem.Quiet/build/
47 | example/android/app/build
48 |
--------------------------------------------------------------------------------
/android/README.md:
--------------------------------------------------------------------------------
1 | README
2 | ======
3 |
4 | If you want to publish the lib as a maven dependency, follow these steps before publishing a new version to npm:
5 |
6 | 1. Be sure to have the Android [SDK](https://developer.android.com/studio/index.html) and [NDK](https://developer.android.com/ndk/guides/index.html) installed
7 | 2. Be sure to have a `local.properties` file in this folder that points to the Android SDK and NDK
8 | ```
9 | ndk.dir=/Users/{username}/Library/Android/sdk/ndk-bundle
10 | sdk.dir=/Users/{username}/Library/Android/sdk
11 | ```
12 | 3. Delete the `maven` folder
13 | 4. Run `./gradlew installArchives`
14 | 5. Verify that latest set of generated files is in the maven folder with the correct version number
15 |
--------------------------------------------------------------------------------
/example/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "example",
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 | "postinstall": "node ../scripts/examples_postinstall.js"
9 | },
10 | "dependencies": {
11 | "react": "16.8.3",
12 | "react-native": "0.59",
13 | "react-native-quiet": "file:../"
14 | },
15 | "devDependencies": {
16 | "@babel/core": "^7.6.4",
17 | "@babel/runtime": "^7.6.3",
18 | "babel-jest": "^24.9.0",
19 | "jest": "^24.9.0",
20 | "metro-react-native-babel-preset": "^0.56.3",
21 | "react-test-renderer": "16.8.3"
22 | },
23 | "jest": {
24 | "preset": "react-native"
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/example/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 |
--------------------------------------------------------------------------------
/example/ios/exampleTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
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 |
--------------------------------------------------------------------------------
/example/ios/example-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 |
--------------------------------------------------------------------------------
/android/src/main/java/io/github/cawfree/quiet/RNQuietPackage.java:
--------------------------------------------------------------------------------
1 | package io.github.cawfree.quiet;
2 |
3 | import java.util.Arrays;
4 | import java.util.Collections;
5 | import java.util.List;
6 |
7 | import com.facebook.react.ReactPackage;
8 | import com.facebook.react.bridge.NativeModule;
9 | import com.facebook.react.bridge.ReactApplicationContext;
10 | import com.facebook.react.uimanager.ViewManager;
11 | import com.facebook.react.bridge.JavaScriptModule;
12 |
13 | public class RNQuietPackage implements ReactPackage {
14 | @Override
15 | public List createNativeModules(ReactApplicationContext reactContext) {
16 | return Arrays.asList(new RNQuietModule(reactContext));
17 | }
18 |
19 | @Override
20 | public List createViewManagers(ReactApplicationContext reactContext) {
21 | return Collections.emptyList();
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/example/ios/Podfile:
--------------------------------------------------------------------------------
1 | platform :ios, '10.0'
2 |
3 | target 'example' do
4 | rn_path = '../node_modules/react-native'
5 |
6 | pod 'yoga', path: "#{rn_path}/ReactCommon/yoga/yoga.podspec"
7 | pod 'DoubleConversion', :podspec => "#{rn_path}/third-party-podspecs/DoubleConversion.podspec"
8 | pod 'Folly', :podspec => "#{rn_path}/third-party-podspecs/Folly.podspec"
9 | pod 'glog', :podspec => "#{rn_path}/third-party-podspecs/GLog.podspec"
10 | pod 'React', path: rn_path, subspecs: [
11 | 'Core',
12 | 'CxxBridge',
13 | 'RCTAnimation',
14 | 'RCTActionSheet',
15 | 'RCTImage',
16 | 'RCTLinkingIOS',
17 | 'RCTNetwork',
18 | 'RCTSettings',
19 | 'RCTText',
20 | 'RCTVibration',
21 | 'RCTWebSocket',
22 | 'RCTPushNotification',
23 | 'RCTCameraRoll',
24 | 'RCTSettings',
25 | 'RCTBlob',
26 | 'RCTGeolocation',
27 | 'DevSupport'
28 | ]
29 |
30 | pod 'react-native-quiet', :path => '../../react-native-quiet.podspec'
31 | end
32 |
--------------------------------------------------------------------------------
/example/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 |
--------------------------------------------------------------------------------
/react-native-quiet.podspec:
--------------------------------------------------------------------------------
1 | require "json"
2 |
3 | package = JSON.parse(File.read(File.join(__dir__, "package.json")))
4 |
5 | Pod::Spec.new do |s|
6 | s.name = "react-native-quiet"
7 | s.version = package["version"]
8 | s.summary = package["description"]
9 | s.description = <<-DESC
10 | react-native-quiet
11 | DESC
12 | s.homepage = "https://github.com/cawfree/react-native-quiet"
13 | s.license = "MIT"
14 | # s.license = { :type => "MIT", :file => "FILE_LICENSE" }
15 | s.authors = { "Alex Thomas" => "hello@cawfree.com" }
16 | s.platforms = { :ios => "9.0", :tvos => "10.0" }
17 | s.source = { :git => "https://github.com/cawfree/react-native-quiet.git", :tag => "#{s.version}" }
18 |
19 | s.source_files = "ios/**/*.{h,m,swift}"
20 | s.requires_arc = true
21 |
22 | s.dependency "React"
23 | s.dependency 'QuietModemKit', '~> 0.0.1'
24 | end
25 |
26 |
--------------------------------------------------------------------------------
/example/android/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | ext {
5 | buildToolsVersion = "28.0.3"
6 | minSdkVersion = 16
7 | compileSdkVersion = 28
8 | targetSdkVersion = 28
9 | supportLibVersion = "28.0.0"
10 | }
11 | repositories {
12 | google()
13 | jcenter()
14 | }
15 | dependencies {
16 | classpath("com.android.tools.build:gradle:3.4.0")
17 |
18 | // NOTE: Do not place your application dependencies here; they belong
19 | // in the individual module build.gradle files
20 | }
21 | }
22 |
23 | allprojects {
24 | repositories {
25 | mavenLocal()
26 | google()
27 | jcenter()
28 | maven {
29 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
30 | url "$rootDir/../node_modules/react-native/android"
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/example/.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://docs.fastlane.tools/best-practices/source-control/
50 |
51 | */fastlane/report.xml
52 | */fastlane/Preview.html
53 | */fastlane/screenshots
54 |
55 | # Bundle artifact
56 | *.jsbundle
57 |
--------------------------------------------------------------------------------
/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "20x20",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "20x20",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "29x29",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "29x29",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "40x40",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "40x40",
31 | "scale" : "3x"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "size" : "60x60",
36 | "scale" : "2x"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "size" : "60x60",
41 | "scale" : "3x"
42 | },
43 | {
44 | "idiom" : "ios-marketing",
45 | "size" : "1024x1024",
46 | "scale" : "1x"
47 | }
48 | ],
49 | "info" : {
50 | "version" : 1,
51 | "author" : "xcode"
52 | }
53 | }
--------------------------------------------------------------------------------
/example/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
13 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-native-quiet",
3 | "title": "React Native Quiet",
4 | "version": "0.1.0",
5 | "description": "🤫 Quiet for React Native.",
6 | "main": "index.js",
7 | "scripts": {
8 | "postinstall": "cd android && rm -rf org.quietmodem.Quiet && rm -rf Transducer && git clone https://github.com/quiet/org.quietmodem.Quiet && mv org.quietmodem.Quiet Transducer && cd ..",
9 | "test": "echo \"Error: no test specified\" && exit 1"
10 | },
11 | "repository": {
12 | "type": "git",
13 | "url": "git+https://github.com/cawfree/react-native-quiet.git",
14 | "baseUrl": "https://github.com/cawfree/react-native-quiet"
15 | },
16 | "keywords": [
17 | "react",
18 | "react-native",
19 | "quiet",
20 | "quietjs",
21 | "ultrasonic",
22 | "data",
23 | "audio",
24 | "send",
25 | "transmit",
26 | "chirp"
27 | ],
28 | "author": {
29 | "name": "Alex Thomas (@cawfree)",
30 | "email": "hello@cawfree.com"
31 | },
32 | "license": "MIT",
33 | "licenseFilename": "LICENSE",
34 | "readmeFilename": "README.md",
35 | "peerDependencies": {
36 | "react": "^16.8.1",
37 | "react-native": ">=0.59.0-rc.0 <1.0.x"
38 | },
39 | "devDependencies": {
40 | "react": "^16.8.3",
41 | "react-native": "^0.59.10"
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/example/android/app/src/main/java/com/example/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.example;
2 |
3 | import android.app.Application;
4 |
5 | import com.facebook.react.ReactApplication;
6 | import io.github.cawfree.quiet.RNQuietPackage;
7 | import com.facebook.react.ReactNativeHost;
8 | import com.facebook.react.ReactPackage;
9 | import com.facebook.react.shell.MainReactPackage;
10 | import com.facebook.soloader.SoLoader;
11 |
12 | import java.util.Arrays;
13 | import java.util.List;
14 |
15 | public class MainApplication extends Application implements ReactApplication {
16 |
17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
18 | @Override
19 | public boolean getUseDeveloperSupport() {
20 | return BuildConfig.DEBUG;
21 | }
22 |
23 | @Override
24 | protected List getPackages() {
25 | return Arrays.asList(
26 | new MainReactPackage(),
27 | new RNQuietPackage()
28 | );
29 | }
30 |
31 | @Override
32 | protected String getJSMainModuleName() {
33 | return "index";
34 | }
35 | };
36 |
37 | @Override
38 | public ReactNativeHost getReactNativeHost() {
39 | return mReactNativeHost;
40 | }
41 |
42 | @Override
43 | public void onCreate() {
44 | super.onCreate();
45 | SoLoader.init(this, /* native exopackage */ false);
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | import { Platform, NativeEventEmitter, NativeModules, PermissionsAndroid } from 'react-native';
2 |
3 | const { RNQuiet } = NativeModules;
4 |
5 | const nativeEventEmitter = new NativeEventEmitter(
6 | RNQuiet,
7 | );
8 |
9 | export default {
10 | ...RNQuiet,
11 | start: (key) => {
12 | if (Platform.OS === 'android') {
13 | return Promise
14 | .resolve()
15 | .then(
16 | () => {
17 | return PermissionsAndroid
18 | .request(
19 | PermissionsAndroid.PERMISSIONS.RECORD_AUDIO,
20 | )
21 | .then(
22 | (result) => {
23 | if (result === PermissionsAndroid.RESULTS.GRANTED) {
24 | return RNQuiet
25 | .start(key);
26 | }
27 | return Promise
28 | .reject(
29 | new Error(
30 | 'RNQuiet: Unable to start, because we\'re missing the microphone permission.',
31 | ),
32 | );
33 | },
34 | );
35 | },
36 | );
37 | }
38 | return Promise
39 | .resolve()
40 | .then(() => RNQuiet.start(key));
41 | },
42 | addListener: listener => nativeEventEmitter
43 | .addListener(
44 | "onMessageReceived",
45 | listener,
46 | ),
47 | };
48 |
--------------------------------------------------------------------------------
/ios/RNQuiet.m:
--------------------------------------------------------------------------------
1 | #import "RNQuiet.h"
2 |
3 | #import
4 |
5 | @implementation RNQuiet
6 |
7 | RCT_EXPORT_MODULE()
8 |
9 | static QMFrameTransmitter *tx;
10 | static QMFrameReceiver *rx;
11 |
12 | - (NSArray *)supportedEvents {
13 | return @[@"onMessageReceived"];
14 | }
15 |
16 | void stop() {
17 | if (rx != nil) {
18 | [rx close];
19 | rx = nil;
20 | }
21 | if (tx != nil) {
22 | [tx close];
23 | tx = nil;
24 | }
25 | }
26 |
27 | RCT_EXPORT_METHOD(start: (NSString *)key)
28 | {
29 | stop();
30 |
31 | tx = [[QMFrameTransmitter alloc] initWithConfig:[[QMTransmitterConfig alloc] initWithKey:key]];
32 |
33 | [[AVAudioSession sharedInstance] requestRecordPermission:^(BOOL granted){
34 | rx = [[QMFrameReceiver alloc] initWithConfig:[[QMReceiverConfig alloc] initWithKey:key]];
35 | [rx setReceiveCallback:^(NSData *frame){
36 | printf("%s\n", [frame bytes]);
37 | [self sendEventWithName:@"onMessageReceived" body:[[NSString alloc] initWithData:frame encoding:NSUTF8StringEncoding]];
38 | }];
39 | }];
40 |
41 | CFRunLoopRun();
42 | }
43 |
44 | RCT_EXPORT_METHOD(send: (NSString *)msg)
45 | {
46 | if (tx != nil) {
47 | NSData *frame = [msg dataUsingEncoding:NSUTF8StringEncoding];
48 |
49 | [tx send:frame];
50 |
51 | CFRunLoopRun();
52 | }
53 | }
54 |
55 | RCT_EXPORT_METHOD(stop)
56 | {
57 | stop();
58 | }
59 |
60 | @end
61 |
--------------------------------------------------------------------------------
/example/android/app/BUCK:
--------------------------------------------------------------------------------
1 | # To learn about Buck see [Docs](https://buckbuild.com/).
2 | # To run your application with Buck:
3 | # - install Buck
4 | # - `npm start` - to start the packager
5 | # - `cd android`
6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
8 | # - `buck install -r android/app` - compile, install and run application
9 | #
10 |
11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
12 |
13 | lib_deps = []
14 |
15 | create_aar_targets(glob(["libs/*.aar"]))
16 |
17 | create_jar_targets(glob(["libs/*.jar"]))
18 |
19 | android_library(
20 | name = "all-libs",
21 | exported_deps = lib_deps,
22 | )
23 |
24 | android_library(
25 | name = "app-code",
26 | srcs = glob([
27 | "src/main/java/**/*.java",
28 | ]),
29 | deps = [
30 | ":all-libs",
31 | ":build_config",
32 | ":res",
33 | ],
34 | )
35 |
36 | android_build_config(
37 | name = "build_config",
38 | package = "com.example",
39 | )
40 |
41 | android_resource(
42 | name = "res",
43 | package = "com.example",
44 | res = "src/main/res",
45 | )
46 |
47 | android_binary(
48 | name = "app",
49 | keystore = "//android/keystores:debug",
50 | manifest = "src/main/AndroidManifest.xml",
51 | package_type = "debug",
52 | deps = [
53 | ":app-code",
54 | ],
55 | )
56 |
--------------------------------------------------------------------------------
/example/ios/example/AppDelegate.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Facebook, Inc. and its affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import "AppDelegate.h"
9 |
10 | #import
11 | #import
12 | #import
13 |
14 | @implementation AppDelegate
15 |
16 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
17 | {
18 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
19 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
20 | moduleName:@"example"
21 | initialProperties:nil];
22 |
23 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
24 |
25 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
26 | UIViewController *rootViewController = [UIViewController new];
27 | rootViewController.view = rootView;
28 | self.window.rootViewController = rootViewController;
29 | [self.window makeKeyAndVisible];
30 | return YES;
31 | }
32 |
33 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
34 | {
35 | #if DEBUG
36 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
37 | #else
38 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
39 | #endif
40 | }
41 |
42 | @end
43 |
--------------------------------------------------------------------------------
/example/ios/example-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 |
--------------------------------------------------------------------------------
/example/ios/example/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | example
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1
25 | LSRequiresIPhoneOS
26 |
27 | NSLocationWhenInUseUsageDescription
28 |
29 | UILaunchStoryboardName
30 | LaunchScreen
31 | UIRequiredDeviceCapabilities
32 |
33 | armv7
34 |
35 | UISupportedInterfaceOrientations
36 |
37 | UIInterfaceOrientationPortrait
38 | UIInterfaceOrientationLandscapeLeft
39 | UIInterfaceOrientationLandscapeRight
40 |
41 | UIViewControllerBasedStatusBarAppearance
42 |
43 | NSLocationWhenInUseUsageDescription
44 |
45 | NSMicrophoneUsageDescription
46 | ${PRODUCT_NAME} uses the microphone for location.
47 | NSAppTransportSecurity
48 |
49 |
50 | NSAllowsArbitraryLoads
51 |
52 | NSExceptionDomains
53 |
54 | localhost
55 |
56 | NSExceptionAllowsInsecureHTTPLoads
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/example/ios/exampleTests/exampleTests.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Facebook, Inc. and its affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 | #import
10 |
11 | #import
12 | #import
13 |
14 | #define TIMEOUT_SECONDS 600
15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
16 |
17 | @interface exampleTests : XCTestCase
18 |
19 | @end
20 |
21 | @implementation exampleTests
22 |
23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
24 | {
25 | if (test(view)) {
26 | return YES;
27 | }
28 | for (UIView *subview in [view subviews]) {
29 | if ([self findSubviewInView:subview matching:test]) {
30 | return YES;
31 | }
32 | }
33 | return NO;
34 | }
35 |
36 | - (void)testRendersWelcomeScreen
37 | {
38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
40 | BOOL foundElement = NO;
41 |
42 | __block NSString *redboxError = nil;
43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
44 | if (level >= RCTLogLevelError) {
45 | redboxError = message;
46 | }
47 | });
48 |
49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
52 |
53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
55 | return YES;
56 | }
57 | return NO;
58 | }];
59 | }
60 |
61 | RCTSetLogFunction(RCTDefaultLogFunction);
62 |
63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
65 | }
66 |
67 |
68 | @end
69 |
--------------------------------------------------------------------------------
/example/.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 |
16 | ; Ignore polyfills
17 | .*/Libraries/polyfills/.*
18 |
19 | ; Ignore metro
20 | .*/node_modules/metro/.*
21 |
22 | [include]
23 |
24 | [libs]
25 | node_modules/react-native/Libraries/react-native/react-native-interface.js
26 | node_modules/react-native/flow/
27 |
28 | [options]
29 | emoji=true
30 |
31 | esproposal.optional_chaining=enable
32 | esproposal.nullish_coalescing=enable
33 |
34 | module.system=haste
35 | module.system.haste.use_name_reducers=true
36 | # get basename
37 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1'
38 | # strip .js or .js.flow suffix
39 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1'
40 | # strip .ios suffix
41 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1'
42 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1'
43 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1'
44 | module.system.haste.paths.blacklist=.*/__tests__/.*
45 | module.system.haste.paths.blacklist=.*/__mocks__/.*
46 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.*
47 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.*
48 |
49 | munge_underscores=true
50 |
51 | 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'
52 |
53 | module.file_ext=.js
54 | module.file_ext=.jsx
55 | module.file_ext=.json
56 | module.file_ext=.native.js
57 |
58 | suppress_type=$FlowIssue
59 | suppress_type=$FlowFixMe
60 | suppress_type=$FlowFixMeProps
61 | suppress_type=$FlowFixMeState
62 |
63 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
64 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
65 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
66 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
67 |
68 | [version]
69 | ^0.92.0
70 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # react-native-quiet
2 |
3 | This is a [**React Native**](https://facebook.github.io/react-native/) wrapper around the [**Quiet Project**](https://github.com/quiet/quiet), which enables the transfer of data using sound as the transfer medium. This has a number of benefits:
4 |
5 | - Super cross-platform. (You just need a microphone and a speaker.)
6 | - Broadcast to devices within range without pairing.
7 | - No network connection required.
8 |
9 | Quiet can even go _ultrasonic_, allowing us to communicate without impacting on noise levels that are perceptible by human ears.
10 |
11 | Try the awesome online demo [**here**](https://quiet.github.io/quiet-js/).
12 |
13 | ## 🚀 Getting started
14 |
15 | Using [`npm`]():
16 |
17 | ```bash
18 | $ npm install react-native-quiet --save
19 | ```
20 |
21 | Using [`yarn`]():
22 |
23 | ```bash
24 | yarn add react-native-quiet
25 | ```
26 |
27 | #### Android
28 |
29 | This project relies upon the [**Android NDK**](https://developer.android.com/ndk); please make sure this is configured within your system path. Android relies upon caching the [**Quiet Android Project**](https://github.com/quiet/org.quietmodem.Quiet), meaning that we have to manually configure it's visibility to your compiled application. To do this, in your `/android/settings.gradle`, append the `:quiet` native project, which is packaged inside of `react-native-quiet`:
30 |
31 | ```java
32 | include ':quiet'
33 | project(':quiet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-quiet/android/Transducer/quiet')
34 | ```
35 |
36 | Finally, under **File > Project Structure**, be sure to define your `Android NDK location` under **SDK Location**. You can just use the dropdown to select the default location.
37 |
38 | #### iOS
39 |
40 | On iOS, after installing be sure to sync your Cocoapods via `pod install`.
41 |
42 | ### Upgrading
43 |
44 | #### 0.1.0
45 |
46 | **android/settings.xml**
47 | ```diff
48 |
49 | include ':quiet'
50 | - project(':quiet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-quiet/android/org.quietmodem.Quiet/quiet')
51 | + project(':quiet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-quiet/android/Transducer/quiet')
52 | ```
53 |
54 | ## ✍️ Example
55 |
56 | This project exposes high level functionality to send and receive messages using near-ultrasound. Simply start the library, use `send()` to transmit a message string and `addListener` to listen to receive sent messages. Be careful; you can hear your own messages.
57 |
58 | ```javascript
59 | import Quiet from 'react-native-quiet';
60 |
61 | // Start listening. (This will ask for microphone permissions!)
62 | (async() => {
63 | await Quiet.start("ultrasonic-experimental");
64 | const { unsubscribe } = Quiet
65 | .addListener(msg => console.warn(msg));
66 | Quiet.send("hello, world!");
67 | await new Promise(resolve => setTimeout(resolve, 10000));
68 | Quiet.stop();
69 | unsubscribe();
70 | })();
71 | ```
72 |
73 | ### ✌️ License
74 | [**MIT**](https://opensource.org/licenses/MIT)
75 |
--------------------------------------------------------------------------------
/example/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem http://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%" == "" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%" == "" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
33 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
34 |
35 | @rem Find java.exe
36 | if defined JAVA_HOME goto findJavaFromJavaHome
37 |
38 | set JAVA_EXE=java.exe
39 | %JAVA_EXE% -version >NUL 2>&1
40 | if "%ERRORLEVEL%" == "0" goto init
41 |
42 | echo.
43 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
44 | echo.
45 | echo Please set the JAVA_HOME variable in your environment to match the
46 | echo location of your Java installation.
47 |
48 | goto fail
49 |
50 | :findJavaFromJavaHome
51 | set JAVA_HOME=%JAVA_HOME:"=%
52 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
53 |
54 | if exist "%JAVA_EXE%" goto init
55 |
56 | echo.
57 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
58 | echo.
59 | echo Please set the JAVA_HOME variable in your environment to match the
60 | echo location of your Java installation.
61 |
62 | goto fail
63 |
64 | :init
65 | @rem Get command-line arguments, handling Windows variants
66 |
67 | if not "%OS%" == "Windows_NT" goto win9xME_args
68 |
69 | :win9xME_args
70 | @rem Slurp the command line arguments.
71 | set CMD_LINE_ARGS=
72 | set _SKIP=2
73 |
74 | :win9xME_args_slurp
75 | if "x%~1" == "x" goto execute
76 |
77 | set CMD_LINE_ARGS=%*
78 |
79 | :execute
80 | @rem Setup the command line
81 |
82 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
83 |
84 | @rem Execute Gradle
85 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
86 |
87 | :end
88 | @rem End local scope for the variables with windows NT shell
89 | if "%ERRORLEVEL%"=="0" goto mainEnd
90 |
91 | :fail
92 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
93 | rem the _cmd.exe /c_ return code!
94 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
95 | exit /b 1
96 |
97 | :mainEnd
98 | if "%OS%"=="Windows_NT" endlocal
99 |
100 | :omega
101 |
--------------------------------------------------------------------------------
/example/App.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { SafeAreaView, View, StyleSheet, TextInput, Text, Button, Image } from 'react-native';
3 | import Quiet from 'react-native-quiet';
4 |
5 | const styles = StyleSheet
6 | .create(
7 | {
8 | container: {
9 | flex: 1,
10 | padding: 15,
11 | alignItems: 'center',
12 | },
13 | spacing: {
14 | marginBottom: 15,
15 | },
16 | title: {
17 | color: 'white',
18 | fontWeight: 'bold',
19 | fontSize: 26,
20 | marginBottom: 10,
21 | },
22 | subtitle: {
23 | color: 'white',
24 | fontSize: 16,
25 | marginBottom: 10,
26 | },
27 | textInput: {
28 | fontSize: 26,
29 | textAlign: 'center',
30 | },
31 | logo: {
32 | position: 'absolute',
33 | bottom: 15,
34 | width: 250,
35 | height: 100,
36 | },
37 | logoContainer:{
38 | flex: 1,
39 | alignItems: 'center',
40 | justifyContent: 'center',
41 | }
42 | },
43 | );
44 |
45 | export default class App extends React.Component {
46 | state = {
47 | msg: '',
48 | rcv: '',
49 | };
50 | onPress = () => {
51 | const { msg } = this.state;
52 | if (msg && msg.length > 0) {
53 | this.setState(
54 | {
55 | msg: '',
56 | },
57 | () => Quiet.send(msg),
58 | );
59 | }
60 | };
61 | componentDidMount() {
62 | Quiet.start(
63 | 'ultrasonic-experimental',
64 | );
65 | Quiet.addListener(
66 | rcv => this.setState(
67 | {
68 | rcv,
69 | },
70 | ),
71 | );
72 | }
73 | render() {
74 | const { msg, rcv } = this.state;
75 | return (
76 | <>
77 |
85 |
90 |
93 |
97 | this.setState(
100 | {
101 | msg,
102 | },
103 | )}
104 | value={msg}
105 | placeholder="Enter a message."
106 | />
107 |
112 |
115 |
119 |
120 |
123 |
127 |
128 |
129 | >
130 | );
131 | }
132 | }
133 |
--------------------------------------------------------------------------------
/example/ios/example/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 |
--------------------------------------------------------------------------------
/android/src/main/java/io/github/cawfree/quiet/RNQuietModule.java:
--------------------------------------------------------------------------------
1 | package io.github.cawfree.quiet;
2 |
3 | import android.Manifest;
4 | import android.content.pm.PackageManager;
5 | import android.os.AsyncTask;
6 |
7 | import androidx.core.content.ContextCompat;
8 |
9 | import com.facebook.react.bridge.ReactApplicationContext;
10 | import com.facebook.react.bridge.ReactContextBaseJavaModule;
11 | import com.facebook.react.bridge.ReactMethod;
12 |
13 | import com.facebook.react.modules.core.DeviceEventManagerModule;
14 |
15 | import org.quietmodem.Quiet.*;
16 |
17 | import java.util.Arrays;
18 |
19 | public class RNQuietModule extends ReactContextBaseJavaModule {
20 |
21 | /* Static Declations. */
22 | private static final String TAG = "RNQuiet";
23 |
24 | /* Static, modisiable variables. (Antipattern!) */
25 | private static FrameTransmitter FRAME_TRANSMITTER = null;
26 | private static FrameReceiver FRAME_RECEIVER = null;
27 |
28 | private final ReactApplicationContext reactContext;
29 |
30 | public RNQuietModule(ReactApplicationContext reactContext) {
31 | super(reactContext);
32 | this.reactContext = reactContext;
33 | }
34 |
35 | @Override
36 | public String getName() {
37 | return RNQuietModule.TAG;
38 | }
39 |
40 | @ReactMethod
41 | public final void start(final String pKey) {
42 | // Place the beacon back into the initial state.
43 | this.stop();
44 | // Check if we have permission.
45 | final boolean hasPermission = ContextCompat.checkSelfPermission(this.reactContext, Manifest.permission.RECORD_AUDIO) == PackageManager.PERMISSION_GRANTED;
46 | // Do we have permission?
47 | if (hasPermission) {
48 | try {
49 | FRAME_TRANSMITTER = new FrameTransmitter(
50 | new FrameTransmitterConfig(
51 | this.reactContext,
52 | pKey
53 | )
54 | );
55 | FRAME_RECEIVER = new FrameReceiver(
56 | new FrameReceiverConfig(
57 | this.reactContext,
58 | pKey
59 | )
60 | );
61 | new AsyncTask() { @Override protected final Void doInBackground(final Void... pIsUnused) {
62 | final byte[] buf = new byte[1024];
63 | while(FRAME_RECEIVER != null) {
64 | try {
65 | // Block and wait for updates.
66 | FRAME_RECEIVER.setBlocking(0, 0);
67 | // Wait for the FRAME_RECEIVER to return.
68 | final int numberOfBytes = (int)FRAME_RECEIVER.receive(buf);
69 | RNQuietModule.this.reactContext
70 | .getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class)
71 | .emit("onMessageReceived", new String(Arrays.copyOfRange(buf, 0, numberOfBytes), "UTF-8"));
72 | }
73 | catch (final Exception pException) {
74 | // Print the Stack Trace.
75 | pException.printStackTrace();
76 | }
77 | }
78 | return null;
79 | } }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
80 | }
81 | catch(final Exception pException) {
82 | // Print the Stack Trace.
83 | pException.printStackTrace();
84 | // Stop running.
85 | this.stop();
86 | }
87 | }
88 | }
89 |
90 | @ReactMethod
91 | public final void send(final String pMessage) {
92 | try {
93 | if (FRAME_TRANSMITTER != null) {
94 | // Transmit the message.
95 | FRAME_TRANSMITTER.send(pMessage.getBytes());
96 | }
97 | }
98 | catch (final Exception pException) {
99 | // Print the Stack Trace.
100 | pException.printStackTrace();
101 | }
102 | }
103 |
104 | /** TODO: Actually close the resources. **/
105 | @ReactMethod
106 | public final void stop() {
107 | if (FRAME_TRANSMITTER != null) {
108 | // Nullify.
109 | FRAME_TRANSMITTER = null;
110 | }
111 | if (FRAME_RECEIVER != null) {
112 | //Nullify.
113 | FRAME_RECEIVER = null;
114 | }
115 | }
116 |
117 | }
118 |
--------------------------------------------------------------------------------
/scripts/examples_postinstall.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | /*
4 | * Using libraries within examples and linking them within packages.json like:
5 | * "react-native-library-name": "file:../"
6 | * will cause problems with the metro bundler if the example will run via
7 | * `react-native run-[ios|android]`. This will result in an error as the metro
8 | * bundler will find multiple versions for the same module while resolving it.
9 | * The reason for that is that if the library is installed it also copies in the
10 | * example folder itself as well as the node_modules folder of the library
11 | * although their are defined in .npmignore and should be ignored in theory.
12 | *
13 | * This postinstall script removes the node_modules folder as well as all
14 | * entries from the libraries .npmignore file within the examples node_modules
15 | * folder after the library was installed. This should resolve the metro
16 | * bundler issue mentioned above.
17 | *
18 | * It is expected this scripts lives in the libraries root folder within a
19 | * scripts folder. As first parameter the relative path to the libraries
20 | * folder within the example's node_modules folder may be provided.
21 | * This script will determine the path from this project's package.json file
22 | * if no such relative path is provided.
23 | * An example's package.json entry could look like:
24 | * "postinstall": "node ../scripts/examples_postinstall.js node_modules/react-native-library-name/"
25 | */
26 |
27 | 'use strict';
28 |
29 | const fs = require('fs');
30 | const path = require('path');
31 |
32 | /// Delete all files and directories for the given path
33 | const removeFileDirectoryRecursively = fileDirPath => {
34 | // Remove file
35 | if (!fs.lstatSync(fileDirPath).isDirectory()) {
36 | fs.unlinkSync(fileDirPath);
37 | return;
38 | }
39 |
40 | // Go down the directory an remove each file / directory recursively
41 | fs.readdirSync(fileDirPath).forEach(entry => {
42 | const entryPath = path.join(fileDirPath, entry);
43 | removeFileDirectoryRecursively(entryPath);
44 | });
45 | fs.rmdirSync(fileDirPath);
46 | };
47 |
48 | /// Remove example/node_modules/react-native-library-name/node_modules directory
49 | const removeLibraryNodeModulesPath = (libraryNodeModulesPath) => {
50 | const nodeModulesPath = path.resolve(libraryNodeModulesPath, 'node_modules')
51 |
52 | if (!fs.existsSync(nodeModulesPath)) {
53 | console.log(`No node_modules path found at ${nodeModulesPath}. Skipping delete.`)
54 | return;
55 | }
56 |
57 | console.log(`Deleting: ${nodeModulesPath}`)
58 | try {
59 | removeFileDirectoryRecursively(nodeModulesPath);
60 | console.log(`Successfully deleted: ${nodeModulesPath}`)
61 | } catch (err) {
62 | console.log(`Error deleting ${nodeModulesPath}: ${err.message}`);
63 | }
64 | };
65 |
66 | /// Remove all entries from the .npmignore within example/node_modules/react-native-library-name/
67 | const removeLibraryNpmIgnorePaths = (npmIgnorePath, libraryNodeModulesPath) => {
68 | if (!fs.existsSync(npmIgnorePath)) {
69 | console.log(`No .npmignore path found at ${npmIgnorePath}. Skipping deleting content.`);
70 | return;
71 | }
72 |
73 | fs.readFileSync(npmIgnorePath, 'utf8').split(/\r?\n/).forEach(entry => {
74 | if (entry.length === 0) {
75 | return
76 | }
77 |
78 | const npmIgnoreLibraryNodeModulesEntryPath = path.resolve(libraryNodeModulesPath, entry);
79 | if (!fs.existsSync(npmIgnoreLibraryNodeModulesEntryPath)) {
80 | return;
81 | }
82 |
83 | console.log(`Deleting: ${npmIgnoreLibraryNodeModulesEntryPath}`)
84 | try {
85 | removeFileDirectoryRecursively(npmIgnoreLibraryNodeModulesEntryPath);
86 | console.log(`Successfully deleted: ${npmIgnoreLibraryNodeModulesEntryPath}`)
87 | } catch (err) {
88 | console.log(`Error deleting ${npmIgnoreLibraryNodeModulesEntryPath}: ${err.message}`);
89 | }
90 | });
91 | };
92 |
93 | // Main start sweeping process
94 | (() => {
95 | // Read out dir of example project
96 | const exampleDir = process.cwd();
97 |
98 | console.log(`Starting postinstall cleanup for ${exampleDir}`);
99 |
100 | // Resolve the React Native library's path within the example's node_modules directory
101 | const libraryNodeModulesPath = process.argv.length > 2
102 | ? path.resolve(exampleDir, process.argv[2])
103 | : path.resolve(exampleDir, 'node_modules', require('../package.json').name);
104 |
105 | console.log(`Removing unwanted artifacts for ${libraryNodeModulesPath}`);
106 |
107 | removeLibraryNodeModulesPath(libraryNodeModulesPath);
108 |
109 | const npmIgnorePath = path.resolve(__dirname, '../.npmignore');
110 | removeLibraryNpmIgnorePaths(npmIgnorePath, libraryNodeModulesPath);
111 | })();
112 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | // android/build.gradle
2 |
3 | def safeExtGet(prop, fallback) {
4 | rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
5 | }
6 |
7 | buildscript {
8 | // The Android Gradle plugin is only required when opening the android folder stand-alone.
9 | // This avoids unnecessary downloads and potential conflicts when the library is included as a
10 | // module dependency in an application project.
11 | if (project == rootProject) {
12 | repositories {
13 | google()
14 | jcenter()
15 | }
16 | dependencies {
17 | classpath 'com.android.tools.build:gradle:3.4.1'
18 | }
19 | }
20 | }
21 |
22 | apply plugin: 'com.android.library'
23 | apply plugin: 'maven'
24 |
25 | // Matches values in recent template from React Native 0.59 / 0.60
26 | // https://github.com/facebook/react-native/blob/0.59-stable/template/android/build.gradle#L5-L9
27 | // https://github.com/facebook/react-native/blob/0.60-stable/template/android/build.gradle#L5-L9
28 | def DEFAULT_COMPILE_SDK_VERSION = 28
29 | def DEFAULT_BUILD_TOOLS_VERSION = "28.0.3"
30 | def DEFAULT_MIN_SDK_VERSION = 16
31 | def DEFAULT_TARGET_SDK_VERSION = 28
32 |
33 | android {
34 | compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
35 | buildToolsVersion safeExtGet('buildToolsVersion', DEFAULT_BUILD_TOOLS_VERSION)
36 | defaultConfig {
37 | minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION)
38 | targetSdkVersion safeExtGet('targetSdkVersion', DEFAULT_TARGET_SDK_VERSION)
39 | versionCode 1
40 | versionName "1.0"
41 | }
42 | lintOptions {
43 | abortOnError false
44 | }
45 | }
46 |
47 | repositories {
48 | mavenLocal()
49 | maven {
50 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
51 | url "$rootDir/../node_modules/react-native/android"
52 | }
53 | maven {
54 | // Android JSC is installed from npm
55 | url "$rootDir/../node_modules/jsc-android/dist"
56 | }
57 | maven {
58 | // Android Quiet is packaged by react-native-quiet.
59 | url "$rootDir/../node_modules/react-native-quiet/android/Transducer/quiet"
60 | }
61 | google()
62 | jcenter()
63 | }
64 |
65 | dependencies {
66 | // ref:
67 | // https://github.com/facebook/react-native/blob/0.61-stable/template/android/app/build.gradle#L192
68 | //noinspection GradleDynamicVersion
69 | implementation 'com.facebook.react:react-native:+' // From node_modules
70 | implementation project(':quiet')
71 | }
72 |
73 | def configureReactNativePom(def pom) {
74 | def packageJson = new groovy.json.JsonSlurper().parseText(file('../package.json').text)
75 |
76 | pom.project {
77 | name packageJson.title
78 | artifactId packageJson.name
79 | version = packageJson.version
80 | group = "io.github.cawfree.quiet"
81 | description packageJson.description
82 | url packageJson.repository.baseUrl
83 |
84 | licenses {
85 | license {
86 | name packageJson.license
87 | url packageJson.repository.baseUrl + '/blob/master/' + packageJson.licenseFilename
88 | distribution 'repo'
89 | }
90 | }
91 |
92 | developers {
93 | developer {
94 | id packageJson.author.username
95 | name packageJson.author.name
96 | }
97 | }
98 | }
99 | }
100 |
101 | afterEvaluate { project ->
102 | // some Gradle build hooks ref:
103 | // https://www.oreilly.com/library/view/gradle-beyond-the/9781449373801/ch03.html
104 | task androidJavadoc(type: Javadoc) {
105 | source = android.sourceSets.main.java.srcDirs
106 | classpath += files(android.bootClasspath)
107 | classpath += files(project.getConfigurations().getByName('compile').asList())
108 | include '**/*.java'
109 | }
110 |
111 | task androidJavadocJar(type: Jar, dependsOn: androidJavadoc) {
112 | classifier = 'javadoc'
113 | from androidJavadoc.destinationDir
114 | }
115 |
116 | task androidSourcesJar(type: Jar) {
117 | classifier = 'sources'
118 | from android.sourceSets.main.java.srcDirs
119 | include '**/*.java'
120 | }
121 |
122 | android.libraryVariants.all { variant ->
123 | def name = variant.name.capitalize()
124 | task "jar${name}"(type: Jar, dependsOn: variant.javaCompile) {
125 | from variant.javaCompile.destinationDir
126 | }
127 | }
128 |
129 | artifacts {
130 | archives androidSourcesJar
131 | archives androidJavadocJar
132 | }
133 |
134 | task installArchives(type: Upload) {
135 | configuration = configurations.archives
136 | repositories.mavenDeployer {
137 | // Deploy to react-native-event-bridge/maven, ready to publish to npm
138 | repository url: "file://${projectDir}/../android/maven"
139 | configureReactNativePom pom
140 | }
141 | }
142 | }
143 |
--------------------------------------------------------------------------------
/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.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 |
--------------------------------------------------------------------------------
/example/ios/example.xcodeproj/xcshareddata/xcschemes/example-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 |
--------------------------------------------------------------------------------
/example/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - AFNetworking (3.2.1):
3 | - AFNetworking/NSURLSession (= 3.2.1)
4 | - AFNetworking/Reachability (= 3.2.1)
5 | - AFNetworking/Security (= 3.2.1)
6 | - AFNetworking/Serialization (= 3.2.1)
7 | - AFNetworking/UIKit (= 3.2.1)
8 | - AFNetworking/NSURLSession (3.2.1):
9 | - AFNetworking/Reachability
10 | - AFNetworking/Security
11 | - AFNetworking/Serialization
12 | - AFNetworking/Reachability (3.2.1)
13 | - AFNetworking/Security (3.2.1)
14 | - AFNetworking/Serialization (3.2.1)
15 | - AFNetworking/UIKit (3.2.1):
16 | - AFNetworking/NSURLSession
17 | - boost-for-react-native (1.63.0)
18 | - DoubleConversion (1.1.6)
19 | - Folly (2018.10.22.00):
20 | - boost-for-react-native
21 | - DoubleConversion
22 | - glog
23 | - glog (0.3.5)
24 | - QuietModemKit (0.0.1)
25 | - React (0.59.10):
26 | - React/Core (= 0.59.10)
27 | - react-native-quiet (1.0.0):
28 | - AFNetworking (~> 3.0)
29 | - QuietModemKit (~> 0.0.1)
30 | - React
31 | - React/Core (0.59.10):
32 | - yoga (= 0.59.10.React)
33 | - React/CxxBridge (0.59.10):
34 | - Folly (= 2018.10.22.00)
35 | - React/Core
36 | - React/cxxreact
37 | - React/jsiexecutor
38 | - React/cxxreact (0.59.10):
39 | - boost-for-react-native (= 1.63.0)
40 | - DoubleConversion
41 | - Folly (= 2018.10.22.00)
42 | - glog
43 | - React/jsinspector
44 | - React/DevSupport (0.59.10):
45 | - React/Core
46 | - React/RCTWebSocket
47 | - React/fishhook (0.59.10)
48 | - React/jsi (0.59.10):
49 | - DoubleConversion
50 | - Folly (= 2018.10.22.00)
51 | - glog
52 | - React/jsiexecutor (0.59.10):
53 | - DoubleConversion
54 | - Folly (= 2018.10.22.00)
55 | - glog
56 | - React/cxxreact
57 | - React/jsi
58 | - React/jsinspector (0.59.10)
59 | - React/RCTActionSheet (0.59.10):
60 | - React/Core
61 | - React/RCTAnimation (0.59.10):
62 | - React/Core
63 | - React/RCTBlob (0.59.10):
64 | - React/Core
65 | - React/RCTCameraRoll (0.59.10):
66 | - React/Core
67 | - React/RCTImage
68 | - React/RCTGeolocation (0.59.10):
69 | - React/Core
70 | - React/RCTImage (0.59.10):
71 | - React/Core
72 | - React/RCTNetwork
73 | - React/RCTLinkingIOS (0.59.10):
74 | - React/Core
75 | - React/RCTNetwork (0.59.10):
76 | - React/Core
77 | - React/RCTPushNotification (0.59.10):
78 | - React/Core
79 | - React/RCTSettings (0.59.10):
80 | - React/Core
81 | - React/RCTText (0.59.10):
82 | - React/Core
83 | - React/RCTVibration (0.59.10):
84 | - React/Core
85 | - React/RCTWebSocket (0.59.10):
86 | - React/Core
87 | - React/fishhook
88 | - React/RCTBlob
89 | - yoga (0.59.10.React)
90 |
91 | DEPENDENCIES:
92 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
93 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
94 | - glog (from `../node_modules/react-native/third-party-podspecs/GLog.podspec`)
95 | - react-native-quiet (from `../../react-native-quiet.podspec`)
96 | - React/Core (from `../node_modules/react-native`)
97 | - React/CxxBridge (from `../node_modules/react-native`)
98 | - React/DevSupport (from `../node_modules/react-native`)
99 | - React/RCTActionSheet (from `../node_modules/react-native`)
100 | - React/RCTAnimation (from `../node_modules/react-native`)
101 | - React/RCTBlob (from `../node_modules/react-native`)
102 | - React/RCTCameraRoll (from `../node_modules/react-native`)
103 | - React/RCTGeolocation (from `../node_modules/react-native`)
104 | - React/RCTImage (from `../node_modules/react-native`)
105 | - React/RCTLinkingIOS (from `../node_modules/react-native`)
106 | - React/RCTNetwork (from `../node_modules/react-native`)
107 | - React/RCTPushNotification (from `../node_modules/react-native`)
108 | - React/RCTSettings (from `../node_modules/react-native`)
109 | - React/RCTText (from `../node_modules/react-native`)
110 | - React/RCTVibration (from `../node_modules/react-native`)
111 | - React/RCTWebSocket (from `../node_modules/react-native`)
112 | - yoga (from `../node_modules/react-native/ReactCommon/yoga/yoga.podspec`)
113 |
114 | SPEC REPOS:
115 | trunk:
116 | - AFNetworking
117 | - boost-for-react-native
118 | - QuietModemKit
119 |
120 | EXTERNAL SOURCES:
121 | DoubleConversion:
122 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
123 | Folly:
124 | :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
125 | glog:
126 | :podspec: "../node_modules/react-native/third-party-podspecs/GLog.podspec"
127 | React:
128 | :path: "../node_modules/react-native"
129 | react-native-quiet:
130 | :path: "../../react-native-quiet.podspec"
131 | yoga:
132 | :path: "../node_modules/react-native/ReactCommon/yoga/yoga.podspec"
133 |
134 | SPEC CHECKSUMS:
135 | AFNetworking: b6f891fdfaed196b46c7a83cf209e09697b94057
136 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
137 | DoubleConversion: bb338842f62ab1d708ceb63ec3d999f0f3d98ecd
138 | Folly: de497beb10f102453a1afa9edbf8cf8a251890de
139 | glog: aefd1eb5dda2ab95ba0938556f34b98e2da3a60d
140 | QuietModemKit: d4ec7ef422a64caa8670babee8fc99ae2ce44852
141 | React: 36d0768f9e93be2473b37e7fa64f92c1d5341eef
142 | react-native-quiet: e8a1735923bdd53edbb79221a43c2fabddb5306c
143 | yoga: 684513b14b03201579ba3cee20218c9d1298b0cc
144 |
145 | PODFILE CHECKSUM: 0b21e6cfd9fcf96cc78ea1c1fd288664f7370b3f
146 |
147 | COCOAPODS: 1.8.3
148 |
--------------------------------------------------------------------------------
/example/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 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
37 | * // for example: to disable dev mode in the staging build type (if configured)
38 | * devDisabledInStaging: true,
39 | * // The configuration property can be in the following formats
40 | * // 'devDisabledIn${productFlavor}${buildType}'
41 | * // 'devDisabledIn${buildType}'
42 | *
43 | * // the root of your project, i.e. where "package.json" lives
44 | * root: "../../",
45 | *
46 | * // where to put the JS bundle asset in debug mode
47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
48 | *
49 | * // where to put the JS bundle asset in release mode
50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
51 | *
52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
53 | * // require('./image.png')), in debug mode
54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
55 | *
56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
57 | * // require('./image.png')), in release mode
58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
59 | *
60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
64 | * // for example, you might want to remove it from here.
65 | * inputExcludes: ["android/**", "ios/**"],
66 | *
67 | * // override which node gets called and with what additional arguments
68 | * nodeExecutableAndArgs: ["node"],
69 | *
70 | * // supply additional arguments to the packager
71 | * extraPackagerArgs: []
72 | * ]
73 | */
74 |
75 | project.ext.react = [
76 | entryFile: "index.js"
77 | ]
78 |
79 | apply from: "../../node_modules/react-native/react.gradle"
80 |
81 | /**
82 | * Set this to true to create two separate APKs instead of one:
83 | * - An APK that only works on ARM devices
84 | * - An APK that only works on x86 devices
85 | * The advantage is the size of the APK is reduced by about 4MB.
86 | * Upload all the APKs to the Play Store and people will download
87 | * the correct one based on the CPU architecture of their device.
88 | */
89 | def enableSeparateBuildPerCPUArchitecture = false
90 |
91 | /**
92 | * Run Proguard to shrink the Java bytecode in release builds.
93 | */
94 | def enableProguardInReleaseBuilds = false
95 |
96 | android {
97 | compileSdkVersion rootProject.ext.compileSdkVersion
98 |
99 | compileOptions {
100 | sourceCompatibility JavaVersion.VERSION_1_8
101 | targetCompatibility JavaVersion.VERSION_1_8
102 | }
103 |
104 | defaultConfig {
105 | applicationId "com.example"
106 | minSdkVersion rootProject.ext.minSdkVersion
107 | targetSdkVersion rootProject.ext.targetSdkVersion
108 | versionCode 1
109 | versionName "1.0"
110 | }
111 | splits {
112 | abi {
113 | reset()
114 | enable enableSeparateBuildPerCPUArchitecture
115 | universalApk false // If true, also generate a universal APK
116 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
117 | }
118 | }
119 | buildTypes {
120 | release {
121 | minifyEnabled enableProguardInReleaseBuilds
122 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
123 | }
124 | }
125 | // applicationVariants are e.g. debug, release
126 | applicationVariants.all { variant ->
127 | variant.outputs.each { output ->
128 | // For each separate APK per architecture, set a unique version code as described here:
129 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
130 | def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4]
131 | def abi = output.getFilter(OutputFile.ABI)
132 | if (abi != null) { // null for the universal-debug, universal-release variants
133 | output.versionCodeOverride =
134 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
135 | }
136 | }
137 | }
138 | }
139 |
140 | dependencies {
141 | implementation project(':react-native-quiet')
142 | implementation fileTree(dir: "libs", include: ["*.jar"])
143 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
144 | implementation "com.facebook.react:react-native:+" // From node_modules
145 | }
146 |
147 | // Run this once to be able to run the application with BUCK
148 | // puts all compile dependencies into folder libs for BUCK to use
149 | task copyDownloadableDepsToLibs(type: Copy) {
150 | from configurations.compile
151 | into 'libs'
152 | }
153 |
--------------------------------------------------------------------------------
/example/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | #
4 | # Copyright 2015 the original author or authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # http://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 |
19 | ##############################################################################
20 | ##
21 | ## Gradle start up script for UN*X
22 | ##
23 | ##############################################################################
24 |
25 | # Attempt to set APP_HOME
26 | # Resolve links: $0 may be a link
27 | PRG="$0"
28 | # Need this for relative symlinks.
29 | while [ -h "$PRG" ] ; do
30 | ls=`ls -ld "$PRG"`
31 | link=`expr "$ls" : '.*-> \(.*\)$'`
32 | if expr "$link" : '/.*' > /dev/null; then
33 | PRG="$link"
34 | else
35 | PRG=`dirname "$PRG"`"/$link"
36 | fi
37 | done
38 | SAVED="`pwd`"
39 | cd "`dirname \"$PRG\"`/" >/dev/null
40 | APP_HOME="`pwd -P`"
41 | cd "$SAVED" >/dev/null
42 |
43 | APP_NAME="Gradle"
44 | APP_BASE_NAME=`basename "$0"`
45 |
46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
48 |
49 | # Use the maximum available, or set MAX_FD != -1 to use that value.
50 | MAX_FD="maximum"
51 |
52 | warn () {
53 | echo "$*"
54 | }
55 |
56 | die () {
57 | echo
58 | echo "$*"
59 | echo
60 | exit 1
61 | }
62 |
63 | # OS specific support (must be 'true' or 'false').
64 | cygwin=false
65 | msys=false
66 | darwin=false
67 | nonstop=false
68 | case "`uname`" in
69 | CYGWIN* )
70 | cygwin=true
71 | ;;
72 | Darwin* )
73 | darwin=true
74 | ;;
75 | MINGW* )
76 | msys=true
77 | ;;
78 | NONSTOP* )
79 | nonstop=true
80 | ;;
81 | esac
82 |
83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
84 |
85 | # Determine the Java command to use to start the JVM.
86 | if [ -n "$JAVA_HOME" ] ; then
87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
88 | # IBM's JDK on AIX uses strange locations for the executables
89 | JAVACMD="$JAVA_HOME/jre/sh/java"
90 | else
91 | JAVACMD="$JAVA_HOME/bin/java"
92 | fi
93 | if [ ! -x "$JAVACMD" ] ; then
94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
95 |
96 | Please set the JAVA_HOME variable in your environment to match the
97 | location of your Java installation."
98 | fi
99 | else
100 | JAVACMD="java"
101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
102 |
103 | Please set the JAVA_HOME variable in your environment to match the
104 | location of your Java installation."
105 | fi
106 |
107 | # Increase the maximum file descriptors if we can.
108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
109 | MAX_FD_LIMIT=`ulimit -H -n`
110 | if [ $? -eq 0 ] ; then
111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
112 | MAX_FD="$MAX_FD_LIMIT"
113 | fi
114 | ulimit -n $MAX_FD
115 | if [ $? -ne 0 ] ; then
116 | warn "Could not set maximum file descriptor limit: $MAX_FD"
117 | fi
118 | else
119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
120 | fi
121 | fi
122 |
123 | # For Darwin, add options to specify how the application appears in the dock
124 | if $darwin; then
125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
126 | fi
127 |
128 | # For Cygwin, switch paths to Windows format before running java
129 | if $cygwin ; then
130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
132 | JAVACMD=`cygpath --unix "$JAVACMD"`
133 |
134 | # We build the pattern for arguments to be converted via cygpath
135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
136 | SEP=""
137 | for dir in $ROOTDIRSRAW ; do
138 | ROOTDIRS="$ROOTDIRS$SEP$dir"
139 | SEP="|"
140 | done
141 | OURCYGPATTERN="(^($ROOTDIRS))"
142 | # Add a user-defined pattern to the cygpath arguments
143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
145 | fi
146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
147 | i=0
148 | for arg in "$@" ; do
149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
151 |
152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
154 | else
155 | eval `echo args$i`="\"$arg\""
156 | fi
157 | i=$((i+1))
158 | done
159 | case $i in
160 | (0) set -- ;;
161 | (1) set -- "$args0" ;;
162 | (2) set -- "$args0" "$args1" ;;
163 | (3) set -- "$args0" "$args1" "$args2" ;;
164 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
165 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
166 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
167 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
168 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
169 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
170 | esac
171 | fi
172 |
173 | # Escape application args
174 | save () {
175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
176 | echo " "
177 | }
178 | APP_ARGS=$(save "$@")
179 |
180 | # Collect all arguments for the java command, following the shell quoting and substitution rules
181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
182 |
183 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
184 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
185 | cd "$(dirname "$0")"
186 | fi
187 |
188 | exec "$JAVACMD" "$@"
189 |
--------------------------------------------------------------------------------
/ios/RNQuiet.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | B3E7B58A1CC2AC0600A0062D /* RNQuiet.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* RNQuiet.m */; };
11 | CD28362430FDB5CECFE0D635 /* Pods_RNQuiet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6C0908956206BFC98DD2948 /* Pods_RNQuiet.framework */; };
12 | /* End PBXBuildFile section */
13 |
14 | /* Begin PBXCopyFilesBuildPhase section */
15 | 58B511D91A9E6C8500147676 /* CopyFiles */ = {
16 | isa = PBXCopyFilesBuildPhase;
17 | buildActionMask = 2147483647;
18 | dstPath = "include/$(PRODUCT_NAME)";
19 | dstSubfolderSpec = 16;
20 | files = (
21 | );
22 | runOnlyForDeploymentPostprocessing = 0;
23 | };
24 | /* End PBXCopyFilesBuildPhase section */
25 |
26 | /* Begin PBXFileReference section */
27 | 134814201AA4EA6300B7C361 /* libRNQuiet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRNQuiet.a; sourceTree = BUILT_PRODUCTS_DIR; };
28 | 3B775A3F93C52BA7B14FF39C /* Pods-RNQuiet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNQuiet.debug.xcconfig"; path = "Target Support Files/Pods-RNQuiet/Pods-RNQuiet.debug.xcconfig"; sourceTree = ""; };
29 | A6C0908956206BFC98DD2948 /* Pods_RNQuiet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RNQuiet.framework; sourceTree = BUILT_PRODUCTS_DIR; };
30 | AE2F0F1978AE5DF256F11A26 /* Pods-RNQuiet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNQuiet.release.xcconfig"; path = "Target Support Files/Pods-RNQuiet/Pods-RNQuiet.release.xcconfig"; sourceTree = ""; };
31 | B3E7B5881CC2AC0600A0062D /* RNQuiet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNQuiet.h; sourceTree = ""; };
32 | B3E7B5891CC2AC0600A0062D /* RNQuiet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNQuiet.m; sourceTree = ""; };
33 | /* End PBXFileReference section */
34 |
35 | /* Begin PBXFrameworksBuildPhase section */
36 | 58B511D81A9E6C8500147676 /* Frameworks */ = {
37 | isa = PBXFrameworksBuildPhase;
38 | buildActionMask = 2147483647;
39 | files = (
40 | CD28362430FDB5CECFE0D635 /* Pods_RNQuiet.framework in Frameworks */,
41 | );
42 | runOnlyForDeploymentPostprocessing = 0;
43 | };
44 | /* End PBXFrameworksBuildPhase section */
45 |
46 | /* Begin PBXGroup section */
47 | 134814211AA4EA7D00B7C361 /* Products */ = {
48 | isa = PBXGroup;
49 | children = (
50 | 134814201AA4EA6300B7C361 /* libRNQuiet.a */,
51 | );
52 | name = Products;
53 | sourceTree = "";
54 | };
55 | 58B511D21A9E6C8500147676 = {
56 | isa = PBXGroup;
57 | children = (
58 | B3E7B5881CC2AC0600A0062D /* RNQuiet.h */,
59 | B3E7B5891CC2AC0600A0062D /* RNQuiet.m */,
60 | 134814211AA4EA7D00B7C361 /* Products */,
61 | CF96BACFB8B625B94411E14A /* Pods */,
62 | EFFFD98725382EEB505ED85D /* Frameworks */,
63 | );
64 | sourceTree = "";
65 | };
66 | CF96BACFB8B625B94411E14A /* Pods */ = {
67 | isa = PBXGroup;
68 | children = (
69 | 3B775A3F93C52BA7B14FF39C /* Pods-RNQuiet.debug.xcconfig */,
70 | AE2F0F1978AE5DF256F11A26 /* Pods-RNQuiet.release.xcconfig */,
71 | );
72 | name = Pods;
73 | path = Pods;
74 | sourceTree = "";
75 | };
76 | EFFFD98725382EEB505ED85D /* Frameworks */ = {
77 | isa = PBXGroup;
78 | children = (
79 | A6C0908956206BFC98DD2948 /* Pods_RNQuiet.framework */,
80 | );
81 | name = Frameworks;
82 | sourceTree = "";
83 | };
84 | /* End PBXGroup section */
85 |
86 | /* Begin PBXNativeTarget section */
87 | 58B511DA1A9E6C8500147676 /* RNQuiet */ = {
88 | isa = PBXNativeTarget;
89 | buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNQuiet" */;
90 | buildPhases = (
91 | 1F833BA2236E2BF3E8DC1760 /* [CP] Check Pods Manifest.lock */,
92 | 58B511D71A9E6C8500147676 /* Sources */,
93 | 58B511D81A9E6C8500147676 /* Frameworks */,
94 | 58B511D91A9E6C8500147676 /* CopyFiles */,
95 | );
96 | buildRules = (
97 | );
98 | dependencies = (
99 | );
100 | name = RNQuiet;
101 | productName = RCTDataManager;
102 | productReference = 134814201AA4EA6300B7C361 /* libRNQuiet.a */;
103 | productType = "com.apple.product-type.library.static";
104 | };
105 | /* End PBXNativeTarget section */
106 |
107 | /* Begin PBXProject section */
108 | 58B511D31A9E6C8500147676 /* Project object */ = {
109 | isa = PBXProject;
110 | attributes = {
111 | LastUpgradeCheck = 0920;
112 | ORGANIZATIONNAME = Facebook;
113 | TargetAttributes = {
114 | 58B511DA1A9E6C8500147676 = {
115 | CreatedOnToolsVersion = 6.1.1;
116 | };
117 | };
118 | };
119 | buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNQuiet" */;
120 | compatibilityVersion = "Xcode 3.2";
121 | developmentRegion = English;
122 | hasScannedForEncodings = 0;
123 | knownRegions = (
124 | en,
125 | );
126 | mainGroup = 58B511D21A9E6C8500147676;
127 | productRefGroup = 58B511D21A9E6C8500147676;
128 | projectDirPath = "";
129 | projectRoot = "";
130 | targets = (
131 | 58B511DA1A9E6C8500147676 /* RNQuiet */,
132 | );
133 | };
134 | /* End PBXProject section */
135 |
136 | /* Begin PBXShellScriptBuildPhase section */
137 | 1F833BA2236E2BF3E8DC1760 /* [CP] Check Pods Manifest.lock */ = {
138 | isa = PBXShellScriptBuildPhase;
139 | buildActionMask = 2147483647;
140 | files = (
141 | );
142 | inputFileListPaths = (
143 | );
144 | inputPaths = (
145 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
146 | "${PODS_ROOT}/Manifest.lock",
147 | );
148 | name = "[CP] Check Pods Manifest.lock";
149 | outputFileListPaths = (
150 | );
151 | outputPaths = (
152 | "$(DERIVED_FILE_DIR)/Pods-RNQuiet-checkManifestLockResult.txt",
153 | );
154 | runOnlyForDeploymentPostprocessing = 0;
155 | shellPath = /bin/sh;
156 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
157 | showEnvVarsInLog = 0;
158 | };
159 | /* End PBXShellScriptBuildPhase section */
160 |
161 | /* Begin PBXSourcesBuildPhase section */
162 | 58B511D71A9E6C8500147676 /* Sources */ = {
163 | isa = PBXSourcesBuildPhase;
164 | buildActionMask = 2147483647;
165 | files = (
166 | B3E7B58A1CC2AC0600A0062D /* RNQuiet.m in Sources */,
167 | );
168 | runOnlyForDeploymentPostprocessing = 0;
169 | };
170 | /* End PBXSourcesBuildPhase section */
171 |
172 | /* Begin XCBuildConfiguration section */
173 | 58B511ED1A9E6C8500147676 /* Debug */ = {
174 | isa = XCBuildConfiguration;
175 | buildSettings = {
176 | ALWAYS_SEARCH_USER_PATHS = NO;
177 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
178 | CLANG_CXX_LIBRARY = "libc++";
179 | CLANG_ENABLE_MODULES = YES;
180 | CLANG_ENABLE_OBJC_ARC = YES;
181 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
182 | CLANG_WARN_BOOL_CONVERSION = YES;
183 | CLANG_WARN_COMMA = YES;
184 | CLANG_WARN_CONSTANT_CONVERSION = YES;
185 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
186 | CLANG_WARN_EMPTY_BODY = YES;
187 | CLANG_WARN_ENUM_CONVERSION = YES;
188 | CLANG_WARN_INFINITE_RECURSION = YES;
189 | CLANG_WARN_INT_CONVERSION = YES;
190 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
191 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
192 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
193 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
194 | CLANG_WARN_STRICT_PROTOTYPES = YES;
195 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
196 | CLANG_WARN_UNREACHABLE_CODE = YES;
197 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
198 | COPY_PHASE_STRIP = NO;
199 | ENABLE_STRICT_OBJC_MSGSEND = YES;
200 | ENABLE_TESTABILITY = YES;
201 | GCC_C_LANGUAGE_STANDARD = gnu99;
202 | GCC_DYNAMIC_NO_PIC = NO;
203 | GCC_NO_COMMON_BLOCKS = YES;
204 | GCC_OPTIMIZATION_LEVEL = 0;
205 | GCC_PREPROCESSOR_DEFINITIONS = (
206 | "DEBUG=1",
207 | "$(inherited)",
208 | );
209 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
210 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
211 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
212 | GCC_WARN_UNDECLARED_SELECTOR = YES;
213 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
214 | GCC_WARN_UNUSED_FUNCTION = YES;
215 | GCC_WARN_UNUSED_VARIABLE = YES;
216 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
217 | MTL_ENABLE_DEBUG_INFO = YES;
218 | ONLY_ACTIVE_ARCH = YES;
219 | SDKROOT = iphoneos;
220 | };
221 | name = Debug;
222 | };
223 | 58B511EE1A9E6C8500147676 /* Release */ = {
224 | isa = XCBuildConfiguration;
225 | buildSettings = {
226 | ALWAYS_SEARCH_USER_PATHS = NO;
227 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
228 | CLANG_CXX_LIBRARY = "libc++";
229 | CLANG_ENABLE_MODULES = YES;
230 | CLANG_ENABLE_OBJC_ARC = YES;
231 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
232 | CLANG_WARN_BOOL_CONVERSION = YES;
233 | CLANG_WARN_COMMA = YES;
234 | CLANG_WARN_CONSTANT_CONVERSION = YES;
235 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
236 | CLANG_WARN_EMPTY_BODY = YES;
237 | CLANG_WARN_ENUM_CONVERSION = YES;
238 | CLANG_WARN_INFINITE_RECURSION = YES;
239 | CLANG_WARN_INT_CONVERSION = YES;
240 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
241 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
242 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
243 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
244 | CLANG_WARN_STRICT_PROTOTYPES = YES;
245 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
246 | CLANG_WARN_UNREACHABLE_CODE = YES;
247 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
248 | COPY_PHASE_STRIP = YES;
249 | ENABLE_NS_ASSERTIONS = NO;
250 | ENABLE_STRICT_OBJC_MSGSEND = YES;
251 | GCC_C_LANGUAGE_STANDARD = gnu99;
252 | GCC_NO_COMMON_BLOCKS = YES;
253 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
254 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
255 | GCC_WARN_UNDECLARED_SELECTOR = YES;
256 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
257 | GCC_WARN_UNUSED_FUNCTION = YES;
258 | GCC_WARN_UNUSED_VARIABLE = YES;
259 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
260 | MTL_ENABLE_DEBUG_INFO = NO;
261 | SDKROOT = iphoneos;
262 | VALIDATE_PRODUCT = YES;
263 | };
264 | name = Release;
265 | };
266 | 58B511F01A9E6C8500147676 /* Debug */ = {
267 | isa = XCBuildConfiguration;
268 | baseConfigurationReference = 3B775A3F93C52BA7B14FF39C /* Pods-RNQuiet.debug.xcconfig */;
269 | buildSettings = {
270 | HEADER_SEARCH_PATHS = (
271 | "$(inherited)",
272 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
273 | "$(SRCROOT)/../../../React/**",
274 | "$(SRCROOT)/../../react-native/React/**",
275 | );
276 | LIBRARY_SEARCH_PATHS = "$(inherited)";
277 | OTHER_LDFLAGS = "-ObjC";
278 | PRODUCT_NAME = RNQuiet;
279 | SKIP_INSTALL = YES;
280 | };
281 | name = Debug;
282 | };
283 | 58B511F11A9E6C8500147676 /* Release */ = {
284 | isa = XCBuildConfiguration;
285 | baseConfigurationReference = AE2F0F1978AE5DF256F11A26 /* Pods-RNQuiet.release.xcconfig */;
286 | buildSettings = {
287 | HEADER_SEARCH_PATHS = (
288 | "$(inherited)",
289 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
290 | "$(SRCROOT)/../../../React/**",
291 | "$(SRCROOT)/../../react-native/React/**",
292 | );
293 | LIBRARY_SEARCH_PATHS = "$(inherited)";
294 | OTHER_LDFLAGS = "-ObjC";
295 | PRODUCT_NAME = RNQuiet;
296 | SKIP_INSTALL = YES;
297 | };
298 | name = Release;
299 | };
300 | /* End XCBuildConfiguration section */
301 |
302 | /* Begin XCConfigurationList section */
303 | 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNQuiet" */ = {
304 | isa = XCConfigurationList;
305 | buildConfigurations = (
306 | 58B511ED1A9E6C8500147676 /* Debug */,
307 | 58B511EE1A9E6C8500147676 /* Release */,
308 | );
309 | defaultConfigurationIsVisible = 0;
310 | defaultConfigurationName = Release;
311 | };
312 | 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNQuiet" */ = {
313 | isa = XCConfigurationList;
314 | buildConfigurations = (
315 | 58B511F01A9E6C8500147676 /* Debug */,
316 | 58B511F11A9E6C8500147676 /* Release */,
317 | );
318 | defaultConfigurationIsVisible = 0;
319 | defaultConfigurationName = Release;
320 | };
321 | /* End XCConfigurationList section */
322 | };
323 | rootObject = 58B511D31A9E6C8500147676 /* Project object */;
324 | }
325 |
--------------------------------------------------------------------------------
/example/ios/example.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 /* exampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleTests.m */; };
16 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
17 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
18 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
19 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
20 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
21 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
22 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
23 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
24 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
25 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
26 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
27 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
28 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
29 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
30 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
31 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
32 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
33 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
34 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
35 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
36 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
37 | 2DCD954D1E0B4F2C00145EB5 /* exampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleTests.m */; };
38 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
39 | 5348DD75180B27EAC4D9C02F /* libPods-example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 605F0D0E200AACECB2BCA439 /* libPods-example.a */; };
40 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
41 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
42 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED297162215061F000B7C4FE /* JavaScriptCore.framework */; };
43 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED2971642150620600B7C4FE /* JavaScriptCore.framework */; };
44 | /* End PBXBuildFile section */
45 |
46 | /* Begin PBXContainerItemProxy section */
47 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
48 | isa = PBXContainerItemProxy;
49 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
50 | proxyType = 2;
51 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
52 | remoteInfo = RCTActionSheet;
53 | };
54 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
55 | isa = PBXContainerItemProxy;
56 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
57 | proxyType = 2;
58 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
59 | remoteInfo = RCTGeolocation;
60 | };
61 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
62 | isa = PBXContainerItemProxy;
63 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
64 | proxyType = 2;
65 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
66 | remoteInfo = RCTImage;
67 | };
68 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
69 | isa = PBXContainerItemProxy;
70 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
71 | proxyType = 2;
72 | remoteGlobalIDString = 58B511DB1A9E6C8500147676;
73 | remoteInfo = RCTNetwork;
74 | };
75 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
76 | isa = PBXContainerItemProxy;
77 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
78 | proxyType = 2;
79 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
80 | remoteInfo = RCTVibration;
81 | };
82 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
83 | isa = PBXContainerItemProxy;
84 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
85 | proxyType = 1;
86 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
87 | remoteInfo = example;
88 | };
89 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
90 | isa = PBXContainerItemProxy;
91 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
92 | proxyType = 2;
93 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
94 | remoteInfo = RCTSettings;
95 | };
96 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
97 | isa = PBXContainerItemProxy;
98 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
99 | proxyType = 2;
100 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
101 | remoteInfo = RCTWebSocket;
102 | };
103 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
104 | isa = PBXContainerItemProxy;
105 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
106 | proxyType = 2;
107 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
108 | remoteInfo = React;
109 | };
110 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
111 | isa = PBXContainerItemProxy;
112 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
113 | proxyType = 1;
114 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
115 | remoteInfo = "example-tvOS";
116 | };
117 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
118 | isa = PBXContainerItemProxy;
119 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
120 | proxyType = 2;
121 | remoteGlobalIDString = ADD01A681E09402E00F6D226;
122 | remoteInfo = "RCTBlob-tvOS";
123 | };
124 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
125 | isa = PBXContainerItemProxy;
126 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
127 | proxyType = 2;
128 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
129 | remoteInfo = fishhook;
130 | };
131 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
132 | isa = PBXContainerItemProxy;
133 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
134 | proxyType = 2;
135 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
136 | remoteInfo = "fishhook-tvOS";
137 | };
138 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
139 | isa = PBXContainerItemProxy;
140 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
141 | proxyType = 2;
142 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
143 | remoteInfo = jsinspector;
144 | };
145 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
146 | isa = PBXContainerItemProxy;
147 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
148 | proxyType = 2;
149 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
150 | remoteInfo = "jsinspector-tvOS";
151 | };
152 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
153 | isa = PBXContainerItemProxy;
154 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
155 | proxyType = 2;
156 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
157 | remoteInfo = "third-party";
158 | };
159 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
160 | isa = PBXContainerItemProxy;
161 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
162 | proxyType = 2;
163 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
164 | remoteInfo = "third-party-tvOS";
165 | };
166 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
167 | isa = PBXContainerItemProxy;
168 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
169 | proxyType = 2;
170 | remoteGlobalIDString = 139D7E881E25C6D100323FB7;
171 | remoteInfo = "double-conversion";
172 | };
173 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
174 | isa = PBXContainerItemProxy;
175 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
176 | proxyType = 2;
177 | remoteGlobalIDString = 3D383D621EBD27B9005632C8;
178 | remoteInfo = "double-conversion-tvOS";
179 | };
180 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
181 | isa = PBXContainerItemProxy;
182 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
183 | proxyType = 2;
184 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
185 | remoteInfo = privatedata;
186 | };
187 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
188 | isa = PBXContainerItemProxy;
189 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
190 | proxyType = 2;
191 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
192 | remoteInfo = "privatedata-tvOS";
193 | };
194 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
195 | isa = PBXContainerItemProxy;
196 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
197 | proxyType = 2;
198 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
199 | remoteInfo = "RCTImage-tvOS";
200 | };
201 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
202 | isa = PBXContainerItemProxy;
203 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
204 | proxyType = 2;
205 | remoteGlobalIDString = 2D2A28471D9B043800D4039D;
206 | remoteInfo = "RCTLinking-tvOS";
207 | };
208 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
209 | isa = PBXContainerItemProxy;
210 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
211 | proxyType = 2;
212 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
213 | remoteInfo = "RCTNetwork-tvOS";
214 | };
215 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
216 | isa = PBXContainerItemProxy;
217 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
218 | proxyType = 2;
219 | remoteGlobalIDString = 2D2A28611D9B046600D4039D;
220 | remoteInfo = "RCTSettings-tvOS";
221 | };
222 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
223 | isa = PBXContainerItemProxy;
224 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
225 | proxyType = 2;
226 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
227 | remoteInfo = "RCTText-tvOS";
228 | };
229 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
230 | isa = PBXContainerItemProxy;
231 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
232 | proxyType = 2;
233 | remoteGlobalIDString = 2D2A28881D9B049200D4039D;
234 | remoteInfo = "RCTWebSocket-tvOS";
235 | };
236 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
237 | isa = PBXContainerItemProxy;
238 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
239 | proxyType = 2;
240 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
241 | remoteInfo = "React-tvOS";
242 | };
243 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
244 | isa = PBXContainerItemProxy;
245 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
246 | proxyType = 2;
247 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
248 | remoteInfo = yoga;
249 | };
250 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
251 | isa = PBXContainerItemProxy;
252 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
253 | proxyType = 2;
254 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
255 | remoteInfo = "yoga-tvOS";
256 | };
257 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
258 | isa = PBXContainerItemProxy;
259 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
260 | proxyType = 2;
261 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
262 | remoteInfo = cxxreact;
263 | };
264 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
265 | isa = PBXContainerItemProxy;
266 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
267 | proxyType = 2;
268 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
269 | remoteInfo = "cxxreact-tvOS";
270 | };
271 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
272 | isa = PBXContainerItemProxy;
273 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
274 | proxyType = 2;
275 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
276 | remoteInfo = jschelpers;
277 | };
278 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
279 | isa = PBXContainerItemProxy;
280 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
281 | proxyType = 2;
282 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
283 | remoteInfo = "jschelpers-tvOS";
284 | };
285 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
286 | isa = PBXContainerItemProxy;
287 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
288 | proxyType = 2;
289 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
290 | remoteInfo = RCTAnimation;
291 | };
292 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
293 | isa = PBXContainerItemProxy;
294 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
295 | proxyType = 2;
296 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
297 | remoteInfo = "RCTAnimation-tvOS";
298 | };
299 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
300 | isa = PBXContainerItemProxy;
301 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
302 | proxyType = 2;
303 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
304 | remoteInfo = RCTLinking;
305 | };
306 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
307 | isa = PBXContainerItemProxy;
308 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
309 | proxyType = 2;
310 | remoteGlobalIDString = 58B5119B1A9E6C1200147676;
311 | remoteInfo = RCTText;
312 | };
313 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
314 | isa = PBXContainerItemProxy;
315 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
316 | proxyType = 2;
317 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
318 | remoteInfo = RCTBlob;
319 | };
320 | /* End PBXContainerItemProxy section */
321 |
322 | /* Begin PBXFileReference section */
323 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
324 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; };
325 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; };
326 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; };
327 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; };
328 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; };
329 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
330 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
331 | 00E356F21AD99517003FC87E /* exampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleTests.m; sourceTree = ""; };
332 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; };
333 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; };
334 | 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; };
335 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = example/AppDelegate.h; sourceTree = ""; };
336 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = example/AppDelegate.m; sourceTree = ""; };
337 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
338 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = ""; };
339 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = ""; };
340 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = example/main.m; sourceTree = ""; };
341 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; };
342 | 1AA23E6108E555DACB10CCBE /* Pods-example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example.release.xcconfig"; path = "Target Support Files/Pods-example/Pods-example.release.xcconfig"; sourceTree = ""; };
343 | 2D02E47B1E0B4A5D006451C7 /* example-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "example-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
344 | 2D02E4901E0B4A5D006451C7 /* example-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "example-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
345 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
346 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; };
347 | 605F0D0E200AACECB2BCA439 /* libPods-example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
348 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; };
349 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; };
350 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; };
351 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
352 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
353 | F127D41D67C7594DAF41BACE /* Pods-example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example.debug.xcconfig"; path = "Target Support Files/Pods-example/Pods-example.debug.xcconfig"; sourceTree = ""; };
354 | /* End PBXFileReference section */
355 |
356 | /* Begin PBXFrameworksBuildPhase section */
357 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
358 | isa = PBXFrameworksBuildPhase;
359 | buildActionMask = 2147483647;
360 | files = (
361 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
362 | );
363 | runOnlyForDeploymentPostprocessing = 0;
364 | };
365 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
366 | isa = PBXFrameworksBuildPhase;
367 | buildActionMask = 2147483647;
368 | files = (
369 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */,
370 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
371 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */,
372 | 146834051AC3E58100842450 /* libReact.a in Frameworks */,
373 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
374 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
375 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
376 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
377 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
378 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
379 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
380 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
381 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
382 | 5348DD75180B27EAC4D9C02F /* libPods-example.a in Frameworks */,
383 | );
384 | runOnlyForDeploymentPostprocessing = 0;
385 | };
386 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
387 | isa = PBXFrameworksBuildPhase;
388 | buildActionMask = 2147483647;
389 | files = (
390 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */,
391 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
392 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
393 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
394 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
395 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
396 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
397 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
398 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
399 | );
400 | runOnlyForDeploymentPostprocessing = 0;
401 | };
402 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
403 | isa = PBXFrameworksBuildPhase;
404 | buildActionMask = 2147483647;
405 | files = (
406 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
407 | );
408 | runOnlyForDeploymentPostprocessing = 0;
409 | };
410 | /* End PBXFrameworksBuildPhase section */
411 |
412 | /* Begin PBXGroup section */
413 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
414 | isa = PBXGroup;
415 | children = (
416 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
417 | );
418 | name = Products;
419 | sourceTree = "";
420 | };
421 | 00C302B61ABCB90400DB3ED1 /* Products */ = {
422 | isa = PBXGroup;
423 | children = (
424 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
425 | );
426 | name = Products;
427 | sourceTree = "";
428 | };
429 | 00C302BC1ABCB91800DB3ED1 /* Products */ = {
430 | isa = PBXGroup;
431 | children = (
432 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
433 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
434 | );
435 | name = Products;
436 | sourceTree = "";
437 | };
438 | 00C302D41ABCB9D200DB3ED1 /* Products */ = {
439 | isa = PBXGroup;
440 | children = (
441 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
442 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
443 | );
444 | name = Products;
445 | sourceTree = "";
446 | };
447 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
448 | isa = PBXGroup;
449 | children = (
450 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
451 | );
452 | name = Products;
453 | sourceTree = "";
454 | };
455 | 00E356EF1AD99517003FC87E /* exampleTests */ = {
456 | isa = PBXGroup;
457 | children = (
458 | 00E356F21AD99517003FC87E /* exampleTests.m */,
459 | 00E356F01AD99517003FC87E /* Supporting Files */,
460 | );
461 | path = exampleTests;
462 | sourceTree = "";
463 | };
464 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
465 | isa = PBXGroup;
466 | children = (
467 | 00E356F11AD99517003FC87E /* Info.plist */,
468 | );
469 | name = "Supporting Files";
470 | sourceTree = "";
471 | };
472 | 139105B71AF99BAD00B5F7CC /* Products */ = {
473 | isa = PBXGroup;
474 | children = (
475 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
476 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
477 | );
478 | name = Products;
479 | sourceTree = "";
480 | };
481 | 139FDEE71B06529A00C62182 /* Products */ = {
482 | isa = PBXGroup;
483 | children = (
484 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
485 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
486 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
487 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
488 | );
489 | name = Products;
490 | sourceTree = "";
491 | };
492 | 13B07FAE1A68108700A75B9A /* example */ = {
493 | isa = PBXGroup;
494 | children = (
495 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
496 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
497 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
498 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
499 | 13B07FB61A68108700A75B9A /* Info.plist */,
500 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
501 | 13B07FB71A68108700A75B9A /* main.m */,
502 | );
503 | name = example;
504 | sourceTree = "";
505 | };
506 | 146834001AC3E56700842450 /* Products */ = {
507 | isa = PBXGroup;
508 | children = (
509 | 146834041AC3E56700842450 /* libReact.a */,
510 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
511 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
512 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
513 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
514 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
515 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
516 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
517 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
518 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
519 | 2DF0FFE32056DD460020B375 /* libthird-party.a */,
520 | 2DF0FFE52056DD460020B375 /* libthird-party.a */,
521 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
522 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
523 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
524 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
525 | );
526 | name = Products;
527 | sourceTree = "";
528 | };
529 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
530 | isa = PBXGroup;
531 | children = (
532 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
533 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
534 | 2D16E6891FA4F8E400B85C8A /* libReact.a */,
535 | 605F0D0E200AACECB2BCA439 /* libPods-example.a */,
536 | );
537 | name = Frameworks;
538 | sourceTree = "";
539 | };
540 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
541 | isa = PBXGroup;
542 | children = (
543 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
544 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
545 | );
546 | name = Products;
547 | sourceTree = "";
548 | };
549 | 5F9A0F399854539CFF0D1975 /* Pods */ = {
550 | isa = PBXGroup;
551 | children = (
552 | F127D41D67C7594DAF41BACE /* Pods-example.debug.xcconfig */,
553 | 1AA23E6108E555DACB10CCBE /* Pods-example.release.xcconfig */,
554 | );
555 | name = Pods;
556 | path = Pods;
557 | sourceTree = "";
558 | };
559 | 78C398B11ACF4ADC00677621 /* Products */ = {
560 | isa = PBXGroup;
561 | children = (
562 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
563 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
564 | );
565 | name = Products;
566 | sourceTree = "";
567 | };
568 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
569 | isa = PBXGroup;
570 | children = (
571 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
572 | 146833FF1AC3E56700842450 /* React.xcodeproj */,
573 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
574 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
575 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
576 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
577 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
578 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
579 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
580 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
581 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
582 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
583 | );
584 | name = Libraries;
585 | sourceTree = "";
586 | };
587 | 832341B11AAA6A8300B99B32 /* Products */ = {
588 | isa = PBXGroup;
589 | children = (
590 | 832341B51AAA6A8300B99B32 /* libRCTText.a */,
591 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
592 | );
593 | name = Products;
594 | sourceTree = "";
595 | };
596 | 83CBB9F61A601CBA00E9B192 = {
597 | isa = PBXGroup;
598 | children = (
599 | 13B07FAE1A68108700A75B9A /* example */,
600 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
601 | 00E356EF1AD99517003FC87E /* exampleTests */,
602 | 83CBBA001A601CBA00E9B192 /* Products */,
603 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
604 | 5F9A0F399854539CFF0D1975 /* Pods */,
605 | );
606 | indentWidth = 2;
607 | sourceTree = "";
608 | tabWidth = 2;
609 | usesTabs = 0;
610 | };
611 | 83CBBA001A601CBA00E9B192 /* Products */ = {
612 | isa = PBXGroup;
613 | children = (
614 | 13B07F961A680F5B00A75B9A /* example.app */,
615 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */,
616 | 2D02E47B1E0B4A5D006451C7 /* example-tvOS.app */,
617 | 2D02E4901E0B4A5D006451C7 /* example-tvOSTests.xctest */,
618 | );
619 | name = Products;
620 | sourceTree = "";
621 | };
622 | ADBDB9201DFEBF0600ED6528 /* Products */ = {
623 | isa = PBXGroup;
624 | children = (
625 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
626 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
627 | );
628 | name = Products;
629 | sourceTree = "";
630 | };
631 | /* End PBXGroup section */
632 |
633 | /* Begin PBXNativeTarget section */
634 | 00E356ED1AD99517003FC87E /* exampleTests */ = {
635 | isa = PBXNativeTarget;
636 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */;
637 | buildPhases = (
638 | 00E356EA1AD99517003FC87E /* Sources */,
639 | 00E356EB1AD99517003FC87E /* Frameworks */,
640 | 00E356EC1AD99517003FC87E /* Resources */,
641 | );
642 | buildRules = (
643 | );
644 | dependencies = (
645 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
646 | );
647 | name = exampleTests;
648 | productName = exampleTests;
649 | productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */;
650 | productType = "com.apple.product-type.bundle.unit-test";
651 | };
652 | 13B07F861A680F5B00A75B9A /* example */ = {
653 | isa = PBXNativeTarget;
654 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */;
655 | buildPhases = (
656 | A7D0F37DCF97F2419D9F7FB9 /* [CP] Check Pods Manifest.lock */,
657 | 13B07F871A680F5B00A75B9A /* Sources */,
658 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
659 | 13B07F8E1A680F5B00A75B9A /* Resources */,
660 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
661 | C57911D087B4B01DB670586F /* [CP] Embed Pods Frameworks */,
662 | );
663 | buildRules = (
664 | );
665 | dependencies = (
666 | );
667 | name = example;
668 | productName = "Hello World";
669 | productReference = 13B07F961A680F5B00A75B9A /* example.app */;
670 | productType = "com.apple.product-type.application";
671 | };
672 | 2D02E47A1E0B4A5D006451C7 /* example-tvOS */ = {
673 | isa = PBXNativeTarget;
674 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOS" */;
675 | buildPhases = (
676 | 2D02E4771E0B4A5D006451C7 /* Sources */,
677 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
678 | 2D02E4791E0B4A5D006451C7 /* Resources */,
679 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
680 | );
681 | buildRules = (
682 | );
683 | dependencies = (
684 | );
685 | name = "example-tvOS";
686 | productName = "example-tvOS";
687 | productReference = 2D02E47B1E0B4A5D006451C7 /* example-tvOS.app */;
688 | productType = "com.apple.product-type.application";
689 | };
690 | 2D02E48F1E0B4A5D006451C7 /* example-tvOSTests */ = {
691 | isa = PBXNativeTarget;
692 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOSTests" */;
693 | buildPhases = (
694 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
695 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
696 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
697 | );
698 | buildRules = (
699 | );
700 | dependencies = (
701 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
702 | );
703 | name = "example-tvOSTests";
704 | productName = "example-tvOSTests";
705 | productReference = 2D02E4901E0B4A5D006451C7 /* example-tvOSTests.xctest */;
706 | productType = "com.apple.product-type.bundle.unit-test";
707 | };
708 | /* End PBXNativeTarget section */
709 |
710 | /* Begin PBXProject section */
711 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
712 | isa = PBXProject;
713 | attributes = {
714 | LastUpgradeCheck = 0940;
715 | ORGANIZATIONNAME = Facebook;
716 | TargetAttributes = {
717 | 00E356ED1AD99517003FC87E = {
718 | CreatedOnToolsVersion = 6.2;
719 | TestTargetID = 13B07F861A680F5B00A75B9A;
720 | };
721 | 2D02E47A1E0B4A5D006451C7 = {
722 | CreatedOnToolsVersion = 8.2.1;
723 | ProvisioningStyle = Automatic;
724 | };
725 | 2D02E48F1E0B4A5D006451C7 = {
726 | CreatedOnToolsVersion = 8.2.1;
727 | ProvisioningStyle = Automatic;
728 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
729 | };
730 | };
731 | };
732 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */;
733 | compatibilityVersion = "Xcode 3.2";
734 | developmentRegion = English;
735 | hasScannedForEncodings = 0;
736 | knownRegions = (
737 | en,
738 | Base,
739 | );
740 | mainGroup = 83CBB9F61A601CBA00E9B192;
741 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
742 | projectDirPath = "";
743 | projectReferences = (
744 | {
745 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
746 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
747 | },
748 | {
749 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
750 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
751 | },
752 | {
753 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
754 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
755 | },
756 | {
757 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
758 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
759 | },
760 | {
761 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
762 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
763 | },
764 | {
765 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
766 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
767 | },
768 | {
769 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
770 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
771 | },
772 | {
773 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
774 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
775 | },
776 | {
777 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
778 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
779 | },
780 | {
781 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
782 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
783 | },
784 | {
785 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
786 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
787 | },
788 | {
789 | ProductGroup = 146834001AC3E56700842450 /* Products */;
790 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
791 | },
792 | );
793 | projectRoot = "";
794 | targets = (
795 | 13B07F861A680F5B00A75B9A /* example */,
796 | 00E356ED1AD99517003FC87E /* exampleTests */,
797 | 2D02E47A1E0B4A5D006451C7 /* example-tvOS */,
798 | 2D02E48F1E0B4A5D006451C7 /* example-tvOSTests */,
799 | );
800 | };
801 | /* End PBXProject section */
802 |
803 | /* Begin PBXReferenceProxy section */
804 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
805 | isa = PBXReferenceProxy;
806 | fileType = archive.ar;
807 | path = libRCTActionSheet.a;
808 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
809 | sourceTree = BUILT_PRODUCTS_DIR;
810 | };
811 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
812 | isa = PBXReferenceProxy;
813 | fileType = archive.ar;
814 | path = libRCTGeolocation.a;
815 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
816 | sourceTree = BUILT_PRODUCTS_DIR;
817 | };
818 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
819 | isa = PBXReferenceProxy;
820 | fileType = archive.ar;
821 | path = libRCTImage.a;
822 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
823 | sourceTree = BUILT_PRODUCTS_DIR;
824 | };
825 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
826 | isa = PBXReferenceProxy;
827 | fileType = archive.ar;
828 | path = libRCTNetwork.a;
829 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
830 | sourceTree = BUILT_PRODUCTS_DIR;
831 | };
832 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
833 | isa = PBXReferenceProxy;
834 | fileType = archive.ar;
835 | path = libRCTVibration.a;
836 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
837 | sourceTree = BUILT_PRODUCTS_DIR;
838 | };
839 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
840 | isa = PBXReferenceProxy;
841 | fileType = archive.ar;
842 | path = libRCTSettings.a;
843 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
844 | sourceTree = BUILT_PRODUCTS_DIR;
845 | };
846 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
847 | isa = PBXReferenceProxy;
848 | fileType = archive.ar;
849 | path = libRCTWebSocket.a;
850 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
851 | sourceTree = BUILT_PRODUCTS_DIR;
852 | };
853 | 146834041AC3E56700842450 /* libReact.a */ = {
854 | isa = PBXReferenceProxy;
855 | fileType = archive.ar;
856 | path = libReact.a;
857 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
858 | sourceTree = BUILT_PRODUCTS_DIR;
859 | };
860 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
861 | isa = PBXReferenceProxy;
862 | fileType = archive.ar;
863 | path = "libRCTBlob-tvOS.a";
864 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
865 | sourceTree = BUILT_PRODUCTS_DIR;
866 | };
867 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
868 | isa = PBXReferenceProxy;
869 | fileType = archive.ar;
870 | path = libfishhook.a;
871 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
872 | sourceTree = BUILT_PRODUCTS_DIR;
873 | };
874 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
875 | isa = PBXReferenceProxy;
876 | fileType = archive.ar;
877 | path = "libfishhook-tvOS.a";
878 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
879 | sourceTree = BUILT_PRODUCTS_DIR;
880 | };
881 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
882 | isa = PBXReferenceProxy;
883 | fileType = archive.ar;
884 | path = libjsinspector.a;
885 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
886 | sourceTree = BUILT_PRODUCTS_DIR;
887 | };
888 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
889 | isa = PBXReferenceProxy;
890 | fileType = archive.ar;
891 | path = "libjsinspector-tvOS.a";
892 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
893 | sourceTree = BUILT_PRODUCTS_DIR;
894 | };
895 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
896 | isa = PBXReferenceProxy;
897 | fileType = archive.ar;
898 | path = "libthird-party.a";
899 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
900 | sourceTree = BUILT_PRODUCTS_DIR;
901 | };
902 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
903 | isa = PBXReferenceProxy;
904 | fileType = archive.ar;
905 | path = "libthird-party.a";
906 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
907 | sourceTree = BUILT_PRODUCTS_DIR;
908 | };
909 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
910 | isa = PBXReferenceProxy;
911 | fileType = archive.ar;
912 | path = "libdouble-conversion.a";
913 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
914 | sourceTree = BUILT_PRODUCTS_DIR;
915 | };
916 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
917 | isa = PBXReferenceProxy;
918 | fileType = archive.ar;
919 | path = "libdouble-conversion.a";
920 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
921 | sourceTree = BUILT_PRODUCTS_DIR;
922 | };
923 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
924 | isa = PBXReferenceProxy;
925 | fileType = archive.ar;
926 | path = libprivatedata.a;
927 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
928 | sourceTree = BUILT_PRODUCTS_DIR;
929 | };
930 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
931 | isa = PBXReferenceProxy;
932 | fileType = archive.ar;
933 | path = "libprivatedata-tvOS.a";
934 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
935 | sourceTree = BUILT_PRODUCTS_DIR;
936 | };
937 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
938 | isa = PBXReferenceProxy;
939 | fileType = archive.ar;
940 | path = "libRCTImage-tvOS.a";
941 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
942 | sourceTree = BUILT_PRODUCTS_DIR;
943 | };
944 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
945 | isa = PBXReferenceProxy;
946 | fileType = archive.ar;
947 | path = "libRCTLinking-tvOS.a";
948 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
949 | sourceTree = BUILT_PRODUCTS_DIR;
950 | };
951 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
952 | isa = PBXReferenceProxy;
953 | fileType = archive.ar;
954 | path = "libRCTNetwork-tvOS.a";
955 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
956 | sourceTree = BUILT_PRODUCTS_DIR;
957 | };
958 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
959 | isa = PBXReferenceProxy;
960 | fileType = archive.ar;
961 | path = "libRCTSettings-tvOS.a";
962 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
963 | sourceTree = BUILT_PRODUCTS_DIR;
964 | };
965 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
966 | isa = PBXReferenceProxy;
967 | fileType = archive.ar;
968 | path = "libRCTText-tvOS.a";
969 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
970 | sourceTree = BUILT_PRODUCTS_DIR;
971 | };
972 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
973 | isa = PBXReferenceProxy;
974 | fileType = archive.ar;
975 | path = "libRCTWebSocket-tvOS.a";
976 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
977 | sourceTree = BUILT_PRODUCTS_DIR;
978 | };
979 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
980 | isa = PBXReferenceProxy;
981 | fileType = archive.ar;
982 | path = libReact.a;
983 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
984 | sourceTree = BUILT_PRODUCTS_DIR;
985 | };
986 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
987 | isa = PBXReferenceProxy;
988 | fileType = archive.ar;
989 | path = libyoga.a;
990 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
991 | sourceTree = BUILT_PRODUCTS_DIR;
992 | };
993 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
994 | isa = PBXReferenceProxy;
995 | fileType = archive.ar;
996 | path = libyoga.a;
997 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
998 | sourceTree = BUILT_PRODUCTS_DIR;
999 | };
1000 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
1001 | isa = PBXReferenceProxy;
1002 | fileType = archive.ar;
1003 | path = libcxxreact.a;
1004 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
1005 | sourceTree = BUILT_PRODUCTS_DIR;
1006 | };
1007 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
1008 | isa = PBXReferenceProxy;
1009 | fileType = archive.ar;
1010 | path = libcxxreact.a;
1011 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
1012 | sourceTree = BUILT_PRODUCTS_DIR;
1013 | };
1014 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
1015 | isa = PBXReferenceProxy;
1016 | fileType = archive.ar;
1017 | path = libjschelpers.a;
1018 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
1019 | sourceTree = BUILT_PRODUCTS_DIR;
1020 | };
1021 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
1022 | isa = PBXReferenceProxy;
1023 | fileType = archive.ar;
1024 | path = libjschelpers.a;
1025 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
1026 | sourceTree = BUILT_PRODUCTS_DIR;
1027 | };
1028 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1029 | isa = PBXReferenceProxy;
1030 | fileType = archive.ar;
1031 | path = libRCTAnimation.a;
1032 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1033 | sourceTree = BUILT_PRODUCTS_DIR;
1034 | };
1035 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1036 | isa = PBXReferenceProxy;
1037 | fileType = archive.ar;
1038 | path = libRCTAnimation.a;
1039 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1040 | sourceTree = BUILT_PRODUCTS_DIR;
1041 | };
1042 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
1043 | isa = PBXReferenceProxy;
1044 | fileType = archive.ar;
1045 | path = libRCTLinking.a;
1046 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
1047 | sourceTree = BUILT_PRODUCTS_DIR;
1048 | };
1049 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
1050 | isa = PBXReferenceProxy;
1051 | fileType = archive.ar;
1052 | path = libRCTText.a;
1053 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
1054 | sourceTree = BUILT_PRODUCTS_DIR;
1055 | };
1056 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
1057 | isa = PBXReferenceProxy;
1058 | fileType = archive.ar;
1059 | path = libRCTBlob.a;
1060 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
1061 | sourceTree = BUILT_PRODUCTS_DIR;
1062 | };
1063 | /* End PBXReferenceProxy section */
1064 |
1065 | /* Begin PBXResourcesBuildPhase section */
1066 | 00E356EC1AD99517003FC87E /* Resources */ = {
1067 | isa = PBXResourcesBuildPhase;
1068 | buildActionMask = 2147483647;
1069 | files = (
1070 | );
1071 | runOnlyForDeploymentPostprocessing = 0;
1072 | };
1073 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
1074 | isa = PBXResourcesBuildPhase;
1075 | buildActionMask = 2147483647;
1076 | files = (
1077 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1078 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1079 | );
1080 | runOnlyForDeploymentPostprocessing = 0;
1081 | };
1082 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
1083 | isa = PBXResourcesBuildPhase;
1084 | buildActionMask = 2147483647;
1085 | files = (
1086 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
1087 | );
1088 | runOnlyForDeploymentPostprocessing = 0;
1089 | };
1090 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
1091 | isa = PBXResourcesBuildPhase;
1092 | buildActionMask = 2147483647;
1093 | files = (
1094 | );
1095 | runOnlyForDeploymentPostprocessing = 0;
1096 | };
1097 | /* End PBXResourcesBuildPhase section */
1098 |
1099 | /* Begin PBXShellScriptBuildPhase section */
1100 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
1101 | isa = PBXShellScriptBuildPhase;
1102 | buildActionMask = 2147483647;
1103 | files = (
1104 | );
1105 | inputPaths = (
1106 | );
1107 | name = "Bundle React Native code and images";
1108 | outputPaths = (
1109 | );
1110 | runOnlyForDeploymentPostprocessing = 0;
1111 | shellPath = /bin/sh;
1112 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1113 | };
1114 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
1115 | isa = PBXShellScriptBuildPhase;
1116 | buildActionMask = 2147483647;
1117 | files = (
1118 | );
1119 | inputPaths = (
1120 | );
1121 | name = "Bundle React Native Code And Images";
1122 | outputPaths = (
1123 | );
1124 | runOnlyForDeploymentPostprocessing = 0;
1125 | shellPath = /bin/sh;
1126 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1127 | };
1128 | A7D0F37DCF97F2419D9F7FB9 /* [CP] Check Pods Manifest.lock */ = {
1129 | isa = PBXShellScriptBuildPhase;
1130 | buildActionMask = 2147483647;
1131 | files = (
1132 | );
1133 | inputFileListPaths = (
1134 | );
1135 | inputPaths = (
1136 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
1137 | "${PODS_ROOT}/Manifest.lock",
1138 | );
1139 | name = "[CP] Check Pods Manifest.lock";
1140 | outputFileListPaths = (
1141 | );
1142 | outputPaths = (
1143 | "$(DERIVED_FILE_DIR)/Pods-example-checkManifestLockResult.txt",
1144 | );
1145 | runOnlyForDeploymentPostprocessing = 0;
1146 | shellPath = /bin/sh;
1147 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
1148 | showEnvVarsInLog = 0;
1149 | };
1150 | C57911D087B4B01DB670586F /* [CP] Embed Pods Frameworks */ = {
1151 | isa = PBXShellScriptBuildPhase;
1152 | buildActionMask = 2147483647;
1153 | files = (
1154 | );
1155 | inputPaths = (
1156 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh",
1157 | "${PODS_ROOT}/QuietModemKit/QuietModemKit.framework",
1158 | );
1159 | name = "[CP] Embed Pods Frameworks";
1160 | outputPaths = (
1161 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/QuietModemKit.framework",
1162 | );
1163 | runOnlyForDeploymentPostprocessing = 0;
1164 | shellPath = /bin/sh;
1165 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n";
1166 | showEnvVarsInLog = 0;
1167 | };
1168 | /* End PBXShellScriptBuildPhase section */
1169 |
1170 | /* Begin PBXSourcesBuildPhase section */
1171 | 00E356EA1AD99517003FC87E /* Sources */ = {
1172 | isa = PBXSourcesBuildPhase;
1173 | buildActionMask = 2147483647;
1174 | files = (
1175 | 00E356F31AD99517003FC87E /* exampleTests.m in Sources */,
1176 | );
1177 | runOnlyForDeploymentPostprocessing = 0;
1178 | };
1179 | 13B07F871A680F5B00A75B9A /* Sources */ = {
1180 | isa = PBXSourcesBuildPhase;
1181 | buildActionMask = 2147483647;
1182 | files = (
1183 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
1184 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
1185 | );
1186 | runOnlyForDeploymentPostprocessing = 0;
1187 | };
1188 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
1189 | isa = PBXSourcesBuildPhase;
1190 | buildActionMask = 2147483647;
1191 | files = (
1192 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
1193 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
1194 | );
1195 | runOnlyForDeploymentPostprocessing = 0;
1196 | };
1197 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
1198 | isa = PBXSourcesBuildPhase;
1199 | buildActionMask = 2147483647;
1200 | files = (
1201 | 2DCD954D1E0B4F2C00145EB5 /* exampleTests.m in Sources */,
1202 | );
1203 | runOnlyForDeploymentPostprocessing = 0;
1204 | };
1205 | /* End PBXSourcesBuildPhase section */
1206 |
1207 | /* Begin PBXTargetDependency section */
1208 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
1209 | isa = PBXTargetDependency;
1210 | target = 13B07F861A680F5B00A75B9A /* example */;
1211 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
1212 | };
1213 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
1214 | isa = PBXTargetDependency;
1215 | target = 2D02E47A1E0B4A5D006451C7 /* example-tvOS */;
1216 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
1217 | };
1218 | /* End PBXTargetDependency section */
1219 |
1220 | /* Begin PBXVariantGroup section */
1221 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
1222 | isa = PBXVariantGroup;
1223 | children = (
1224 | 13B07FB21A68108700A75B9A /* Base */,
1225 | );
1226 | name = LaunchScreen.xib;
1227 | path = example;
1228 | sourceTree = "";
1229 | };
1230 | /* End PBXVariantGroup section */
1231 |
1232 | /* Begin XCBuildConfiguration section */
1233 | 00E356F61AD99517003FC87E /* Debug */ = {
1234 | isa = XCBuildConfiguration;
1235 | buildSettings = {
1236 | BUNDLE_LOADER = "$(TEST_HOST)";
1237 | GCC_PREPROCESSOR_DEFINITIONS = (
1238 | "DEBUG=1",
1239 | "$(inherited)",
1240 | );
1241 | INFOPLIST_FILE = exampleTests/Info.plist;
1242 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1243 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1244 | OTHER_LDFLAGS = (
1245 | "-ObjC",
1246 | "-lc++",
1247 | );
1248 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1249 | PRODUCT_NAME = "$(TARGET_NAME)";
1250 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
1251 | };
1252 | name = Debug;
1253 | };
1254 | 00E356F71AD99517003FC87E /* Release */ = {
1255 | isa = XCBuildConfiguration;
1256 | buildSettings = {
1257 | BUNDLE_LOADER = "$(TEST_HOST)";
1258 | COPY_PHASE_STRIP = NO;
1259 | INFOPLIST_FILE = exampleTests/Info.plist;
1260 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1261 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1262 | OTHER_LDFLAGS = (
1263 | "-ObjC",
1264 | "-lc++",
1265 | );
1266 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1267 | PRODUCT_NAME = "$(TARGET_NAME)";
1268 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
1269 | };
1270 | name = Release;
1271 | };
1272 | 13B07F941A680F5B00A75B9A /* Debug */ = {
1273 | isa = XCBuildConfiguration;
1274 | baseConfigurationReference = F127D41D67C7594DAF41BACE /* Pods-example.debug.xcconfig */;
1275 | buildSettings = {
1276 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1277 | CURRENT_PROJECT_VERSION = 1;
1278 | DEAD_CODE_STRIPPING = NO;
1279 | INFOPLIST_FILE = example/Info.plist;
1280 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1281 | OTHER_LDFLAGS = (
1282 | "$(inherited)",
1283 | "-ObjC",
1284 | "-lc++",
1285 | );
1286 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1287 | PRODUCT_NAME = example;
1288 | VERSIONING_SYSTEM = "apple-generic";
1289 | };
1290 | name = Debug;
1291 | };
1292 | 13B07F951A680F5B00A75B9A /* Release */ = {
1293 | isa = XCBuildConfiguration;
1294 | baseConfigurationReference = 1AA23E6108E555DACB10CCBE /* Pods-example.release.xcconfig */;
1295 | buildSettings = {
1296 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1297 | CURRENT_PROJECT_VERSION = 1;
1298 | INFOPLIST_FILE = example/Info.plist;
1299 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1300 | OTHER_LDFLAGS = (
1301 | "$(inherited)",
1302 | "-ObjC",
1303 | "-lc++",
1304 | );
1305 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1306 | PRODUCT_NAME = example;
1307 | VERSIONING_SYSTEM = "apple-generic";
1308 | };
1309 | name = Release;
1310 | };
1311 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
1312 | isa = XCBuildConfiguration;
1313 | buildSettings = {
1314 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1315 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1316 | CLANG_ANALYZER_NONNULL = YES;
1317 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1318 | CLANG_WARN_INFINITE_RECURSION = YES;
1319 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1320 | DEBUG_INFORMATION_FORMAT = dwarf;
1321 | ENABLE_TESTABILITY = YES;
1322 | GCC_NO_COMMON_BLOCKS = YES;
1323 | INFOPLIST_FILE = "example-tvOS/Info.plist";
1324 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1325 | OTHER_LDFLAGS = (
1326 | "-ObjC",
1327 | "-lc++",
1328 | );
1329 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOS";
1330 | PRODUCT_NAME = "$(TARGET_NAME)";
1331 | SDKROOT = appletvos;
1332 | TARGETED_DEVICE_FAMILY = 3;
1333 | TVOS_DEPLOYMENT_TARGET = 9.2;
1334 | };
1335 | name = Debug;
1336 | };
1337 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
1338 | isa = XCBuildConfiguration;
1339 | buildSettings = {
1340 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1341 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1342 | CLANG_ANALYZER_NONNULL = YES;
1343 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1344 | CLANG_WARN_INFINITE_RECURSION = YES;
1345 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1346 | COPY_PHASE_STRIP = NO;
1347 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1348 | GCC_NO_COMMON_BLOCKS = YES;
1349 | INFOPLIST_FILE = "example-tvOS/Info.plist";
1350 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1351 | OTHER_LDFLAGS = (
1352 | "-ObjC",
1353 | "-lc++",
1354 | );
1355 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOS";
1356 | PRODUCT_NAME = "$(TARGET_NAME)";
1357 | SDKROOT = appletvos;
1358 | TARGETED_DEVICE_FAMILY = 3;
1359 | TVOS_DEPLOYMENT_TARGET = 9.2;
1360 | };
1361 | name = Release;
1362 | };
1363 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
1364 | isa = XCBuildConfiguration;
1365 | buildSettings = {
1366 | BUNDLE_LOADER = "$(TEST_HOST)";
1367 | CLANG_ANALYZER_NONNULL = YES;
1368 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1369 | CLANG_WARN_INFINITE_RECURSION = YES;
1370 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1371 | DEBUG_INFORMATION_FORMAT = dwarf;
1372 | ENABLE_TESTABILITY = YES;
1373 | GCC_NO_COMMON_BLOCKS = YES;
1374 | INFOPLIST_FILE = "example-tvOSTests/Info.plist";
1375 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1376 | OTHER_LDFLAGS = (
1377 | "-ObjC",
1378 | "-lc++",
1379 | );
1380 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOSTests";
1381 | PRODUCT_NAME = "$(TARGET_NAME)";
1382 | SDKROOT = appletvos;
1383 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example-tvOS.app/example-tvOS";
1384 | TVOS_DEPLOYMENT_TARGET = 10.1;
1385 | };
1386 | name = Debug;
1387 | };
1388 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
1389 | isa = XCBuildConfiguration;
1390 | buildSettings = {
1391 | BUNDLE_LOADER = "$(TEST_HOST)";
1392 | CLANG_ANALYZER_NONNULL = YES;
1393 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1394 | CLANG_WARN_INFINITE_RECURSION = YES;
1395 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1396 | COPY_PHASE_STRIP = NO;
1397 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1398 | GCC_NO_COMMON_BLOCKS = YES;
1399 | INFOPLIST_FILE = "example-tvOSTests/Info.plist";
1400 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1401 | OTHER_LDFLAGS = (
1402 | "-ObjC",
1403 | "-lc++",
1404 | );
1405 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOSTests";
1406 | PRODUCT_NAME = "$(TARGET_NAME)";
1407 | SDKROOT = appletvos;
1408 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example-tvOS.app/example-tvOS";
1409 | TVOS_DEPLOYMENT_TARGET = 10.1;
1410 | };
1411 | name = Release;
1412 | };
1413 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
1414 | isa = XCBuildConfiguration;
1415 | buildSettings = {
1416 | ALWAYS_SEARCH_USER_PATHS = NO;
1417 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1418 | CLANG_CXX_LIBRARY = "libc++";
1419 | CLANG_ENABLE_MODULES = YES;
1420 | CLANG_ENABLE_OBJC_ARC = YES;
1421 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
1422 | CLANG_WARN_BOOL_CONVERSION = YES;
1423 | CLANG_WARN_COMMA = YES;
1424 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1425 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1426 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1427 | CLANG_WARN_EMPTY_BODY = YES;
1428 | CLANG_WARN_ENUM_CONVERSION = YES;
1429 | CLANG_WARN_INFINITE_RECURSION = YES;
1430 | CLANG_WARN_INT_CONVERSION = YES;
1431 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1432 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1433 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1434 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1435 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1436 | CLANG_WARN_STRICT_PROTOTYPES = YES;
1437 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1438 | CLANG_WARN_UNREACHABLE_CODE = YES;
1439 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1440 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1441 | COPY_PHASE_STRIP = NO;
1442 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1443 | ENABLE_TESTABILITY = YES;
1444 | GCC_C_LANGUAGE_STANDARD = gnu99;
1445 | GCC_DYNAMIC_NO_PIC = NO;
1446 | GCC_NO_COMMON_BLOCKS = YES;
1447 | GCC_OPTIMIZATION_LEVEL = 0;
1448 | GCC_PREPROCESSOR_DEFINITIONS = (
1449 | "DEBUG=1",
1450 | "$(inherited)",
1451 | );
1452 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
1453 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1454 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1455 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1456 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1457 | GCC_WARN_UNUSED_FUNCTION = YES;
1458 | GCC_WARN_UNUSED_VARIABLE = YES;
1459 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1460 | MTL_ENABLE_DEBUG_INFO = YES;
1461 | ONLY_ACTIVE_ARCH = YES;
1462 | SDKROOT = iphoneos;
1463 | };
1464 | name = Debug;
1465 | };
1466 | 83CBBA211A601CBA00E9B192 /* Release */ = {
1467 | isa = XCBuildConfiguration;
1468 | buildSettings = {
1469 | ALWAYS_SEARCH_USER_PATHS = NO;
1470 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1471 | CLANG_CXX_LIBRARY = "libc++";
1472 | CLANG_ENABLE_MODULES = YES;
1473 | CLANG_ENABLE_OBJC_ARC = YES;
1474 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
1475 | CLANG_WARN_BOOL_CONVERSION = YES;
1476 | CLANG_WARN_COMMA = YES;
1477 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1478 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1479 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1480 | CLANG_WARN_EMPTY_BODY = YES;
1481 | CLANG_WARN_ENUM_CONVERSION = YES;
1482 | CLANG_WARN_INFINITE_RECURSION = YES;
1483 | CLANG_WARN_INT_CONVERSION = YES;
1484 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1485 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1486 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1487 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1488 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1489 | CLANG_WARN_STRICT_PROTOTYPES = YES;
1490 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1491 | CLANG_WARN_UNREACHABLE_CODE = YES;
1492 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1493 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1494 | COPY_PHASE_STRIP = YES;
1495 | ENABLE_NS_ASSERTIONS = NO;
1496 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1497 | GCC_C_LANGUAGE_STANDARD = gnu99;
1498 | GCC_NO_COMMON_BLOCKS = YES;
1499 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1500 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1501 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1502 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1503 | GCC_WARN_UNUSED_FUNCTION = YES;
1504 | GCC_WARN_UNUSED_VARIABLE = YES;
1505 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1506 | MTL_ENABLE_DEBUG_INFO = NO;
1507 | SDKROOT = iphoneos;
1508 | VALIDATE_PRODUCT = YES;
1509 | };
1510 | name = Release;
1511 | };
1512 | /* End XCBuildConfiguration section */
1513 |
1514 | /* Begin XCConfigurationList section */
1515 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = {
1516 | isa = XCConfigurationList;
1517 | buildConfigurations = (
1518 | 00E356F61AD99517003FC87E /* Debug */,
1519 | 00E356F71AD99517003FC87E /* Release */,
1520 | );
1521 | defaultConfigurationIsVisible = 0;
1522 | defaultConfigurationName = Release;
1523 | };
1524 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = {
1525 | isa = XCConfigurationList;
1526 | buildConfigurations = (
1527 | 13B07F941A680F5B00A75B9A /* Debug */,
1528 | 13B07F951A680F5B00A75B9A /* Release */,
1529 | );
1530 | defaultConfigurationIsVisible = 0;
1531 | defaultConfigurationName = Release;
1532 | };
1533 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOS" */ = {
1534 | isa = XCConfigurationList;
1535 | buildConfigurations = (
1536 | 2D02E4971E0B4A5E006451C7 /* Debug */,
1537 | 2D02E4981E0B4A5E006451C7 /* Release */,
1538 | );
1539 | defaultConfigurationIsVisible = 0;
1540 | defaultConfigurationName = Release;
1541 | };
1542 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOSTests" */ = {
1543 | isa = XCConfigurationList;
1544 | buildConfigurations = (
1545 | 2D02E4991E0B4A5E006451C7 /* Debug */,
1546 | 2D02E49A1E0B4A5E006451C7 /* Release */,
1547 | );
1548 | defaultConfigurationIsVisible = 0;
1549 | defaultConfigurationName = Release;
1550 | };
1551 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = {
1552 | isa = XCConfigurationList;
1553 | buildConfigurations = (
1554 | 83CBBA201A601CBA00E9B192 /* Debug */,
1555 | 83CBBA211A601CBA00E9B192 /* Release */,
1556 | );
1557 | defaultConfigurationIsVisible = 0;
1558 | defaultConfigurationName = Release;
1559 | };
1560 | /* End XCConfigurationList section */
1561 | };
1562 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1563 | }
1564 |
--------------------------------------------------------------------------------