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