├── .gitignore ├── packages ├── MyAppMobile │ ├── .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 │ │ │ │ │ │ └── myappmobile │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── BUCK │ │ │ ├── proguard-rules.pro │ │ │ └── build.gradle │ │ ├── keystores │ │ │ ├── debug.keystore.properties │ │ │ └── BUCK │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradlew.bat │ │ └── gradlew │ ├── .buckconfig │ ├── __tests__ │ │ ├── index.ios.js │ │ └── index.android.js │ ├── package.json │ ├── ios │ │ ├── MyAppMobile │ │ │ ├── AppDelegate.h │ │ │ ├── main.m │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── AppDelegate.m │ │ │ ├── Info.plist │ │ │ └── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ ├── MyAppMobileTests │ │ │ ├── Info.plist │ │ │ └── MyAppMobileTests.m │ │ └── MyAppMobile.xcodeproj │ │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── MyAppMobile.xcscheme │ │ │ └── project.pbxproj │ ├── .gitignore │ ├── index.android.js │ ├── index.ios.js │ └── .flowconfig ├── MyAppWeb │ ├── src │ │ ├── index.css │ │ ├── index.js │ │ ├── App.test.js │ │ ├── App.css │ │ ├── App.js │ │ └── logo.svg │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── .gitignore │ ├── package.json │ └── README.md └── shared │ ├── main.js │ └── package.json ├── .DS_Store ├── package.json ├── README.md ├── lerna.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/MyAppMobile/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /packages/MyAppMobile/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /packages/MyAppMobile/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcorcos/learna-react-native/HEAD/.DS_Store -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "lerna": "2.0.0-beta.32" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # learna-react-native 2 | 3 | Working version of React Native (v0.40) with Lerna. 4 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'MyAppMobile' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /packages/MyAppWeb/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | -------------------------------------------------------------------------------- /packages/shared/main.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | background: { 3 | backgroundColor: 'rgb(255,0,0)' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- 1 | { 2 | "lerna": "2.0.0-beta.32", 3 | "packages": [ 4 | "packages/*" 5 | ], 6 | "version": "0.0.0" 7 | } 8 | -------------------------------------------------------------------------------- /packages/MyAppWeb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcorcos/learna-react-native/HEAD/packages/MyAppWeb/public/favicon.ico -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyAppMobile 3 | 4 | -------------------------------------------------------------------------------- /packages/MyAppMobile/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /packages/MyAppMobile/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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcorcos/learna-react-native/HEAD/packages/MyAppMobile/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcorcos/learna-react-native/HEAD/packages/MyAppMobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcorcos/learna-react-native/HEAD/packages/MyAppMobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcorcos/learna-react-native/HEAD/packages/MyAppMobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/MyAppMobile/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 5 | visibility = [ 6 | 'PUBLIC', 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcorcos/learna-react-native/HEAD/packages/MyAppMobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/MyAppWeb/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | import './index.css'; 5 | 6 | ReactDOM.render( 7 | , 8 | document.getElementById('root') 9 | ); 10 | -------------------------------------------------------------------------------- /packages/MyAppWeb/src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | it('renders without crashing', () => { 6 | const div = document.createElement('div'); 7 | ReactDOM.render(, div); 8 | }); 9 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/MyAppWeb/.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | node_modules 5 | 6 | # testing 7 | coverage 8 | 9 | # production 10 | build 11 | 12 | # misc 13 | .DS_Store 14 | .env 15 | npm-debug.log 16 | -------------------------------------------------------------------------------- /packages/shared/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "shared", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "main.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "MIT" 11 | } 12 | -------------------------------------------------------------------------------- /packages/MyAppMobile/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.4-all.zip 6 | -------------------------------------------------------------------------------- /packages/MyAppMobile/__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /packages/MyAppMobile/__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /packages/MyAppWeb/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | animation: App-logo-spin infinite 20s linear; 7 | height: 80px; 8 | } 9 | 10 | .App-header { 11 | background-color: #222; 12 | height: 150px; 13 | padding: 20px; 14 | color: white; 15 | } 16 | 17 | .App-intro { 18 | font-size: large; 19 | } 20 | 21 | @keyframes App-logo-spin { 22 | from { transform: rotate(0deg); } 23 | to { transform: rotate(360deg); } 24 | } 25 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/src/main/java/com/myappmobile/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.myappmobile; 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 "MyAppMobile"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /packages/MyAppWeb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "devDependencies": { 6 | "react-scripts": "0.8.5" 7 | }, 8 | "dependencies": { 9 | "react": "^15.4.2", 10 | "react-dom": "^15.4.2", 11 | "shared": "^1.0.0" 12 | }, 13 | "scripts": { 14 | "start": "react-scripts start", 15 | "build": "react-scripts build", 16 | "test": "react-scripts test --env=jsdom", 17 | "eject": "react-scripts eject" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /packages/MyAppMobile/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MyAppMobile", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "react-native start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "15.4.2", 11 | "react-native": "^0.40.0", 12 | "shared": "^1.0.0" 13 | }, 14 | "devDependencies": { 15 | "babel-jest": "18.0.0", 16 | "babel-preset-react-native": "1.9.1", 17 | "jest": "18.1.0", 18 | "react-test-renderer": "15.4.2" 19 | }, 20 | "jest": { 21 | "preset": "react-native" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobile/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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobile/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 | -------------------------------------------------------------------------------- /packages/MyAppWeb/src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { background, } from 'shared' 3 | import logo from './logo.svg'; 4 | import './App.css'; 5 | 6 | class App extends Component { 7 | render() { 8 | return ( 9 |
10 |
11 | logo 12 |

Welcome to React

13 |
14 |

15 | To get started, edit src/App.js and save to reload. 16 |

17 |
18 | ); 19 | } 20 | } 21 | 22 | export default App; 23 | -------------------------------------------------------------------------------- /packages/MyAppMobile/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:1.3.1' 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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobile/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobileTests/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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/.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 | 38 | # BUCK 39 | buck-out/ 40 | \.buckd/ 41 | android/app/libs 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /packages/MyAppWeb/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 16 | React App 17 | 18 | 19 |
20 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/src/main/java/com/myappmobile/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.myappmobile; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | import com.facebook.react.ReactApplication; 7 | import com.facebook.react.ReactInstanceManager; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.shell.MainReactPackage; 11 | import com.facebook.soloader.SoLoader; 12 | 13 | import java.util.Arrays; 14 | import java.util.List; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 19 | @Override 20 | protected boolean getUseDeveloperSupport() { 21 | return BuildConfig.DEBUG; 22 | } 23 | 24 | @Override 25 | protected List getPackages() { 26 | return Arrays.asList( 27 | new MainReactPackage() 28 | ); 29 | } 30 | }; 31 | 32 | @Override 33 | public ReactNativeHost getReactNativeHost() { 34 | return mReactNativeHost; 35 | } 36 | 37 | @Override 38 | public void onCreate() { 39 | super.onCreate(); 40 | SoLoader.init(this, /* native exopackage */ false); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /packages/MyAppMobile/index.android.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | AppRegistry, 10 | StyleSheet, 11 | Text, 12 | View 13 | } from 'react-native'; 14 | 15 | export default class MyAppMobile extends Component { 16 | render() { 17 | return ( 18 | 19 | 20 | Welcome to React Native! 21 | 22 | 23 | To get started, edit index.android.js 24 | 25 | 26 | Double tap R on your keyboard to reload,{'\n'} 27 | Shake or press menu button for dev menu 28 | 29 | 30 | ); 31 | } 32 | } 33 | 34 | const styles = StyleSheet.create({ 35 | container: { 36 | flex: 1, 37 | justifyContent: 'center', 38 | alignItems: 'center', 39 | backgroundColor: '#F5FCFF', 40 | }, 41 | welcome: { 42 | fontSize: 20, 43 | textAlign: 'center', 44 | margin: 10, 45 | }, 46 | instructions: { 47 | textAlign: 'center', 48 | color: '#333333', 49 | marginBottom: 5, 50 | }, 51 | }); 52 | 53 | AppRegistry.registerComponent('MyAppMobile', () => MyAppMobile); 54 | -------------------------------------------------------------------------------- /packages/MyAppMobile/index.ios.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | AppRegistry, 10 | StyleSheet, 11 | Text, 12 | View 13 | } from 'react-native'; 14 | import { background, } from 'shared' 15 | 16 | export default class MyAppMobile extends Component { 17 | render() { 18 | return ( 19 | 20 | 21 | Welcome to React Native! 22 | 23 | 24 | To get started, edit index.ios.js 25 | 26 | 27 | Press Cmd+R to reload,{'\n'} 28 | Cmd+D or shake for dev menu 29 | 30 | 31 | ); 32 | } 33 | } 34 | 35 | const styles = StyleSheet.create({ 36 | container: { 37 | flex: 1, 38 | justifyContent: 'center', 39 | alignItems: 'center', 40 | backgroundColor: '#F5FCFF', 41 | }, 42 | welcome: { 43 | fontSize: 20, 44 | textAlign: 'center', 45 | margin: 10, 46 | }, 47 | instructions: { 48 | textAlign: 'center', 49 | color: '#333333', 50 | marginBottom: 5, 51 | }, 52 | }); 53 | 54 | AppRegistry.registerComponent('MyAppMobile', () => MyAppMobile); 55 | -------------------------------------------------------------------------------- /packages/MyAppMobile/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | module.system=haste 26 | 27 | experimental.strict_type_args=true 28 | 29 | munge_underscores=true 30 | 31 | 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' 32 | 33 | suppress_type=$FlowIssue 34 | suppress_type=$FlowFixMe 35 | suppress_type=$FixMe 36 | 37 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-6]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 38 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-6]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 40 | 41 | unsafe.enable_getters_and_setters=true 42 | 43 | [version] 44 | ^0.36.0 45 | -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobile/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"MyAppMobile" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/BUCK: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'com.myappmobile', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'com.myappmobile', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobile/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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobileTests/MyAppMobileTests.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 MyAppMobileTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation MyAppMobileTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /packages/MyAppWeb/src/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # okhttp 54 | 55 | -keepattributes Signature 56 | -keepattributes *Annotation* 57 | -keep class okhttp3.** { *; } 58 | -keep interface okhttp3.** { *; } 59 | -dontwarn okhttp3.** 60 | 61 | # okio 62 | 63 | -keep class sun.misc.Unsafe { *; } 64 | -dontwarn java.nio.file.* 65 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 66 | -dontwarn okio.** 67 | -------------------------------------------------------------------------------- /packages/MyAppMobile/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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobile/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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobile.xcodeproj/xcshareddata/xcschemes/MyAppMobile.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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/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 | -------------------------------------------------------------------------------- /packages/MyAppMobile/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"] 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion "23.0.1" 88 | 89 | defaultConfig { 90 | applicationId "com.myappmobile" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile fileTree(dir: "libs", include: ["*.jar"]) 130 | compile "com.android.support:appcompat-v7:23.0.1" 131 | compile "com.facebook.react:react-native:+" // From node_modules 132 | } 133 | 134 | // Run this once to be able to run the application with BUCK 135 | // puts all compile dependencies into folder libs for BUCK to use 136 | task copyDownloadableDepsToLibs(type: Copy) { 137 | from configurations.compile 138 | into 'libs' 139 | } 140 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | ansi-escapes@^1.1.0: 6 | version "1.4.0" 7 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.0.0" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 12 | 13 | ansi-styles@^2.2.1: 14 | version "2.2.1" 15 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 16 | 17 | array-find-index@^1.0.1: 18 | version "1.0.2" 19 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 20 | 21 | array-from@^2.1.1: 22 | version "2.1.1" 23 | resolved "https://registry.yarnpkg.com/array-from/-/array-from-2.1.1.tgz#cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195" 24 | 25 | async@^1.5.0: 26 | version "1.5.2" 27 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 28 | 29 | balanced-match@^0.4.1: 30 | version "0.4.2" 31 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 32 | 33 | brace-expansion@^1.0.0: 34 | version "1.1.6" 35 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 36 | dependencies: 37 | balanced-match "^0.4.1" 38 | concat-map "0.0.1" 39 | 40 | builtin-modules@^1.0.0: 41 | version "1.1.1" 42 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 43 | 44 | camelcase-keys@^2.0.0: 45 | version "2.1.0" 46 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 47 | dependencies: 48 | camelcase "^2.0.0" 49 | map-obj "^1.0.0" 50 | 51 | camelcase@^2.0.0: 52 | version "2.1.1" 53 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 54 | 55 | chalk@^1.0.0, chalk@^1.1.1: 56 | version "1.1.3" 57 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 58 | dependencies: 59 | ansi-styles "^2.2.1" 60 | escape-string-regexp "^1.0.2" 61 | has-ansi "^2.0.0" 62 | strip-ansi "^3.0.0" 63 | supports-color "^2.0.0" 64 | 65 | cli-cursor@^1.0.1: 66 | version "1.0.2" 67 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 68 | dependencies: 69 | restore-cursor "^1.0.1" 70 | 71 | cli-width@^2.0.0: 72 | version "2.1.0" 73 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 74 | 75 | cmd-shim@^2.0.2: 76 | version "2.0.2" 77 | resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-2.0.2.tgz#6fcbda99483a8fd15d7d30a196ca69d688a2efdb" 78 | dependencies: 79 | graceful-fs "^4.1.2" 80 | mkdirp "~0.5.0" 81 | 82 | code-point-at@^1.0.0: 83 | version "1.1.0" 84 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 85 | 86 | command-join@^1.1.1: 87 | version "1.1.1" 88 | resolved "https://registry.yarnpkg.com/command-join/-/command-join-1.1.1.tgz#09e7609012e1dd8b4f0a14fde41a69eff1d2111f" 89 | dependencies: 90 | array-from "^2.1.1" 91 | repeat-string "^1.5.4" 92 | 93 | concat-map@0.0.1: 94 | version "0.0.1" 95 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 96 | 97 | cross-spawn@^4.0.0: 98 | version "4.0.2" 99 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 100 | dependencies: 101 | lru-cache "^4.0.1" 102 | which "^1.2.9" 103 | 104 | currently-unhandled@^0.4.1: 105 | version "0.4.1" 106 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 107 | dependencies: 108 | array-find-index "^1.0.1" 109 | 110 | decamelize@^1.1.2: 111 | version "1.2.0" 112 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 113 | 114 | error-ex@^1.2.0: 115 | version "1.3.0" 116 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 117 | dependencies: 118 | is-arrayish "^0.2.1" 119 | 120 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 121 | version "1.0.5" 122 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 123 | 124 | exit-hook@^1.0.0: 125 | version "1.1.1" 126 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 127 | 128 | figures@^1.3.5: 129 | version "1.7.0" 130 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 131 | dependencies: 132 | escape-string-regexp "^1.0.5" 133 | object-assign "^4.1.0" 134 | 135 | find-up@^1.0.0: 136 | version "1.1.2" 137 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 138 | dependencies: 139 | path-exists "^2.0.0" 140 | pinkie-promise "^2.0.0" 141 | 142 | fs.realpath@^1.0.0: 143 | version "1.0.0" 144 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 145 | 146 | get-stdin@^4.0.1: 147 | version "4.0.1" 148 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 149 | 150 | glob@^7.0.5, glob@^7.0.6: 151 | version "7.1.1" 152 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 153 | dependencies: 154 | fs.realpath "^1.0.0" 155 | inflight "^1.0.4" 156 | inherits "2" 157 | minimatch "^3.0.2" 158 | once "^1.3.0" 159 | path-is-absolute "^1.0.0" 160 | 161 | graceful-fs@^4.1.2: 162 | version "4.1.11" 163 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 164 | 165 | has-ansi@^2.0.0: 166 | version "2.0.0" 167 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 168 | dependencies: 169 | ansi-regex "^2.0.0" 170 | 171 | hosted-git-info@^2.1.4: 172 | version "2.1.5" 173 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 174 | 175 | indent-string@^2.1.0: 176 | version "2.1.0" 177 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 178 | dependencies: 179 | repeating "^2.0.0" 180 | 181 | inflight@^1.0.4: 182 | version "1.0.6" 183 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 184 | dependencies: 185 | once "^1.3.0" 186 | wrappy "1" 187 | 188 | inherits@2: 189 | version "2.0.3" 190 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 191 | 192 | inquirer@^0.12.0: 193 | version "0.12.0" 194 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 195 | dependencies: 196 | ansi-escapes "^1.1.0" 197 | ansi-regex "^2.0.0" 198 | chalk "^1.0.0" 199 | cli-cursor "^1.0.1" 200 | cli-width "^2.0.0" 201 | figures "^1.3.5" 202 | lodash "^4.3.0" 203 | readline2 "^1.0.1" 204 | run-async "^0.1.0" 205 | rx-lite "^3.1.2" 206 | string-width "^1.0.1" 207 | strip-ansi "^3.0.0" 208 | through "^2.3.6" 209 | 210 | is-arrayish@^0.2.1: 211 | version "0.2.1" 212 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 213 | 214 | is-builtin-module@^1.0.0: 215 | version "1.0.0" 216 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 217 | dependencies: 218 | builtin-modules "^1.0.0" 219 | 220 | is-finite@^1.0.0: 221 | version "1.0.2" 222 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 223 | dependencies: 224 | number-is-nan "^1.0.0" 225 | 226 | is-fullwidth-code-point@^1.0.0: 227 | version "1.0.0" 228 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 229 | dependencies: 230 | number-is-nan "^1.0.0" 231 | 232 | is-utf8@^0.2.0: 233 | version "0.2.1" 234 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 235 | 236 | isexe@^1.1.1: 237 | version "1.1.2" 238 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 239 | 240 | lerna@^2.0.0-beta.32: 241 | version "2.0.0-beta.32" 242 | resolved "https://registry.yarnpkg.com/lerna/-/lerna-2.0.0-beta.32.tgz#67d51b1520ce57a27b8445160726b48f6dba3f1c" 243 | dependencies: 244 | async "^1.5.0" 245 | chalk "^1.1.1" 246 | cmd-shim "^2.0.2" 247 | command-join "^1.1.1" 248 | cross-spawn "^4.0.0" 249 | glob "^7.0.6" 250 | inquirer "^0.12.0" 251 | lodash.find "^4.3.0" 252 | lodash.unionwith "^4.2.0" 253 | meow "^3.7.0" 254 | minimatch "^3.0.0" 255 | mkdirp "^0.5.1" 256 | normalize-path "^2.0.1" 257 | object-assign "^4.0.1" 258 | object-assign-sorted "^1.0.0" 259 | pad "^1.0.0" 260 | path-exists "^2.1.0" 261 | progress "^1.1.8" 262 | read-cmd-shim "^1.0.1" 263 | rimraf "^2.4.4" 264 | semver "^5.1.0" 265 | signal-exit "^2.1.2" 266 | sync-exec "^0.6.2" 267 | 268 | load-json-file@^1.0.0: 269 | version "1.1.0" 270 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 271 | dependencies: 272 | graceful-fs "^4.1.2" 273 | parse-json "^2.2.0" 274 | pify "^2.0.0" 275 | pinkie-promise "^2.0.0" 276 | strip-bom "^2.0.0" 277 | 278 | lodash.find@^4.3.0: 279 | version "4.6.0" 280 | resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1" 281 | 282 | lodash.unionwith@^4.2.0: 283 | version "4.6.0" 284 | resolved "https://registry.yarnpkg.com/lodash.unionwith/-/lodash.unionwith-4.6.0.tgz#74d140b5ca8146e6c643c3724f5152538d9ac1f0" 285 | 286 | lodash@^4.3.0: 287 | version "4.17.4" 288 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 289 | 290 | loud-rejection@^1.0.0: 291 | version "1.6.0" 292 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 293 | dependencies: 294 | currently-unhandled "^0.4.1" 295 | signal-exit "^3.0.0" 296 | 297 | lru-cache@^4.0.1: 298 | version "4.0.2" 299 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 300 | dependencies: 301 | pseudomap "^1.0.1" 302 | yallist "^2.0.0" 303 | 304 | map-obj@^1.0.0, map-obj@^1.0.1: 305 | version "1.0.1" 306 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 307 | 308 | meow@^3.7.0: 309 | version "3.7.0" 310 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 311 | dependencies: 312 | camelcase-keys "^2.0.0" 313 | decamelize "^1.1.2" 314 | loud-rejection "^1.0.0" 315 | map-obj "^1.0.1" 316 | minimist "^1.1.3" 317 | normalize-package-data "^2.3.4" 318 | object-assign "^4.0.1" 319 | read-pkg-up "^1.0.1" 320 | redent "^1.0.0" 321 | trim-newlines "^1.0.0" 322 | 323 | minimatch@^3.0.0, minimatch@^3.0.2: 324 | version "3.0.3" 325 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 326 | dependencies: 327 | brace-expansion "^1.0.0" 328 | 329 | minimist@0.0.8: 330 | version "0.0.8" 331 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 332 | 333 | minimist@^1.1.3: 334 | version "1.2.0" 335 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 336 | 337 | mkdirp@^0.5.1, mkdirp@~0.5.0: 338 | version "0.5.1" 339 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 340 | dependencies: 341 | minimist "0.0.8" 342 | 343 | mute-stream@0.0.5: 344 | version "0.0.5" 345 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 346 | 347 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 348 | version "2.3.5" 349 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 350 | dependencies: 351 | hosted-git-info "^2.1.4" 352 | is-builtin-module "^1.0.0" 353 | semver "2 || 3 || 4 || 5" 354 | validate-npm-package-license "^3.0.1" 355 | 356 | normalize-path@^2.0.1: 357 | version "2.0.1" 358 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 359 | 360 | number-is-nan@^1.0.0: 361 | version "1.0.1" 362 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 363 | 364 | object-assign-sorted@^1.0.0: 365 | version "1.0.0" 366 | resolved "https://registry.yarnpkg.com/object-assign-sorted/-/object-assign-sorted-1.0.0.tgz#e739f698164014ec1f050f38decabad1e9b228bf" 367 | dependencies: 368 | object-assign "^4.0.1" 369 | sorted-object "^2.0.0" 370 | 371 | object-assign@^4.0.1, object-assign@^4.1.0: 372 | version "4.1.0" 373 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 374 | 375 | once@^1.3.0: 376 | version "1.4.0" 377 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 378 | dependencies: 379 | wrappy "1" 380 | 381 | onetime@^1.0.0: 382 | version "1.1.0" 383 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 384 | 385 | pad@^1.0.0: 386 | version "1.0.2" 387 | resolved "https://registry.yarnpkg.com/pad/-/pad-1.0.2.tgz#f6e36ff3ceb468e4ae2ed33ad5ecf25ace920960" 388 | 389 | parse-json@^2.2.0: 390 | version "2.2.0" 391 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 392 | dependencies: 393 | error-ex "^1.2.0" 394 | 395 | path-exists@^2.0.0, path-exists@^2.1.0: 396 | version "2.1.0" 397 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 398 | dependencies: 399 | pinkie-promise "^2.0.0" 400 | 401 | path-is-absolute@^1.0.0: 402 | version "1.0.1" 403 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 404 | 405 | path-type@^1.0.0: 406 | version "1.1.0" 407 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 408 | dependencies: 409 | graceful-fs "^4.1.2" 410 | pify "^2.0.0" 411 | pinkie-promise "^2.0.0" 412 | 413 | pify@^2.0.0: 414 | version "2.3.0" 415 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 416 | 417 | pinkie-promise@^2.0.0: 418 | version "2.0.1" 419 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 420 | dependencies: 421 | pinkie "^2.0.0" 422 | 423 | pinkie@^2.0.0: 424 | version "2.0.4" 425 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 426 | 427 | progress@^1.1.8: 428 | version "1.1.8" 429 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 430 | 431 | pseudomap@^1.0.1: 432 | version "1.0.2" 433 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 434 | 435 | read-cmd-shim@^1.0.1: 436 | version "1.0.1" 437 | resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz#2d5d157786a37c055d22077c32c53f8329e91c7b" 438 | dependencies: 439 | graceful-fs "^4.1.2" 440 | 441 | read-pkg-up@^1.0.1: 442 | version "1.0.1" 443 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 444 | dependencies: 445 | find-up "^1.0.0" 446 | read-pkg "^1.0.0" 447 | 448 | read-pkg@^1.0.0: 449 | version "1.1.0" 450 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 451 | dependencies: 452 | load-json-file "^1.0.0" 453 | normalize-package-data "^2.3.2" 454 | path-type "^1.0.0" 455 | 456 | readline2@^1.0.1: 457 | version "1.0.1" 458 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 459 | dependencies: 460 | code-point-at "^1.0.0" 461 | is-fullwidth-code-point "^1.0.0" 462 | mute-stream "0.0.5" 463 | 464 | redent@^1.0.0: 465 | version "1.0.0" 466 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 467 | dependencies: 468 | indent-string "^2.1.0" 469 | strip-indent "^1.0.1" 470 | 471 | repeat-string@^1.5.4: 472 | version "1.6.1" 473 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 474 | 475 | repeating@^2.0.0: 476 | version "2.0.1" 477 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 478 | dependencies: 479 | is-finite "^1.0.0" 480 | 481 | restore-cursor@^1.0.1: 482 | version "1.0.1" 483 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 484 | dependencies: 485 | exit-hook "^1.0.0" 486 | onetime "^1.0.0" 487 | 488 | rimraf@^2.4.4: 489 | version "2.5.4" 490 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 491 | dependencies: 492 | glob "^7.0.5" 493 | 494 | run-async@^0.1.0: 495 | version "0.1.0" 496 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 497 | dependencies: 498 | once "^1.3.0" 499 | 500 | rx-lite@^3.1.2: 501 | version "3.1.2" 502 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 503 | 504 | "semver@2 || 3 || 4 || 5", semver@^5.1.0: 505 | version "5.3.0" 506 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 507 | 508 | signal-exit@^2.1.2: 509 | version "2.1.2" 510 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 511 | 512 | signal-exit@^3.0.0: 513 | version "3.0.2" 514 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 515 | 516 | sorted-object@^2.0.0: 517 | version "2.0.1" 518 | resolved "https://registry.yarnpkg.com/sorted-object/-/sorted-object-2.0.1.tgz#7d631f4bd3a798a24af1dffcfbfe83337a5df5fc" 519 | 520 | spdx-correct@~1.0.0: 521 | version "1.0.2" 522 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 523 | dependencies: 524 | spdx-license-ids "^1.0.2" 525 | 526 | spdx-expression-parse@~1.0.0: 527 | version "1.0.4" 528 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 529 | 530 | spdx-license-ids@^1.0.2: 531 | version "1.2.2" 532 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 533 | 534 | string-width@^1.0.1: 535 | version "1.0.2" 536 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 537 | dependencies: 538 | code-point-at "^1.0.0" 539 | is-fullwidth-code-point "^1.0.0" 540 | strip-ansi "^3.0.0" 541 | 542 | strip-ansi@^3.0.0: 543 | version "3.0.1" 544 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 545 | dependencies: 546 | ansi-regex "^2.0.0" 547 | 548 | strip-bom@^2.0.0: 549 | version "2.0.0" 550 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 551 | dependencies: 552 | is-utf8 "^0.2.0" 553 | 554 | strip-indent@^1.0.1: 555 | version "1.0.1" 556 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 557 | dependencies: 558 | get-stdin "^4.0.1" 559 | 560 | supports-color@^2.0.0: 561 | version "2.0.0" 562 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 563 | 564 | sync-exec@^0.6.2: 565 | version "0.6.2" 566 | resolved "https://registry.yarnpkg.com/sync-exec/-/sync-exec-0.6.2.tgz#717d22cc53f0ce1def5594362f3a89a2ebb91105" 567 | 568 | through@^2.3.6: 569 | version "2.3.8" 570 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 571 | 572 | trim-newlines@^1.0.0: 573 | version "1.0.0" 574 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 575 | 576 | validate-npm-package-license@^3.0.1: 577 | version "3.0.1" 578 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 579 | dependencies: 580 | spdx-correct "~1.0.0" 581 | spdx-expression-parse "~1.0.0" 582 | 583 | which@^1.2.9: 584 | version "1.2.12" 585 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 586 | dependencies: 587 | isexe "^1.1.1" 588 | 589 | wrappy@1: 590 | version "1.0.2" 591 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 592 | 593 | yallist@^2.0.0: 594 | version "2.0.0" 595 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" 596 | -------------------------------------------------------------------------------- /packages/MyAppMobile/ios/MyAppMobile.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 /* MyAppMobileTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* MyAppMobileTests.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 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 26 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 27 | /* End PBXBuildFile section */ 28 | 29 | /* Begin PBXContainerItemProxy section */ 30 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 33 | proxyType = 2; 34 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 35 | remoteInfo = RCTActionSheet; 36 | }; 37 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 38 | isa = PBXContainerItemProxy; 39 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 40 | proxyType = 2; 41 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 42 | remoteInfo = RCTGeolocation; 43 | }; 44 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 45 | isa = PBXContainerItemProxy; 46 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 47 | proxyType = 2; 48 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 49 | remoteInfo = RCTImage; 50 | }; 51 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 52 | isa = PBXContainerItemProxy; 53 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 54 | proxyType = 2; 55 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 56 | remoteInfo = RCTNetwork; 57 | }; 58 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 59 | isa = PBXContainerItemProxy; 60 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 61 | proxyType = 2; 62 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 63 | remoteInfo = RCTVibration; 64 | }; 65 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 66 | isa = PBXContainerItemProxy; 67 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 68 | proxyType = 1; 69 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 70 | remoteInfo = MyAppMobile; 71 | }; 72 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 73 | isa = PBXContainerItemProxy; 74 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 75 | proxyType = 2; 76 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 77 | remoteInfo = RCTSettings; 78 | }; 79 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 80 | isa = PBXContainerItemProxy; 81 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 82 | proxyType = 2; 83 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 84 | remoteInfo = RCTWebSocket; 85 | }; 86 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 87 | isa = PBXContainerItemProxy; 88 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 89 | proxyType = 2; 90 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 91 | remoteInfo = React; 92 | }; 93 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 94 | isa = PBXContainerItemProxy; 95 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 96 | proxyType = 2; 97 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 98 | remoteInfo = "RCTImage-tvOS"; 99 | }; 100 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 101 | isa = PBXContainerItemProxy; 102 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 103 | proxyType = 2; 104 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 105 | remoteInfo = "RCTLinking-tvOS"; 106 | }; 107 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 108 | isa = PBXContainerItemProxy; 109 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 110 | proxyType = 2; 111 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 112 | remoteInfo = "RCTNetwork-tvOS"; 113 | }; 114 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 115 | isa = PBXContainerItemProxy; 116 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 117 | proxyType = 2; 118 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 119 | remoteInfo = "RCTSettings-tvOS"; 120 | }; 121 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 122 | isa = PBXContainerItemProxy; 123 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 124 | proxyType = 2; 125 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 126 | remoteInfo = "RCTText-tvOS"; 127 | }; 128 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 129 | isa = PBXContainerItemProxy; 130 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 131 | proxyType = 2; 132 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 133 | remoteInfo = "RCTWebSocket-tvOS"; 134 | }; 135 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 136 | isa = PBXContainerItemProxy; 137 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 138 | proxyType = 2; 139 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 140 | remoteInfo = "React-tvOS"; 141 | }; 142 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 143 | isa = PBXContainerItemProxy; 144 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 145 | proxyType = 2; 146 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 147 | remoteInfo = yoga; 148 | }; 149 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 150 | isa = PBXContainerItemProxy; 151 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 152 | proxyType = 2; 153 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 154 | remoteInfo = "yoga-tvOS"; 155 | }; 156 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 157 | isa = PBXContainerItemProxy; 158 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 159 | proxyType = 2; 160 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 161 | remoteInfo = cxxreact; 162 | }; 163 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 164 | isa = PBXContainerItemProxy; 165 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 166 | proxyType = 2; 167 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 168 | remoteInfo = "cxxreact-tvOS"; 169 | }; 170 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 171 | isa = PBXContainerItemProxy; 172 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 173 | proxyType = 2; 174 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 175 | remoteInfo = jschelpers; 176 | }; 177 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 178 | isa = PBXContainerItemProxy; 179 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 180 | proxyType = 2; 181 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 182 | remoteInfo = "jschelpers-tvOS"; 183 | }; 184 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 185 | isa = PBXContainerItemProxy; 186 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 187 | proxyType = 2; 188 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 189 | remoteInfo = RCTAnimation; 190 | }; 191 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 192 | isa = PBXContainerItemProxy; 193 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 194 | proxyType = 2; 195 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 196 | remoteInfo = "RCTAnimation-tvOS"; 197 | }; 198 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 199 | isa = PBXContainerItemProxy; 200 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 201 | proxyType = 2; 202 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 203 | remoteInfo = RCTLinking; 204 | }; 205 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 206 | isa = PBXContainerItemProxy; 207 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 208 | proxyType = 2; 209 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 210 | remoteInfo = RCTText; 211 | }; 212 | /* End PBXContainerItemProxy section */ 213 | 214 | /* Begin PBXFileReference section */ 215 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 216 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 217 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 218 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 219 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 220 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 221 | 00E356EE1AD99517003FC87E /* MyAppMobileTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MyAppMobileTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 222 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 223 | 00E356F21AD99517003FC87E /* MyAppMobileTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyAppMobileTests.m; sourceTree = ""; }; 224 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 225 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 226 | 13B07F961A680F5B00A75B9A /* MyAppMobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MyAppMobile.app; sourceTree = BUILT_PRODUCTS_DIR; }; 227 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = MyAppMobile/AppDelegate.h; sourceTree = ""; }; 228 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = MyAppMobile/AppDelegate.m; sourceTree = ""; }; 229 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 230 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = MyAppMobile/Images.xcassets; sourceTree = ""; }; 231 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = MyAppMobile/Info.plist; sourceTree = ""; }; 232 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = MyAppMobile/main.m; sourceTree = ""; }; 233 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 234 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 235 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 236 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 237 | /* End PBXFileReference section */ 238 | 239 | /* Begin PBXFrameworksBuildPhase section */ 240 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 241 | isa = PBXFrameworksBuildPhase; 242 | buildActionMask = 2147483647; 243 | files = ( 244 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 245 | ); 246 | runOnlyForDeploymentPostprocessing = 0; 247 | }; 248 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 249 | isa = PBXFrameworksBuildPhase; 250 | buildActionMask = 2147483647; 251 | files = ( 252 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 253 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 254 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 255 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 256 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 257 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 258 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 259 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 260 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 261 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 262 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | }; 266 | /* End PBXFrameworksBuildPhase section */ 267 | 268 | /* Begin PBXGroup section */ 269 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 270 | isa = PBXGroup; 271 | children = ( 272 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 273 | ); 274 | name = Products; 275 | sourceTree = ""; 276 | }; 277 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 278 | isa = PBXGroup; 279 | children = ( 280 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 281 | ); 282 | name = Products; 283 | sourceTree = ""; 284 | }; 285 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 286 | isa = PBXGroup; 287 | children = ( 288 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 289 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 290 | ); 291 | name = Products; 292 | sourceTree = ""; 293 | }; 294 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 295 | isa = PBXGroup; 296 | children = ( 297 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 298 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 299 | ); 300 | name = Products; 301 | sourceTree = ""; 302 | }; 303 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 304 | isa = PBXGroup; 305 | children = ( 306 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 307 | ); 308 | name = Products; 309 | sourceTree = ""; 310 | }; 311 | 00E356EF1AD99517003FC87E /* MyAppMobileTests */ = { 312 | isa = PBXGroup; 313 | children = ( 314 | 00E356F21AD99517003FC87E /* MyAppMobileTests.m */, 315 | 00E356F01AD99517003FC87E /* Supporting Files */, 316 | ); 317 | path = MyAppMobileTests; 318 | sourceTree = ""; 319 | }; 320 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 321 | isa = PBXGroup; 322 | children = ( 323 | 00E356F11AD99517003FC87E /* Info.plist */, 324 | ); 325 | name = "Supporting Files"; 326 | sourceTree = ""; 327 | }; 328 | 139105B71AF99BAD00B5F7CC /* Products */ = { 329 | isa = PBXGroup; 330 | children = ( 331 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 332 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 333 | ); 334 | name = Products; 335 | sourceTree = ""; 336 | }; 337 | 139FDEE71B06529A00C62182 /* Products */ = { 338 | isa = PBXGroup; 339 | children = ( 340 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 341 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 342 | ); 343 | name = Products; 344 | sourceTree = ""; 345 | }; 346 | 13B07FAE1A68108700A75B9A /* MyAppMobile */ = { 347 | isa = PBXGroup; 348 | children = ( 349 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 350 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 351 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 352 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 353 | 13B07FB61A68108700A75B9A /* Info.plist */, 354 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 355 | 13B07FB71A68108700A75B9A /* main.m */, 356 | ); 357 | name = MyAppMobile; 358 | sourceTree = ""; 359 | }; 360 | 146834001AC3E56700842450 /* Products */ = { 361 | isa = PBXGroup; 362 | children = ( 363 | 146834041AC3E56700842450 /* libReact.a */, 364 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 365 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 366 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 367 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 368 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 369 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 370 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 371 | ); 372 | name = Products; 373 | sourceTree = ""; 374 | }; 375 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 376 | isa = PBXGroup; 377 | children = ( 378 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 379 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 380 | ); 381 | name = Products; 382 | sourceTree = ""; 383 | }; 384 | 78C398B11ACF4ADC00677621 /* Products */ = { 385 | isa = PBXGroup; 386 | children = ( 387 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 388 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 389 | ); 390 | name = Products; 391 | sourceTree = ""; 392 | }; 393 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 394 | isa = PBXGroup; 395 | children = ( 396 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 397 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 398 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 399 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 400 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 401 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 402 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 403 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 404 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 405 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 406 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 407 | ); 408 | name = Libraries; 409 | sourceTree = ""; 410 | }; 411 | 832341B11AAA6A8300B99B32 /* Products */ = { 412 | isa = PBXGroup; 413 | children = ( 414 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 415 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 416 | ); 417 | name = Products; 418 | sourceTree = ""; 419 | }; 420 | 83CBB9F61A601CBA00E9B192 = { 421 | isa = PBXGroup; 422 | children = ( 423 | 13B07FAE1A68108700A75B9A /* MyAppMobile */, 424 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 425 | 00E356EF1AD99517003FC87E /* MyAppMobileTests */, 426 | 83CBBA001A601CBA00E9B192 /* Products */, 427 | ); 428 | indentWidth = 2; 429 | sourceTree = ""; 430 | tabWidth = 2; 431 | }; 432 | 83CBBA001A601CBA00E9B192 /* Products */ = { 433 | isa = PBXGroup; 434 | children = ( 435 | 13B07F961A680F5B00A75B9A /* MyAppMobile.app */, 436 | 00E356EE1AD99517003FC87E /* MyAppMobileTests.xctest */, 437 | ); 438 | name = Products; 439 | sourceTree = ""; 440 | }; 441 | /* End PBXGroup section */ 442 | 443 | /* Begin PBXNativeTarget section */ 444 | 00E356ED1AD99517003FC87E /* MyAppMobileTests */ = { 445 | isa = PBXNativeTarget; 446 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MyAppMobileTests" */; 447 | buildPhases = ( 448 | 00E356EA1AD99517003FC87E /* Sources */, 449 | 00E356EB1AD99517003FC87E /* Frameworks */, 450 | 00E356EC1AD99517003FC87E /* Resources */, 451 | ); 452 | buildRules = ( 453 | ); 454 | dependencies = ( 455 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 456 | ); 457 | name = MyAppMobileTests; 458 | productName = MyAppMobileTests; 459 | productReference = 00E356EE1AD99517003FC87E /* MyAppMobileTests.xctest */; 460 | productType = "com.apple.product-type.bundle.unit-test"; 461 | }; 462 | 13B07F861A680F5B00A75B9A /* MyAppMobile */ = { 463 | isa = PBXNativeTarget; 464 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MyAppMobile" */; 465 | buildPhases = ( 466 | 13B07F871A680F5B00A75B9A /* Sources */, 467 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 468 | 13B07F8E1A680F5B00A75B9A /* Resources */, 469 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 470 | ); 471 | buildRules = ( 472 | ); 473 | dependencies = ( 474 | ); 475 | name = MyAppMobile; 476 | productName = "Hello World"; 477 | productReference = 13B07F961A680F5B00A75B9A /* MyAppMobile.app */; 478 | productType = "com.apple.product-type.application"; 479 | }; 480 | /* End PBXNativeTarget section */ 481 | 482 | /* Begin PBXProject section */ 483 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 484 | isa = PBXProject; 485 | attributes = { 486 | LastUpgradeCheck = 0610; 487 | ORGANIZATIONNAME = Facebook; 488 | TargetAttributes = { 489 | 00E356ED1AD99517003FC87E = { 490 | CreatedOnToolsVersion = 6.2; 491 | TestTargetID = 13B07F861A680F5B00A75B9A; 492 | }; 493 | }; 494 | }; 495 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MyAppMobile" */; 496 | compatibilityVersion = "Xcode 3.2"; 497 | developmentRegion = English; 498 | hasScannedForEncodings = 0; 499 | knownRegions = ( 500 | en, 501 | Base, 502 | ); 503 | mainGroup = 83CBB9F61A601CBA00E9B192; 504 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 505 | projectDirPath = ""; 506 | projectReferences = ( 507 | { 508 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 509 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 510 | }, 511 | { 512 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 513 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 514 | }, 515 | { 516 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 517 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 518 | }, 519 | { 520 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 521 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 522 | }, 523 | { 524 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 525 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 526 | }, 527 | { 528 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 529 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 530 | }, 531 | { 532 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 533 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 534 | }, 535 | { 536 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 537 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 538 | }, 539 | { 540 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 541 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 542 | }, 543 | { 544 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 545 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 546 | }, 547 | { 548 | ProductGroup = 146834001AC3E56700842450 /* Products */; 549 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 550 | }, 551 | ); 552 | projectRoot = ""; 553 | targets = ( 554 | 13B07F861A680F5B00A75B9A /* MyAppMobile */, 555 | 00E356ED1AD99517003FC87E /* MyAppMobileTests */, 556 | ); 557 | }; 558 | /* End PBXProject section */ 559 | 560 | /* Begin PBXReferenceProxy section */ 561 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 562 | isa = PBXReferenceProxy; 563 | fileType = archive.ar; 564 | path = libRCTActionSheet.a; 565 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 566 | sourceTree = BUILT_PRODUCTS_DIR; 567 | }; 568 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 569 | isa = PBXReferenceProxy; 570 | fileType = archive.ar; 571 | path = libRCTGeolocation.a; 572 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 573 | sourceTree = BUILT_PRODUCTS_DIR; 574 | }; 575 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 576 | isa = PBXReferenceProxy; 577 | fileType = archive.ar; 578 | path = libRCTImage.a; 579 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 580 | sourceTree = BUILT_PRODUCTS_DIR; 581 | }; 582 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 583 | isa = PBXReferenceProxy; 584 | fileType = archive.ar; 585 | path = libRCTNetwork.a; 586 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 587 | sourceTree = BUILT_PRODUCTS_DIR; 588 | }; 589 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 590 | isa = PBXReferenceProxy; 591 | fileType = archive.ar; 592 | path = libRCTVibration.a; 593 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 594 | sourceTree = BUILT_PRODUCTS_DIR; 595 | }; 596 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 597 | isa = PBXReferenceProxy; 598 | fileType = archive.ar; 599 | path = libRCTSettings.a; 600 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 601 | sourceTree = BUILT_PRODUCTS_DIR; 602 | }; 603 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 604 | isa = PBXReferenceProxy; 605 | fileType = archive.ar; 606 | path = libRCTWebSocket.a; 607 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 608 | sourceTree = BUILT_PRODUCTS_DIR; 609 | }; 610 | 146834041AC3E56700842450 /* libReact.a */ = { 611 | isa = PBXReferenceProxy; 612 | fileType = archive.ar; 613 | path = libReact.a; 614 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 615 | sourceTree = BUILT_PRODUCTS_DIR; 616 | }; 617 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 618 | isa = PBXReferenceProxy; 619 | fileType = archive.ar; 620 | path = "libRCTImage-tvOS.a"; 621 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 622 | sourceTree = BUILT_PRODUCTS_DIR; 623 | }; 624 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 625 | isa = PBXReferenceProxy; 626 | fileType = archive.ar; 627 | path = "libRCTLinking-tvOS.a"; 628 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 629 | sourceTree = BUILT_PRODUCTS_DIR; 630 | }; 631 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 632 | isa = PBXReferenceProxy; 633 | fileType = archive.ar; 634 | path = "libRCTNetwork-tvOS.a"; 635 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 636 | sourceTree = BUILT_PRODUCTS_DIR; 637 | }; 638 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 639 | isa = PBXReferenceProxy; 640 | fileType = archive.ar; 641 | path = "libRCTSettings-tvOS.a"; 642 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 643 | sourceTree = BUILT_PRODUCTS_DIR; 644 | }; 645 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 646 | isa = PBXReferenceProxy; 647 | fileType = archive.ar; 648 | path = "libRCTText-tvOS.a"; 649 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 650 | sourceTree = BUILT_PRODUCTS_DIR; 651 | }; 652 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 653 | isa = PBXReferenceProxy; 654 | fileType = archive.ar; 655 | path = "libRCTWebSocket-tvOS.a"; 656 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 657 | sourceTree = BUILT_PRODUCTS_DIR; 658 | }; 659 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 660 | isa = PBXReferenceProxy; 661 | fileType = archive.ar; 662 | path = libReact.a; 663 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 664 | sourceTree = BUILT_PRODUCTS_DIR; 665 | }; 666 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 667 | isa = PBXReferenceProxy; 668 | fileType = archive.ar; 669 | path = libyoga.a; 670 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 671 | sourceTree = BUILT_PRODUCTS_DIR; 672 | }; 673 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 674 | isa = PBXReferenceProxy; 675 | fileType = archive.ar; 676 | path = libyoga.a; 677 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 678 | sourceTree = BUILT_PRODUCTS_DIR; 679 | }; 680 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 681 | isa = PBXReferenceProxy; 682 | fileType = archive.ar; 683 | path = libcxxreact.a; 684 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 685 | sourceTree = BUILT_PRODUCTS_DIR; 686 | }; 687 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 688 | isa = PBXReferenceProxy; 689 | fileType = archive.ar; 690 | path = libcxxreact.a; 691 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 692 | sourceTree = BUILT_PRODUCTS_DIR; 693 | }; 694 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 695 | isa = PBXReferenceProxy; 696 | fileType = archive.ar; 697 | path = libjschelpers.a; 698 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 699 | sourceTree = BUILT_PRODUCTS_DIR; 700 | }; 701 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 702 | isa = PBXReferenceProxy; 703 | fileType = archive.ar; 704 | path = libjschelpers.a; 705 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 706 | sourceTree = BUILT_PRODUCTS_DIR; 707 | }; 708 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 709 | isa = PBXReferenceProxy; 710 | fileType = archive.ar; 711 | path = libRCTAnimation.a; 712 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 713 | sourceTree = BUILT_PRODUCTS_DIR; 714 | }; 715 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 716 | isa = PBXReferenceProxy; 717 | fileType = archive.ar; 718 | path = "libRCTAnimation-tvOS.a"; 719 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 720 | sourceTree = BUILT_PRODUCTS_DIR; 721 | }; 722 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 723 | isa = PBXReferenceProxy; 724 | fileType = archive.ar; 725 | path = libRCTLinking.a; 726 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 727 | sourceTree = BUILT_PRODUCTS_DIR; 728 | }; 729 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 730 | isa = PBXReferenceProxy; 731 | fileType = archive.ar; 732 | path = libRCTText.a; 733 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 734 | sourceTree = BUILT_PRODUCTS_DIR; 735 | }; 736 | /* End PBXReferenceProxy section */ 737 | 738 | /* Begin PBXResourcesBuildPhase section */ 739 | 00E356EC1AD99517003FC87E /* Resources */ = { 740 | isa = PBXResourcesBuildPhase; 741 | buildActionMask = 2147483647; 742 | files = ( 743 | ); 744 | runOnlyForDeploymentPostprocessing = 0; 745 | }; 746 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 747 | isa = PBXResourcesBuildPhase; 748 | buildActionMask = 2147483647; 749 | files = ( 750 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 751 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 752 | ); 753 | runOnlyForDeploymentPostprocessing = 0; 754 | }; 755 | /* End PBXResourcesBuildPhase section */ 756 | 757 | /* Begin PBXShellScriptBuildPhase section */ 758 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 759 | isa = PBXShellScriptBuildPhase; 760 | buildActionMask = 2147483647; 761 | files = ( 762 | ); 763 | inputPaths = ( 764 | ); 765 | name = "Bundle React Native code and images"; 766 | outputPaths = ( 767 | ); 768 | runOnlyForDeploymentPostprocessing = 0; 769 | shellPath = /bin/sh; 770 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 771 | }; 772 | /* End PBXShellScriptBuildPhase section */ 773 | 774 | /* Begin PBXSourcesBuildPhase section */ 775 | 00E356EA1AD99517003FC87E /* Sources */ = { 776 | isa = PBXSourcesBuildPhase; 777 | buildActionMask = 2147483647; 778 | files = ( 779 | 00E356F31AD99517003FC87E /* MyAppMobileTests.m in Sources */, 780 | ); 781 | runOnlyForDeploymentPostprocessing = 0; 782 | }; 783 | 13B07F871A680F5B00A75B9A /* Sources */ = { 784 | isa = PBXSourcesBuildPhase; 785 | buildActionMask = 2147483647; 786 | files = ( 787 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 788 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 789 | ); 790 | runOnlyForDeploymentPostprocessing = 0; 791 | }; 792 | /* End PBXSourcesBuildPhase section */ 793 | 794 | /* Begin PBXTargetDependency section */ 795 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 796 | isa = PBXTargetDependency; 797 | target = 13B07F861A680F5B00A75B9A /* MyAppMobile */; 798 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 799 | }; 800 | /* End PBXTargetDependency section */ 801 | 802 | /* Begin PBXVariantGroup section */ 803 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 804 | isa = PBXVariantGroup; 805 | children = ( 806 | 13B07FB21A68108700A75B9A /* Base */, 807 | ); 808 | name = LaunchScreen.xib; 809 | path = MyAppMobile; 810 | sourceTree = ""; 811 | }; 812 | /* End PBXVariantGroup section */ 813 | 814 | /* Begin XCBuildConfiguration section */ 815 | 00E356F61AD99517003FC87E /* Debug */ = { 816 | isa = XCBuildConfiguration; 817 | buildSettings = { 818 | BUNDLE_LOADER = "$(TEST_HOST)"; 819 | GCC_PREPROCESSOR_DEFINITIONS = ( 820 | "DEBUG=1", 821 | "$(inherited)", 822 | ); 823 | INFOPLIST_FILE = MyAppMobileTests/Info.plist; 824 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 825 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 826 | PRODUCT_NAME = "$(TARGET_NAME)"; 827 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MyAppMobile.app/MyAppMobile"; 828 | }; 829 | name = Debug; 830 | }; 831 | 00E356F71AD99517003FC87E /* Release */ = { 832 | isa = XCBuildConfiguration; 833 | buildSettings = { 834 | BUNDLE_LOADER = "$(TEST_HOST)"; 835 | COPY_PHASE_STRIP = NO; 836 | INFOPLIST_FILE = MyAppMobileTests/Info.plist; 837 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 838 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 839 | PRODUCT_NAME = "$(TARGET_NAME)"; 840 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MyAppMobile.app/MyAppMobile"; 841 | }; 842 | name = Release; 843 | }; 844 | 13B07F941A680F5B00A75B9A /* Debug */ = { 845 | isa = XCBuildConfiguration; 846 | buildSettings = { 847 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 848 | CURRENT_PROJECT_VERSION = 1; 849 | DEAD_CODE_STRIPPING = NO; 850 | INFOPLIST_FILE = MyAppMobile/Info.plist; 851 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 852 | OTHER_LDFLAGS = ( 853 | "$(inherited)", 854 | "-ObjC", 855 | "-lc++", 856 | ); 857 | PRODUCT_NAME = MyAppMobile; 858 | VERSIONING_SYSTEM = "apple-generic"; 859 | }; 860 | name = Debug; 861 | }; 862 | 13B07F951A680F5B00A75B9A /* Release */ = { 863 | isa = XCBuildConfiguration; 864 | buildSettings = { 865 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 866 | CURRENT_PROJECT_VERSION = 1; 867 | INFOPLIST_FILE = MyAppMobile/Info.plist; 868 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 869 | OTHER_LDFLAGS = ( 870 | "$(inherited)", 871 | "-ObjC", 872 | "-lc++", 873 | ); 874 | PRODUCT_NAME = MyAppMobile; 875 | VERSIONING_SYSTEM = "apple-generic"; 876 | }; 877 | name = Release; 878 | }; 879 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 880 | isa = XCBuildConfiguration; 881 | buildSettings = { 882 | ALWAYS_SEARCH_USER_PATHS = NO; 883 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 884 | CLANG_CXX_LIBRARY = "libc++"; 885 | CLANG_ENABLE_MODULES = YES; 886 | CLANG_ENABLE_OBJC_ARC = YES; 887 | CLANG_WARN_BOOL_CONVERSION = YES; 888 | CLANG_WARN_CONSTANT_CONVERSION = YES; 889 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 890 | CLANG_WARN_EMPTY_BODY = YES; 891 | CLANG_WARN_ENUM_CONVERSION = YES; 892 | CLANG_WARN_INT_CONVERSION = YES; 893 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 894 | CLANG_WARN_UNREACHABLE_CODE = YES; 895 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 896 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 897 | COPY_PHASE_STRIP = NO; 898 | ENABLE_STRICT_OBJC_MSGSEND = YES; 899 | GCC_C_LANGUAGE_STANDARD = gnu99; 900 | GCC_DYNAMIC_NO_PIC = NO; 901 | GCC_OPTIMIZATION_LEVEL = 0; 902 | GCC_PREPROCESSOR_DEFINITIONS = ( 903 | "DEBUG=1", 904 | "$(inherited)", 905 | ); 906 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 907 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 908 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 909 | GCC_WARN_UNDECLARED_SELECTOR = YES; 910 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 911 | GCC_WARN_UNUSED_FUNCTION = YES; 912 | GCC_WARN_UNUSED_VARIABLE = YES; 913 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 914 | MTL_ENABLE_DEBUG_INFO = YES; 915 | ONLY_ACTIVE_ARCH = YES; 916 | SDKROOT = iphoneos; 917 | }; 918 | name = Debug; 919 | }; 920 | 83CBBA211A601CBA00E9B192 /* Release */ = { 921 | isa = XCBuildConfiguration; 922 | buildSettings = { 923 | ALWAYS_SEARCH_USER_PATHS = NO; 924 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 925 | CLANG_CXX_LIBRARY = "libc++"; 926 | CLANG_ENABLE_MODULES = YES; 927 | CLANG_ENABLE_OBJC_ARC = YES; 928 | CLANG_WARN_BOOL_CONVERSION = YES; 929 | CLANG_WARN_CONSTANT_CONVERSION = YES; 930 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 931 | CLANG_WARN_EMPTY_BODY = YES; 932 | CLANG_WARN_ENUM_CONVERSION = YES; 933 | CLANG_WARN_INT_CONVERSION = YES; 934 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 935 | CLANG_WARN_UNREACHABLE_CODE = YES; 936 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 937 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 938 | COPY_PHASE_STRIP = YES; 939 | ENABLE_NS_ASSERTIONS = NO; 940 | ENABLE_STRICT_OBJC_MSGSEND = YES; 941 | GCC_C_LANGUAGE_STANDARD = gnu99; 942 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 943 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 944 | GCC_WARN_UNDECLARED_SELECTOR = YES; 945 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 946 | GCC_WARN_UNUSED_FUNCTION = YES; 947 | GCC_WARN_UNUSED_VARIABLE = YES; 948 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 949 | MTL_ENABLE_DEBUG_INFO = NO; 950 | SDKROOT = iphoneos; 951 | VALIDATE_PRODUCT = YES; 952 | }; 953 | name = Release; 954 | }; 955 | /* End XCBuildConfiguration section */ 956 | 957 | /* Begin XCConfigurationList section */ 958 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MyAppMobileTests" */ = { 959 | isa = XCConfigurationList; 960 | buildConfigurations = ( 961 | 00E356F61AD99517003FC87E /* Debug */, 962 | 00E356F71AD99517003FC87E /* Release */, 963 | ); 964 | defaultConfigurationIsVisible = 0; 965 | defaultConfigurationName = Release; 966 | }; 967 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MyAppMobile" */ = { 968 | isa = XCConfigurationList; 969 | buildConfigurations = ( 970 | 13B07F941A680F5B00A75B9A /* Debug */, 971 | 13B07F951A680F5B00A75B9A /* Release */, 972 | ); 973 | defaultConfigurationIsVisible = 0; 974 | defaultConfigurationName = Release; 975 | }; 976 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MyAppMobile" */ = { 977 | isa = XCConfigurationList; 978 | buildConfigurations = ( 979 | 83CBBA201A601CBA00E9B192 /* Debug */, 980 | 83CBBA211A601CBA00E9B192 /* Release */, 981 | ); 982 | defaultConfigurationIsVisible = 0; 983 | defaultConfigurationName = Release; 984 | }; 985 | /* End XCConfigurationList section */ 986 | }; 987 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 988 | } 989 | -------------------------------------------------------------------------------- /packages/MyAppWeb/README.md: -------------------------------------------------------------------------------- 1 | This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app). 2 | 3 | Below you will find some information on how to perform common tasks.
4 | You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md). 5 | 6 | ## Table of Contents 7 | 8 | - [Updating to New Releases](#updating-to-new-releases) 9 | - [Sending Feedback](#sending-feedback) 10 | - [Folder Structure](#folder-structure) 11 | - [Available Scripts](#available-scripts) 12 | - [npm start](#npm-start) 13 | - [npm test](#npm-test) 14 | - [npm run build](#npm-run-build) 15 | - [npm run eject](#npm-run-eject) 16 | - [Syntax Highlighting in the Editor](#syntax-highlighting-in-the-editor) 17 | - [Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor) 18 | - [Installing a Dependency](#installing-a-dependency) 19 | - [Importing a Component](#importing-a-component) 20 | - [Adding a Stylesheet](#adding-a-stylesheet) 21 | - [Post-Processing CSS](#post-processing-css) 22 | - [Adding Images and Fonts](#adding-images-and-fonts) 23 | - [Using the `public` Folder](#using-the-public-folder) 24 | - [Using Global Variables](#using-global-variables) 25 | - [Adding Bootstrap](#adding-bootstrap) 26 | - [Adding Flow](#adding-flow) 27 | - [Adding Custom Environment Variables](#adding-custom-environment-variables) 28 | - [Can I Use Decorators?](#can-i-use-decorators) 29 | - [Integrating with a Node Backend](#integrating-with-a-node-backend) 30 | - [Proxying API Requests in Development](#proxying-api-requests-in-development) 31 | - [Using HTTPS in Development](#using-https-in-development) 32 | - [Generating Dynamic `` Tags on the Server](#generating-dynamic-meta-tags-on-the-server) 33 | - [Running Tests](#running-tests) 34 | - [Filename Conventions](#filename-conventions) 35 | - [Command Line Interface](#command-line-interface) 36 | - [Version Control Integration](#version-control-integration) 37 | - [Writing Tests](#writing-tests) 38 | - [Testing Components](#testing-components) 39 | - [Using Third Party Assertion Libraries](#using-third-party-assertion-libraries) 40 | - [Initializing Test Environment](#initializing-test-environment) 41 | - [Focusing and Excluding Tests](#focusing-and-excluding-tests) 42 | - [Coverage Reporting](#coverage-reporting) 43 | - [Continuous Integration](#continuous-integration) 44 | - [Disabling jsdom](#disabling-jsdom) 45 | - [Experimental Snapshot Testing](#experimental-snapshot-testing) 46 | - [Editor Integration](#editor-integration) 47 | - [Developing Components in Isolation](#developing-components-in-isolation) 48 | - [Making a Progressive Web App](#making-a-progressive-web-app) 49 | - [Deployment](#deployment) 50 | - [Serving Apps with Client-Side Routing](#serving-apps-with-client-side-routing) 51 | - [Building for Relative Paths](#building-for-relative-paths) 52 | - [Firebase](#firebase) 53 | - [GitHub Pages](#github-pages) 54 | - [Heroku](#heroku) 55 | - [Modulus](#modulus) 56 | - [Netlify](#netlify) 57 | - [Now](#now) 58 | - [S3 and CloudFront](#s3-and-cloudfront) 59 | - [Surge](#surge) 60 | - [Troubleshooting](#troubleshooting) 61 | - [`npm test` hangs on macOS Sierra](#npm-test-hangs-on-macos-sierra) 62 | - [`npm run build` silently fails](#npm-run-build-silently-fails) 63 | - [Something Missing?](#something-missing) 64 | 65 | ## Updating to New Releases 66 | 67 | Create React App is divided into two packages: 68 | 69 | * `create-react-app` is a global command-line utility that you use to create new projects. 70 | * `react-scripts` is a development dependency in the generated projects (including this one). 71 | 72 | You almost never need to update `create-react-app` itself: it delegates all the setup to `react-scripts`. 73 | 74 | When you run `create-react-app`, it always creates the project with the latest version of `react-scripts` so you’ll get all the new features and improvements in newly created apps automatically. 75 | 76 | To update an existing project to a new version of `react-scripts`, [open the changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md), find the version you’re currently on (check `package.json` in this folder if you’re not sure), and apply the migration instructions for the newer versions. 77 | 78 | In most cases bumping the `react-scripts` version in `package.json` and running `npm install` in this folder should be enough, but it’s good to consult the [changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md) for potential breaking changes. 79 | 80 | We commit to keeping the breaking changes minimal so you can upgrade `react-scripts` painlessly. 81 | 82 | ## Sending Feedback 83 | 84 | We are always open to [your feedback](https://github.com/facebookincubator/create-react-app/issues). 85 | 86 | ## Folder Structure 87 | 88 | After creation, your project should look like this: 89 | 90 | ``` 91 | my-app/ 92 | README.md 93 | node_modules/ 94 | package.json 95 | public/ 96 | index.html 97 | favicon.ico 98 | src/ 99 | App.css 100 | App.js 101 | App.test.js 102 | index.css 103 | index.js 104 | logo.svg 105 | ``` 106 | 107 | For the project to build, **these files must exist with exact filenames**: 108 | 109 | * `public/index.html` is the page template; 110 | * `src/index.js` is the JavaScript entry point. 111 | 112 | You can delete or rename the other files. 113 | 114 | You may create subdirectories inside `src`. For faster rebuilds, only files inside `src` are processed by Webpack.
115 | You need to **put any JS and CSS files inside `src`**, or Webpack won’t see them. 116 | 117 | Only files inside `public` can be used from `public/index.html`.
118 | Read instructions below for using assets from JavaScript and HTML. 119 | 120 | You can, however, create more top-level directories.
121 | They will not be included in the production build so you can use them for things like documentation. 122 | 123 | ## Available Scripts 124 | 125 | In the project directory, you can run: 126 | 127 | ### `npm start` 128 | 129 | Runs the app in the development mode.
130 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 131 | 132 | The page will reload if you make edits.
133 | You will also see any lint errors in the console. 134 | 135 | ### `npm test` 136 | 137 | Launches the test runner in the interactive watch mode.
138 | See the section about [running tests](#running-tests) for more information. 139 | 140 | ### `npm run build` 141 | 142 | Builds the app for production to the `build` folder.
143 | It correctly bundles React in production mode and optimizes the build for the best performance. 144 | 145 | The build is minified and the filenames include the hashes.
146 | Your app is ready to be deployed! 147 | 148 | See the section about [deployment](#deployment) for more information. 149 | 150 | ### `npm run eject` 151 | 152 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 153 | 154 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 155 | 156 | Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 157 | 158 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 159 | 160 | ## Syntax Highlighting in the Editor 161 | 162 | To configure the syntax highlighting in your favorite text editor, head to the [Babel's docs](https://babeljs.io/docs/editors) and follow the instructions. Some of the most popular editors are covered. 163 | 164 | ## Displaying Lint Output in the Editor 165 | 166 | >Note: this feature is available with `react-scripts@0.2.0` and higher. 167 | 168 | Some editors, including Sublime Text, Atom, and Visual Studio Code, provide plugins for ESLint. 169 | 170 | They are not required for linting. You should see the linter output right in your terminal as well as the browser console. However, if you prefer the lint results to appear right in your editor, there are some extra steps you can do. 171 | 172 | You would need to install an ESLint plugin for your editor first. 173 | 174 | >**A note for Atom `linter-eslint` users** 175 | 176 | >If you are using the Atom `linter-eslint` plugin, make sure that **Use global ESLint installation** option is checked: 177 | 178 | > 179 | 180 | Then add this block to the `package.json` file of your project: 181 | 182 | ```js 183 | { 184 | // ... 185 | "eslintConfig": { 186 | "extends": "react-app" 187 | } 188 | } 189 | ``` 190 | 191 | Finally, you will need to install some packages *globally*: 192 | 193 | ```sh 194 | npm install -g eslint-config-react-app@0.3.0 eslint@3.8.1 babel-eslint@7.0.0 eslint-plugin-react@6.4.1 eslint-plugin-import@2.0.1 eslint-plugin-jsx-a11y@2.2.3 eslint-plugin-flowtype@2.21.0 195 | ``` 196 | 197 | We recognize that this is suboptimal, but it is currently required due to the way we hide the ESLint dependency. The ESLint team is already [working on a solution to this](https://github.com/eslint/eslint/issues/3458) so this may become unnecessary in a couple of months. 198 | 199 | ## Installing a Dependency 200 | 201 | The generated project includes React and ReactDOM as dependencies. It also includes a set of scripts used by Create React App as a development dependency. You may install other dependencies (for example, React Router) with `npm`: 202 | 203 | ``` 204 | npm install --save 205 | ``` 206 | 207 | ## Importing a Component 208 | 209 | This project setup supports ES6 modules thanks to Babel.
210 | While you can still use `require()` and `module.exports`, we encourage you to use [`import` and `export`](http://exploringjs.com/es6/ch_modules.html) instead. 211 | 212 | For example: 213 | 214 | ### `Button.js` 215 | 216 | ```js 217 | import React, { Component } from 'react'; 218 | 219 | class Button extends Component { 220 | render() { 221 | // ... 222 | } 223 | } 224 | 225 | export default Button; // Don’t forget to use export default! 226 | ``` 227 | 228 | ### `DangerButton.js` 229 | 230 | 231 | ```js 232 | import React, { Component } from 'react'; 233 | import Button from './Button'; // Import a component from another file 234 | 235 | class DangerButton extends Component { 236 | render() { 237 | return