├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── multilanguage │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── multiLanguage-tvOS │ └── Info.plist ├── multiLanguage-tvOSTests │ └── Info.plist ├── multiLanguage.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── multiLanguage-tvOS.xcscheme │ │ └── multiLanguage.xcscheme ├── multiLanguage │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── multiLanguageTests │ ├── Info.plist │ └── multiLanguageTests.m ├── metro.config.js ├── package.json ├── src └── translations │ ├── ar.json │ ├── en.json │ └── fr.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | 28 | [options] 29 | emoji=true 30 | 31 | esproposal.optional_chaining=enable 32 | esproposal.nullish_coalescing=enable 33 | 34 | module.system=haste 35 | module.system.haste.use_name_reducers=true 36 | # get basename 37 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1' 38 | # strip .js or .js.flow suffix 39 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1' 40 | # strip .ios suffix 41 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1' 42 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1' 43 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1' 44 | module.system.haste.paths.blacklist=.*/__tests__/.* 45 | module.system.haste.paths.blacklist=.*/__mocks__/.* 46 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.* 47 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.* 48 | 49 | munge_underscores=true 50 | 51 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 52 | 53 | module.file_ext=.js 54 | module.file_ext=.jsx 55 | module.file_ext=.json 56 | module.file_ext=.native.js 57 | 58 | suppress_type=$FlowIssue 59 | suppress_type=$FlowFixMe 60 | suppress_type=$FlowFixMeProps 61 | suppress_type=$FlowFixMeState 62 | 63 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 64 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 65 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 66 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 67 | 68 | [version] 69 | ^0.92.0 70 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable react/prop-types */ 2 | /* eslint-disable no-use-before-define */ 3 | /* eslint-disable global-require */ 4 | import React from 'react'; 5 | import * as RNLocalize from 'react-native-localize'; 6 | import i18n from 'i18n-js'; 7 | import memoize from 'lodash.memoize'; 8 | 9 | import { I18nManager, SafeAreaView, StyleSheet, Text } from 'react-native'; 10 | 11 | const translationGetters = { 12 | // lazy requires (metro bundler does not support symlinks) 13 | en: () => require('./src/translations/en.json'), 14 | ar: () => require('./src/translations/ar.json'), 15 | fr: () => require('./src/translations/fr.json'), 16 | }; 17 | 18 | const translate = memoize( 19 | (key, config) => i18n.t(key, config), 20 | (key, config) => (config ? key + JSON.stringify(config) : key) 21 | ); 22 | 23 | const setI18nConfig = () => { 24 | // fallback if no available language fits 25 | const fallback = { languageTag: 'en', isRTL: false }; 26 | 27 | const { languageTag, isRTL } = RNLocalize.findBestAvailableLanguage(Object.keys(translationGetters)) || fallback; 28 | 29 | // clear translation cache 30 | translate.cache.clear(); 31 | // update layout direction 32 | I18nManager.forceRTL(isRTL); 33 | // set i18n-js config 34 | i18n.translations = { [languageTag]: translationGetters[languageTag]() }; 35 | i18n.locale = languageTag; 36 | }; 37 | 38 | export default class App extends React.Component { 39 | constructor(props) { 40 | super(props); 41 | setI18nConfig(); // set initial config 42 | } 43 | 44 | componentDidMount() { 45 | RNLocalize.addEventListener('change', this.handleLocalizationChange); 46 | } 47 | 48 | componentWillUnmount() { 49 | RNLocalize.removeEventListener('change', this.handleLocalizationChange); 50 | } 51 | 52 | handleLocalizationChange = () => { 53 | setI18nConfig(); 54 | this.forceUpdate(); 55 | }; 56 | 57 | render() { 58 | return ( 59 | 60 | {translate('hello')} 61 | 62 | ); 63 | } 64 | } 65 | 66 | const styles = StyleSheet.create({ 67 | safeArea: { 68 | backgroundColor: 'white', 69 | flex: 1, 70 | alignItems: 'center', 71 | justifyContent: 'center', 72 | }, 73 | value: { 74 | fontSize: 18, 75 | }, 76 | }); 77 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Native Multi Language App Demo 2 | 3 | > A react native app with multi language example using [react-native-localize](https://github.com/react-native-community/react-native-localize) 4 | 5 | Read more about this in an article on [Medium](https://medium.com/better-programming/creating-a-multi-language-app-in-react-native-9828b138c274) 6 | 7 | ### Clone the repo 8 | 9 | ```bash 10 | $ git clone https://github.com/vikrantnegi/react-native-multi-language-app.git 11 | ``` 12 | 13 | ### Install the dependencies 14 | 15 | ```bash 16 | $ yarn 17 | ``` 18 | 19 | ### Run the app 20 | 21 | ```bash 22 | $ react-native run-ios 23 | $ react-native run-android 24 | ``` 25 | 26 | ### License 27 | 28 | MIT © [Vikrant Negi](https://github.com/vikrantnegi) 29 | 30 | 31 | ## Donation 32 | 33 | If this project helped you reduce time to develop, please consider buying me a cup of coffee :) 34 | 35 | Buy Me A Coffee 36 | 37 | [![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/E1E6Z0JL) 38 | -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.multilanguage", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.multilanguage", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion rootProject.ext.compileSdkVersion 98 | 99 | compileOptions { 100 | sourceCompatibility JavaVersion.VERSION_1_8 101 | targetCompatibility JavaVersion.VERSION_1_8 102 | } 103 | 104 | defaultConfig { 105 | applicationId "com.multilanguage" 106 | minSdkVersion rootProject.ext.minSdkVersion 107 | targetSdkVersion rootProject.ext.targetSdkVersion 108 | versionCode 1 109 | versionName "1.0" 110 | } 111 | splits { 112 | abi { 113 | reset() 114 | enable enableSeparateBuildPerCPUArchitecture 115 | universalApk false // If true, also generate a universal APK 116 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 117 | } 118 | } 119 | buildTypes { 120 | release { 121 | minifyEnabled enableProguardInReleaseBuilds 122 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 123 | } 124 | } 125 | // applicationVariants are e.g. debug, release 126 | applicationVariants.all { variant -> 127 | variant.outputs.each { output -> 128 | // For each separate APK per architecture, set a unique version code as described here: 129 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 130 | def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4] 131 | def abi = output.getFilter(OutputFile.ABI) 132 | if (abi != null) { // null for the universal-debug, universal-release variants 133 | output.versionCodeOverride = 134 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 135 | } 136 | } 137 | } 138 | } 139 | 140 | dependencies { 141 | implementation project(':react-native-localize') 142 | implementation fileTree(dir: "libs", include: ["*.jar"]) 143 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 144 | implementation "com.facebook.react:react-native:+" // From node_modules 145 | } 146 | 147 | // Run this once to be able to run the application with BUCK 148 | // puts all compile dependencies into folder libs for BUCK to use 149 | task copyDownloadableDepsToLibs(type: Copy) { 150 | from configurations.compile 151 | into 'libs' 152 | } 153 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/multilanguage/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.multilanguage; 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 "multiLanguage"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/multilanguage/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.multilanguage; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.reactcommunity.rnlocalize.RNLocalizePackage; 7 | import com.facebook.react.ReactNativeHost; 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.react.shell.MainReactPackage; 10 | import com.facebook.soloader.SoLoader; 11 | 12 | import java.util.Arrays; 13 | import java.util.List; 14 | 15 | public class MainApplication extends Application implements ReactApplication { 16 | 17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 18 | @Override 19 | public boolean getUseDeveloperSupport() { 20 | return BuildConfig.DEBUG; 21 | } 22 | 23 | @Override 24 | protected List getPackages() { 25 | return Arrays.asList( 26 | new MainReactPackage(), 27 | new RNLocalizePackage() 28 | ); 29 | } 30 | 31 | @Override 32 | protected String getJSMainModuleName() { 33 | return "index"; 34 | } 35 | }; 36 | 37 | @Override 38 | public ReactNativeHost getReactNativeHost() { 39 | return mReactNativeHost; 40 | } 41 | 42 | @Override 43 | public void onCreate() { 44 | super.onCreate(); 45 | SoLoader.init(this, /* native exopackage */ false); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | multiLanguage 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "28.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | supportLibVersion = "28.0.0" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath("com.android.tools.build:gradle:3.4.0") 17 | 18 | // NOTE: Do not place your application dependencies here; they belong 19 | // in the individual module build.gradle files 20 | } 21 | } 22 | 23 | allprojects { 24 | repositories { 25 | mavenLocal() 26 | google() 27 | jcenter() 28 | maven { 29 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 30 | url "$rootDir/../node_modules/react-native/android" 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-multi-language-app/538a69b7fc28e002351e14ec9b90ea965d0a3b2f/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | # Determine the Java command to use to start the JVM. 86 | if [ -n "$JAVA_HOME" ] ; then 87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 88 | # IBM's JDK on AIX uses strange locations for the executables 89 | JAVACMD="$JAVA_HOME/jre/sh/java" 90 | else 91 | JAVACMD="$JAVA_HOME/bin/java" 92 | fi 93 | if [ ! -x "$JAVACMD" ] ; then 94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 95 | 96 | Please set the JAVA_HOME variable in your environment to match the 97 | location of your Java installation." 98 | fi 99 | else 100 | JAVACMD="java" 101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 102 | 103 | Please set the JAVA_HOME variable in your environment to match the 104 | location of your Java installation." 105 | fi 106 | 107 | # Increase the maximum file descriptors if we can. 108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 109 | MAX_FD_LIMIT=`ulimit -H -n` 110 | if [ $? -eq 0 ] ; then 111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 112 | MAX_FD="$MAX_FD_LIMIT" 113 | fi 114 | ulimit -n $MAX_FD 115 | if [ $? -ne 0 ] ; then 116 | warn "Could not set maximum file descriptor limit: $MAX_FD" 117 | fi 118 | else 119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 120 | fi 121 | fi 122 | 123 | # For Darwin, add options to specify how the application appears in the dock 124 | if $darwin; then 125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 126 | fi 127 | 128 | # For Cygwin, switch paths to Windows format before running java 129 | if $cygwin ; then 130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 132 | JAVACMD=`cygpath --unix "$JAVACMD"` 133 | 134 | # We build the pattern for arguments to be converted via cygpath 135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 136 | SEP="" 137 | for dir in $ROOTDIRSRAW ; do 138 | ROOTDIRS="$ROOTDIRS$SEP$dir" 139 | SEP="|" 140 | done 141 | OURCYGPATTERN="(^($ROOTDIRS))" 142 | # Add a user-defined pattern to the cygpath arguments 143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 145 | fi 146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 147 | i=0 148 | for arg in "$@" ; do 149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 151 | 152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 154 | else 155 | eval `echo args$i`="\"$arg\"" 156 | fi 157 | i=$((i+1)) 158 | done 159 | case $i in 160 | (0) set -- ;; 161 | (1) set -- "$args0" ;; 162 | (2) set -- "$args0" "$args1" ;; 163 | (3) set -- "$args0" "$args1" "$args2" ;; 164 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 165 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 166 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 167 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 168 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 169 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 170 | esac 171 | fi 172 | 173 | # Escape application args 174 | save () { 175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 176 | echo " " 177 | } 178 | APP_ARGS=$(save "$@") 179 | 180 | # Collect all arguments for the java command, following the shell quoting and substitution rules 181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 182 | 183 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 184 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 185 | cd "$(dirname "$0")" 186 | fi 187 | 188 | exec "$JAVACMD" "$@" 189 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem http://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 33 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 34 | 35 | @rem Find java.exe 36 | if defined JAVA_HOME goto findJavaFromJavaHome 37 | 38 | set JAVA_EXE=java.exe 39 | %JAVA_EXE% -version >NUL 2>&1 40 | if "%ERRORLEVEL%" == "0" goto init 41 | 42 | echo. 43 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 44 | echo. 45 | echo Please set the JAVA_HOME variable in your environment to match the 46 | echo location of your Java installation. 47 | 48 | goto fail 49 | 50 | :findJavaFromJavaHome 51 | set JAVA_HOME=%JAVA_HOME:"=% 52 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 53 | 54 | if exist "%JAVA_EXE%" goto init 55 | 56 | echo. 57 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 58 | echo. 59 | echo Please set the JAVA_HOME variable in your environment to match the 60 | echo location of your Java installation. 61 | 62 | goto fail 63 | 64 | :init 65 | @rem Get command-line arguments, handling Windows variants 66 | 67 | if not "%OS%" == "Windows_NT" goto win9xME_args 68 | 69 | :win9xME_args 70 | @rem Slurp the command line arguments. 71 | set CMD_LINE_ARGS= 72 | set _SKIP=2 73 | 74 | :win9xME_args_slurp 75 | if "x%~1" == "x" goto execute 76 | 77 | set CMD_LINE_ARGS=%* 78 | 79 | :execute 80 | @rem Setup the command line 81 | 82 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 83 | 84 | @rem Execute Gradle 85 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 86 | 87 | :end 88 | @rem End local scope for the variables with windows NT shell 89 | if "%ERRORLEVEL%"=="0" goto mainEnd 90 | 91 | :fail 92 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 93 | rem the _cmd.exe /c_ return code! 94 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 95 | exit /b 1 96 | 97 | :mainEnd 98 | if "%OS%"=="Windows_NT" endlocal 99 | 100 | :omega 101 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'multiLanguage' 2 | include ':react-native-localize' 3 | project(':react-native-localize').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-localize/android') 4 | 5 | include ':app' 6 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "multiLanguage", 3 | "displayName": "multiLanguage" 4 | } -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import { AppRegistry } from 'react-native'; 6 | import App from './App'; 7 | import { name as appName } from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /ios/multiLanguage-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/multiLanguage-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/multiLanguage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | /* Begin PBXBuildFile section */ 9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 14 | 00E356F31AD99517003FC87E /* multiLanguageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* multiLanguageTests.m */; }; 15 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* multiLanguageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* multiLanguageTests.m */; }; 37 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 38 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 39 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 40 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED297162215061F000B7C4FE /* JavaScriptCore.framework */; }; 41 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED2971642150620600B7C4FE /* JavaScriptCore.framework */; }; 42 | A77D665A70804D9390042747 /* libRNLocalize.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5EE3D04B35C456D96422217 /* libRNLocalize.a */; }; 43 | C5CEE5E2DB5F4DBB886DAC16 /* libRNLocalize-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CD900192EFC4ABA9C7966AB /* libRNLocalize-tvOS.a */; }; 44 | /* End PBXBuildFile section */ 45 | 46 | /* Begin PBXContainerItemProxy section */ 47 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 48 | isa = PBXContainerItemProxy; 49 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 50 | proxyType = 2; 51 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 52 | remoteInfo = RCTActionSheet; 53 | }; 54 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 55 | isa = PBXContainerItemProxy; 56 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 57 | proxyType = 2; 58 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 59 | remoteInfo = RCTGeolocation; 60 | }; 61 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 62 | isa = PBXContainerItemProxy; 63 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 64 | proxyType = 2; 65 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 66 | remoteInfo = RCTImage; 67 | }; 68 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 69 | isa = PBXContainerItemProxy; 70 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 71 | proxyType = 2; 72 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 73 | remoteInfo = RCTNetwork; 74 | }; 75 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 76 | isa = PBXContainerItemProxy; 77 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 78 | proxyType = 2; 79 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 80 | remoteInfo = RCTVibration; 81 | }; 82 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 83 | isa = PBXContainerItemProxy; 84 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 85 | proxyType = 1; 86 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 87 | remoteInfo = multiLanguage; 88 | }; 89 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 90 | isa = PBXContainerItemProxy; 91 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 92 | proxyType = 2; 93 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 94 | remoteInfo = RCTSettings; 95 | }; 96 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 97 | isa = PBXContainerItemProxy; 98 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 99 | proxyType = 2; 100 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 101 | remoteInfo = RCTWebSocket; 102 | }; 103 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 104 | isa = PBXContainerItemProxy; 105 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 106 | proxyType = 2; 107 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 108 | remoteInfo = React; 109 | }; 110 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 111 | isa = PBXContainerItemProxy; 112 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 113 | proxyType = 1; 114 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 115 | remoteInfo = "multiLanguage-tvOS"; 116 | }; 117 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 118 | isa = PBXContainerItemProxy; 119 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 120 | proxyType = 2; 121 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 122 | remoteInfo = "RCTBlob-tvOS"; 123 | }; 124 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 125 | isa = PBXContainerItemProxy; 126 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 127 | proxyType = 2; 128 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 129 | remoteInfo = fishhook; 130 | }; 131 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 132 | isa = PBXContainerItemProxy; 133 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 134 | proxyType = 2; 135 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 136 | remoteInfo = "fishhook-tvOS"; 137 | }; 138 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 139 | isa = PBXContainerItemProxy; 140 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 141 | proxyType = 2; 142 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 143 | remoteInfo = jsinspector; 144 | }; 145 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 146 | isa = PBXContainerItemProxy; 147 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 148 | proxyType = 2; 149 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 150 | remoteInfo = "jsinspector-tvOS"; 151 | }; 152 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 153 | isa = PBXContainerItemProxy; 154 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 155 | proxyType = 2; 156 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 157 | remoteInfo = "third-party"; 158 | }; 159 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 160 | isa = PBXContainerItemProxy; 161 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 162 | proxyType = 2; 163 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 164 | remoteInfo = "third-party-tvOS"; 165 | }; 166 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 167 | isa = PBXContainerItemProxy; 168 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 169 | proxyType = 2; 170 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 171 | remoteInfo = "double-conversion"; 172 | }; 173 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 174 | isa = PBXContainerItemProxy; 175 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 176 | proxyType = 2; 177 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 178 | remoteInfo = "double-conversion-tvOS"; 179 | }; 180 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 181 | isa = PBXContainerItemProxy; 182 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 183 | proxyType = 2; 184 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 185 | remoteInfo = privatedata; 186 | }; 187 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 188 | isa = PBXContainerItemProxy; 189 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 190 | proxyType = 2; 191 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 192 | remoteInfo = "privatedata-tvOS"; 193 | }; 194 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 195 | isa = PBXContainerItemProxy; 196 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 197 | proxyType = 2; 198 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 199 | remoteInfo = "RCTImage-tvOS"; 200 | }; 201 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 202 | isa = PBXContainerItemProxy; 203 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 204 | proxyType = 2; 205 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 206 | remoteInfo = "RCTLinking-tvOS"; 207 | }; 208 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 209 | isa = PBXContainerItemProxy; 210 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 211 | proxyType = 2; 212 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 213 | remoteInfo = "RCTNetwork-tvOS"; 214 | }; 215 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 216 | isa = PBXContainerItemProxy; 217 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 218 | proxyType = 2; 219 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 220 | remoteInfo = "RCTSettings-tvOS"; 221 | }; 222 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 223 | isa = PBXContainerItemProxy; 224 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 225 | proxyType = 2; 226 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 227 | remoteInfo = "RCTText-tvOS"; 228 | }; 229 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 230 | isa = PBXContainerItemProxy; 231 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 232 | proxyType = 2; 233 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 234 | remoteInfo = "RCTWebSocket-tvOS"; 235 | }; 236 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 237 | isa = PBXContainerItemProxy; 238 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 239 | proxyType = 2; 240 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 241 | remoteInfo = "React-tvOS"; 242 | }; 243 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 244 | isa = PBXContainerItemProxy; 245 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 246 | proxyType = 2; 247 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 248 | remoteInfo = yoga; 249 | }; 250 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 251 | isa = PBXContainerItemProxy; 252 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 253 | proxyType = 2; 254 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 255 | remoteInfo = "yoga-tvOS"; 256 | }; 257 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 258 | isa = PBXContainerItemProxy; 259 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 260 | proxyType = 2; 261 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 262 | remoteInfo = cxxreact; 263 | }; 264 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 265 | isa = PBXContainerItemProxy; 266 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 267 | proxyType = 2; 268 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 269 | remoteInfo = "cxxreact-tvOS"; 270 | }; 271 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 272 | isa = PBXContainerItemProxy; 273 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 274 | proxyType = 2; 275 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 276 | remoteInfo = jschelpers; 277 | }; 278 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 279 | isa = PBXContainerItemProxy; 280 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 281 | proxyType = 2; 282 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 283 | remoteInfo = "jschelpers-tvOS"; 284 | }; 285 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 286 | isa = PBXContainerItemProxy; 287 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 288 | proxyType = 2; 289 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 290 | remoteInfo = RCTAnimation; 291 | }; 292 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 293 | isa = PBXContainerItemProxy; 294 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 295 | proxyType = 2; 296 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 297 | remoteInfo = "RCTAnimation-tvOS"; 298 | }; 299 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 300 | isa = PBXContainerItemProxy; 301 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 302 | proxyType = 2; 303 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 304 | remoteInfo = RCTLinking; 305 | }; 306 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 307 | isa = PBXContainerItemProxy; 308 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 309 | proxyType = 2; 310 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 311 | remoteInfo = RCTText; 312 | }; 313 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 314 | isa = PBXContainerItemProxy; 315 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 316 | proxyType = 2; 317 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 318 | remoteInfo = RCTBlob; 319 | }; 320 | /* End PBXContainerItemProxy section */ 321 | 322 | /* Begin PBXFileReference section */ 323 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 324 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 325 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 326 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 327 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 328 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 329 | 00E356EE1AD99517003FC87E /* multiLanguageTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = multiLanguageTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 330 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 331 | 00E356F21AD99517003FC87E /* multiLanguageTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = multiLanguageTests.m; sourceTree = ""; }; 332 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 333 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 334 | 13B07F961A680F5B00A75B9A /* multiLanguage.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = multiLanguage.app; sourceTree = BUILT_PRODUCTS_DIR; }; 335 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = multiLanguage/AppDelegate.h; sourceTree = ""; }; 336 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = multiLanguage/AppDelegate.m; sourceTree = ""; }; 337 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 338 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = multiLanguage/Images.xcassets; sourceTree = ""; }; 339 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = multiLanguage/Info.plist; sourceTree = ""; }; 340 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = multiLanguage/main.m; sourceTree = ""; }; 341 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 342 | 2D02E47B1E0B4A5D006451C7 /* multiLanguage-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "multiLanguage-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 343 | 2D02E4901E0B4A5D006451C7 /* multiLanguage-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "multiLanguage-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 344 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 345 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 346 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 347 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 348 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 349 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 350 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; 351 | EF5CBE4F7D244B7C87AC8EFC /* RNLocalize.xcodeproj */ = {isa = PBXFileReference; name = "RNLocalize.xcodeproj"; path = "../node_modules/react-native-localize/ios/RNLocalize.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 352 | D5EE3D04B35C456D96422217 /* libRNLocalize.a */ = {isa = PBXFileReference; name = "libRNLocalize.a"; path = "libRNLocalize.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 353 | 6CD900192EFC4ABA9C7966AB /* libRNLocalize-tvOS.a */ = {isa = PBXFileReference; name = "libRNLocalize-tvOS.a"; path = "libRNLocalize-tvOS.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 354 | /* End PBXFileReference section */ 355 | 356 | /* Begin PBXFrameworksBuildPhase section */ 357 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 358 | isa = PBXFrameworksBuildPhase; 359 | buildActionMask = 2147483647; 360 | files = ( 361 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 362 | ); 363 | runOnlyForDeploymentPostprocessing = 0; 364 | }; 365 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 366 | isa = PBXFrameworksBuildPhase; 367 | buildActionMask = 2147483647; 368 | files = ( 369 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */, 370 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 371 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 372 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 373 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 374 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 375 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 376 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 377 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 378 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 379 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 380 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 381 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 382 | A77D665A70804D9390042747 /* libRNLocalize.a in Frameworks */, 383 | ); 384 | runOnlyForDeploymentPostprocessing = 0; 385 | }; 386 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 387 | isa = PBXFrameworksBuildPhase; 388 | buildActionMask = 2147483647; 389 | files = ( 390 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */, 391 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 392 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 393 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 394 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 395 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 396 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 397 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 398 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 399 | C5CEE5E2DB5F4DBB886DAC16 /* libRNLocalize-tvOS.a in Frameworks */, 400 | ); 401 | runOnlyForDeploymentPostprocessing = 0; 402 | }; 403 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 404 | isa = PBXFrameworksBuildPhase; 405 | buildActionMask = 2147483647; 406 | files = ( 407 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 408 | ); 409 | runOnlyForDeploymentPostprocessing = 0; 410 | }; 411 | /* End PBXFrameworksBuildPhase section */ 412 | 413 | /* Begin PBXGroup section */ 414 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 415 | isa = PBXGroup; 416 | children = ( 417 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 418 | ); 419 | name = Products; 420 | sourceTree = ""; 421 | }; 422 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 423 | isa = PBXGroup; 424 | children = ( 425 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 426 | ); 427 | name = Products; 428 | sourceTree = ""; 429 | }; 430 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 431 | isa = PBXGroup; 432 | children = ( 433 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 434 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 435 | ); 436 | name = Products; 437 | sourceTree = ""; 438 | }; 439 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 440 | isa = PBXGroup; 441 | children = ( 442 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 443 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 444 | ); 445 | name = Products; 446 | sourceTree = ""; 447 | }; 448 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 449 | isa = PBXGroup; 450 | children = ( 451 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 452 | ); 453 | name = Products; 454 | sourceTree = ""; 455 | }; 456 | 00E356EF1AD99517003FC87E /* multiLanguageTests */ = { 457 | isa = PBXGroup; 458 | children = ( 459 | 00E356F21AD99517003FC87E /* multiLanguageTests.m */, 460 | 00E356F01AD99517003FC87E /* Supporting Files */, 461 | ); 462 | path = multiLanguageTests; 463 | sourceTree = ""; 464 | }; 465 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 466 | isa = PBXGroup; 467 | children = ( 468 | 00E356F11AD99517003FC87E /* Info.plist */, 469 | ); 470 | name = "Supporting Files"; 471 | sourceTree = ""; 472 | }; 473 | 139105B71AF99BAD00B5F7CC /* Products */ = { 474 | isa = PBXGroup; 475 | children = ( 476 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 477 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 478 | ); 479 | name = Products; 480 | sourceTree = ""; 481 | }; 482 | 139FDEE71B06529A00C62182 /* Products */ = { 483 | isa = PBXGroup; 484 | children = ( 485 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 486 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 487 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 488 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 489 | ); 490 | name = Products; 491 | sourceTree = ""; 492 | }; 493 | 13B07FAE1A68108700A75B9A /* multiLanguage */ = { 494 | isa = PBXGroup; 495 | children = ( 496 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 497 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 498 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 499 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 500 | 13B07FB61A68108700A75B9A /* Info.plist */, 501 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 502 | 13B07FB71A68108700A75B9A /* main.m */, 503 | ); 504 | name = multiLanguage; 505 | sourceTree = ""; 506 | }; 507 | 146834001AC3E56700842450 /* Products */ = { 508 | isa = PBXGroup; 509 | children = ( 510 | 146834041AC3E56700842450 /* libReact.a */, 511 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 512 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 513 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 514 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 515 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 516 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 517 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 518 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 519 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 520 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 521 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 522 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 523 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 524 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 525 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 526 | ); 527 | name = Products; 528 | sourceTree = ""; 529 | }; 530 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 531 | isa = PBXGroup; 532 | children = ( 533 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 534 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 535 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 536 | ); 537 | name = Frameworks; 538 | sourceTree = ""; 539 | }; 540 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 541 | isa = PBXGroup; 542 | children = ( 543 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 544 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 545 | ); 546 | name = Products; 547 | sourceTree = ""; 548 | }; 549 | 78C398B11ACF4ADC00677621 /* Products */ = { 550 | isa = PBXGroup; 551 | children = ( 552 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 553 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 554 | ); 555 | name = Products; 556 | sourceTree = ""; 557 | }; 558 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 559 | isa = PBXGroup; 560 | children = ( 561 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 562 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 563 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 564 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 565 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 566 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 567 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 568 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 569 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 570 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 571 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 572 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 573 | EF5CBE4F7D244B7C87AC8EFC /* RNLocalize.xcodeproj */, 574 | ); 575 | name = Libraries; 576 | sourceTree = ""; 577 | }; 578 | 832341B11AAA6A8300B99B32 /* Products */ = { 579 | isa = PBXGroup; 580 | children = ( 581 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 582 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 583 | ); 584 | name = Products; 585 | sourceTree = ""; 586 | }; 587 | 83CBB9F61A601CBA00E9B192 = { 588 | isa = PBXGroup; 589 | children = ( 590 | 13B07FAE1A68108700A75B9A /* multiLanguage */, 591 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 592 | 00E356EF1AD99517003FC87E /* multiLanguageTests */, 593 | 83CBBA001A601CBA00E9B192 /* Products */, 594 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 595 | ); 596 | indentWidth = 2; 597 | sourceTree = ""; 598 | tabWidth = 2; 599 | usesTabs = 0; 600 | }; 601 | 83CBBA001A601CBA00E9B192 /* Products */ = { 602 | isa = PBXGroup; 603 | children = ( 604 | 13B07F961A680F5B00A75B9A /* multiLanguage.app */, 605 | 00E356EE1AD99517003FC87E /* multiLanguageTests.xctest */, 606 | 2D02E47B1E0B4A5D006451C7 /* multiLanguage-tvOS.app */, 607 | 2D02E4901E0B4A5D006451C7 /* multiLanguage-tvOSTests.xctest */, 608 | ); 609 | name = Products; 610 | sourceTree = ""; 611 | }; 612 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 613 | isa = PBXGroup; 614 | children = ( 615 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 616 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 617 | ); 618 | name = Products; 619 | sourceTree = ""; 620 | }; 621 | /* End PBXGroup section */ 622 | 623 | /* Begin PBXNativeTarget section */ 624 | 00E356ED1AD99517003FC87E /* multiLanguageTests */ = { 625 | isa = PBXNativeTarget; 626 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "multiLanguageTests" */; 627 | buildPhases = ( 628 | 00E356EA1AD99517003FC87E /* Sources */, 629 | 00E356EB1AD99517003FC87E /* Frameworks */, 630 | 00E356EC1AD99517003FC87E /* Resources */, 631 | ); 632 | buildRules = ( 633 | ); 634 | dependencies = ( 635 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 636 | ); 637 | name = multiLanguageTests; 638 | productName = multiLanguageTests; 639 | productReference = 00E356EE1AD99517003FC87E /* multiLanguageTests.xctest */; 640 | productType = "com.apple.product-type.bundle.unit-test"; 641 | }; 642 | 13B07F861A680F5B00A75B9A /* multiLanguage */ = { 643 | isa = PBXNativeTarget; 644 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "multiLanguage" */; 645 | buildPhases = ( 646 | 13B07F871A680F5B00A75B9A /* Sources */, 647 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 648 | 13B07F8E1A680F5B00A75B9A /* Resources */, 649 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 650 | ); 651 | buildRules = ( 652 | ); 653 | dependencies = ( 654 | ); 655 | name = multiLanguage; 656 | productName = "Hello World"; 657 | productReference = 13B07F961A680F5B00A75B9A /* multiLanguage.app */; 658 | productType = "com.apple.product-type.application"; 659 | }; 660 | 2D02E47A1E0B4A5D006451C7 /* multiLanguage-tvOS */ = { 661 | isa = PBXNativeTarget; 662 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "multiLanguage-tvOS" */; 663 | buildPhases = ( 664 | 2D02E4771E0B4A5D006451C7 /* Sources */, 665 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 666 | 2D02E4791E0B4A5D006451C7 /* Resources */, 667 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 668 | ); 669 | buildRules = ( 670 | ); 671 | dependencies = ( 672 | ); 673 | name = "multiLanguage-tvOS"; 674 | productName = "multiLanguage-tvOS"; 675 | productReference = 2D02E47B1E0B4A5D006451C7 /* multiLanguage-tvOS.app */; 676 | productType = "com.apple.product-type.application"; 677 | }; 678 | 2D02E48F1E0B4A5D006451C7 /* multiLanguage-tvOSTests */ = { 679 | isa = PBXNativeTarget; 680 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "multiLanguage-tvOSTests" */; 681 | buildPhases = ( 682 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 683 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 684 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 685 | ); 686 | buildRules = ( 687 | ); 688 | dependencies = ( 689 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 690 | ); 691 | name = "multiLanguage-tvOSTests"; 692 | productName = "multiLanguage-tvOSTests"; 693 | productReference = 2D02E4901E0B4A5D006451C7 /* multiLanguage-tvOSTests.xctest */; 694 | productType = "com.apple.product-type.bundle.unit-test"; 695 | }; 696 | /* End PBXNativeTarget section */ 697 | 698 | /* Begin PBXProject section */ 699 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 700 | isa = PBXProject; 701 | attributes = { 702 | LastUpgradeCheck = 940; 703 | ORGANIZATIONNAME = Facebook; 704 | TargetAttributes = { 705 | 00E356ED1AD99517003FC87E = { 706 | CreatedOnToolsVersion = 6.2; 707 | TestTargetID = 13B07F861A680F5B00A75B9A; 708 | }; 709 | 2D02E47A1E0B4A5D006451C7 = { 710 | CreatedOnToolsVersion = 8.2.1; 711 | ProvisioningStyle = Automatic; 712 | }; 713 | 2D02E48F1E0B4A5D006451C7 = { 714 | CreatedOnToolsVersion = 8.2.1; 715 | ProvisioningStyle = Automatic; 716 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 717 | }; 718 | }; 719 | }; 720 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "multiLanguage" */; 721 | compatibilityVersion = "Xcode 3.2"; 722 | developmentRegion = English; 723 | hasScannedForEncodings = 0; 724 | knownRegions = ( 725 | en, 726 | Base, 727 | ); 728 | mainGroup = 83CBB9F61A601CBA00E9B192; 729 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 730 | projectDirPath = ""; 731 | projectReferences = ( 732 | { 733 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 734 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 735 | }, 736 | { 737 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 738 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 739 | }, 740 | { 741 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 742 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 743 | }, 744 | { 745 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 746 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 747 | }, 748 | { 749 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 750 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 751 | }, 752 | { 753 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 754 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 755 | }, 756 | { 757 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 758 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 759 | }, 760 | { 761 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 762 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 763 | }, 764 | { 765 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 766 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 767 | }, 768 | { 769 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 770 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 771 | }, 772 | { 773 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 774 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 775 | }, 776 | { 777 | ProductGroup = 146834001AC3E56700842450 /* Products */; 778 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 779 | }, 780 | ); 781 | projectRoot = ""; 782 | targets = ( 783 | 13B07F861A680F5B00A75B9A /* multiLanguage */, 784 | 00E356ED1AD99517003FC87E /* multiLanguageTests */, 785 | 2D02E47A1E0B4A5D006451C7 /* multiLanguage-tvOS */, 786 | 2D02E48F1E0B4A5D006451C7 /* multiLanguage-tvOSTests */, 787 | ); 788 | }; 789 | /* End PBXProject section */ 790 | 791 | /* Begin PBXReferenceProxy section */ 792 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 793 | isa = PBXReferenceProxy; 794 | fileType = archive.ar; 795 | path = libRCTActionSheet.a; 796 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 797 | sourceTree = BUILT_PRODUCTS_DIR; 798 | }; 799 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 800 | isa = PBXReferenceProxy; 801 | fileType = archive.ar; 802 | path = libRCTGeolocation.a; 803 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 804 | sourceTree = BUILT_PRODUCTS_DIR; 805 | }; 806 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 807 | isa = PBXReferenceProxy; 808 | fileType = archive.ar; 809 | path = libRCTImage.a; 810 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 811 | sourceTree = BUILT_PRODUCTS_DIR; 812 | }; 813 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 814 | isa = PBXReferenceProxy; 815 | fileType = archive.ar; 816 | path = libRCTNetwork.a; 817 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 818 | sourceTree = BUILT_PRODUCTS_DIR; 819 | }; 820 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 821 | isa = PBXReferenceProxy; 822 | fileType = archive.ar; 823 | path = libRCTVibration.a; 824 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 825 | sourceTree = BUILT_PRODUCTS_DIR; 826 | }; 827 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 828 | isa = PBXReferenceProxy; 829 | fileType = archive.ar; 830 | path = libRCTSettings.a; 831 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 832 | sourceTree = BUILT_PRODUCTS_DIR; 833 | }; 834 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 835 | isa = PBXReferenceProxy; 836 | fileType = archive.ar; 837 | path = libRCTWebSocket.a; 838 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 839 | sourceTree = BUILT_PRODUCTS_DIR; 840 | }; 841 | 146834041AC3E56700842450 /* libReact.a */ = { 842 | isa = PBXReferenceProxy; 843 | fileType = archive.ar; 844 | path = libReact.a; 845 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 846 | sourceTree = BUILT_PRODUCTS_DIR; 847 | }; 848 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 849 | isa = PBXReferenceProxy; 850 | fileType = archive.ar; 851 | path = "libRCTBlob-tvOS.a"; 852 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 853 | sourceTree = BUILT_PRODUCTS_DIR; 854 | }; 855 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 856 | isa = PBXReferenceProxy; 857 | fileType = archive.ar; 858 | path = libfishhook.a; 859 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 860 | sourceTree = BUILT_PRODUCTS_DIR; 861 | }; 862 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 863 | isa = PBXReferenceProxy; 864 | fileType = archive.ar; 865 | path = "libfishhook-tvOS.a"; 866 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 867 | sourceTree = BUILT_PRODUCTS_DIR; 868 | }; 869 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 870 | isa = PBXReferenceProxy; 871 | fileType = archive.ar; 872 | path = libjsinspector.a; 873 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 874 | sourceTree = BUILT_PRODUCTS_DIR; 875 | }; 876 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 877 | isa = PBXReferenceProxy; 878 | fileType = archive.ar; 879 | path = "libjsinspector-tvOS.a"; 880 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 881 | sourceTree = BUILT_PRODUCTS_DIR; 882 | }; 883 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 884 | isa = PBXReferenceProxy; 885 | fileType = archive.ar; 886 | path = "libthird-party.a"; 887 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 888 | sourceTree = BUILT_PRODUCTS_DIR; 889 | }; 890 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 891 | isa = PBXReferenceProxy; 892 | fileType = archive.ar; 893 | path = "libthird-party.a"; 894 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 895 | sourceTree = BUILT_PRODUCTS_DIR; 896 | }; 897 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 898 | isa = PBXReferenceProxy; 899 | fileType = archive.ar; 900 | path = "libdouble-conversion.a"; 901 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 902 | sourceTree = BUILT_PRODUCTS_DIR; 903 | }; 904 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 905 | isa = PBXReferenceProxy; 906 | fileType = archive.ar; 907 | path = "libdouble-conversion.a"; 908 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 909 | sourceTree = BUILT_PRODUCTS_DIR; 910 | }; 911 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 912 | isa = PBXReferenceProxy; 913 | fileType = archive.ar; 914 | path = libprivatedata.a; 915 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 916 | sourceTree = BUILT_PRODUCTS_DIR; 917 | }; 918 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 919 | isa = PBXReferenceProxy; 920 | fileType = archive.ar; 921 | path = "libprivatedata-tvOS.a"; 922 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 923 | sourceTree = BUILT_PRODUCTS_DIR; 924 | }; 925 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 926 | isa = PBXReferenceProxy; 927 | fileType = archive.ar; 928 | path = "libRCTImage-tvOS.a"; 929 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 930 | sourceTree = BUILT_PRODUCTS_DIR; 931 | }; 932 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 933 | isa = PBXReferenceProxy; 934 | fileType = archive.ar; 935 | path = "libRCTLinking-tvOS.a"; 936 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 937 | sourceTree = BUILT_PRODUCTS_DIR; 938 | }; 939 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 940 | isa = PBXReferenceProxy; 941 | fileType = archive.ar; 942 | path = "libRCTNetwork-tvOS.a"; 943 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 944 | sourceTree = BUILT_PRODUCTS_DIR; 945 | }; 946 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 947 | isa = PBXReferenceProxy; 948 | fileType = archive.ar; 949 | path = "libRCTSettings-tvOS.a"; 950 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 951 | sourceTree = BUILT_PRODUCTS_DIR; 952 | }; 953 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 954 | isa = PBXReferenceProxy; 955 | fileType = archive.ar; 956 | path = "libRCTText-tvOS.a"; 957 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 958 | sourceTree = BUILT_PRODUCTS_DIR; 959 | }; 960 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 961 | isa = PBXReferenceProxy; 962 | fileType = archive.ar; 963 | path = "libRCTWebSocket-tvOS.a"; 964 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 965 | sourceTree = BUILT_PRODUCTS_DIR; 966 | }; 967 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 968 | isa = PBXReferenceProxy; 969 | fileType = archive.ar; 970 | path = libReact.a; 971 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 972 | sourceTree = BUILT_PRODUCTS_DIR; 973 | }; 974 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 975 | isa = PBXReferenceProxy; 976 | fileType = archive.ar; 977 | path = libyoga.a; 978 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 979 | sourceTree = BUILT_PRODUCTS_DIR; 980 | }; 981 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 982 | isa = PBXReferenceProxy; 983 | fileType = archive.ar; 984 | path = libyoga.a; 985 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 986 | sourceTree = BUILT_PRODUCTS_DIR; 987 | }; 988 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 989 | isa = PBXReferenceProxy; 990 | fileType = archive.ar; 991 | path = libcxxreact.a; 992 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 993 | sourceTree = BUILT_PRODUCTS_DIR; 994 | }; 995 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 996 | isa = PBXReferenceProxy; 997 | fileType = archive.ar; 998 | path = libcxxreact.a; 999 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1000 | sourceTree = BUILT_PRODUCTS_DIR; 1001 | }; 1002 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1003 | isa = PBXReferenceProxy; 1004 | fileType = archive.ar; 1005 | path = libjschelpers.a; 1006 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1007 | sourceTree = BUILT_PRODUCTS_DIR; 1008 | }; 1009 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1010 | isa = PBXReferenceProxy; 1011 | fileType = archive.ar; 1012 | path = libjschelpers.a; 1013 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1014 | sourceTree = BUILT_PRODUCTS_DIR; 1015 | }; 1016 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1017 | isa = PBXReferenceProxy; 1018 | fileType = archive.ar; 1019 | path = libRCTAnimation.a; 1020 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1021 | sourceTree = BUILT_PRODUCTS_DIR; 1022 | }; 1023 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1024 | isa = PBXReferenceProxy; 1025 | fileType = archive.ar; 1026 | path = libRCTAnimation.a; 1027 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1028 | sourceTree = BUILT_PRODUCTS_DIR; 1029 | }; 1030 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1031 | isa = PBXReferenceProxy; 1032 | fileType = archive.ar; 1033 | path = libRCTLinking.a; 1034 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1035 | sourceTree = BUILT_PRODUCTS_DIR; 1036 | }; 1037 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1038 | isa = PBXReferenceProxy; 1039 | fileType = archive.ar; 1040 | path = libRCTText.a; 1041 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1042 | sourceTree = BUILT_PRODUCTS_DIR; 1043 | }; 1044 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1045 | isa = PBXReferenceProxy; 1046 | fileType = archive.ar; 1047 | path = libRCTBlob.a; 1048 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1049 | sourceTree = BUILT_PRODUCTS_DIR; 1050 | }; 1051 | /* End PBXReferenceProxy section */ 1052 | 1053 | /* Begin PBXResourcesBuildPhase section */ 1054 | 00E356EC1AD99517003FC87E /* Resources */ = { 1055 | isa = PBXResourcesBuildPhase; 1056 | buildActionMask = 2147483647; 1057 | files = ( 1058 | ); 1059 | runOnlyForDeploymentPostprocessing = 0; 1060 | }; 1061 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1062 | isa = PBXResourcesBuildPhase; 1063 | buildActionMask = 2147483647; 1064 | files = ( 1065 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1066 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1067 | ); 1068 | runOnlyForDeploymentPostprocessing = 0; 1069 | }; 1070 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1071 | isa = PBXResourcesBuildPhase; 1072 | buildActionMask = 2147483647; 1073 | files = ( 1074 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1075 | ); 1076 | runOnlyForDeploymentPostprocessing = 0; 1077 | }; 1078 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1079 | isa = PBXResourcesBuildPhase; 1080 | buildActionMask = 2147483647; 1081 | files = ( 1082 | ); 1083 | runOnlyForDeploymentPostprocessing = 0; 1084 | }; 1085 | /* End PBXResourcesBuildPhase section */ 1086 | 1087 | /* Begin PBXShellScriptBuildPhase section */ 1088 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1089 | isa = PBXShellScriptBuildPhase; 1090 | buildActionMask = 2147483647; 1091 | files = ( 1092 | ); 1093 | inputPaths = ( 1094 | ); 1095 | name = "Bundle React Native code and images"; 1096 | outputPaths = ( 1097 | ); 1098 | runOnlyForDeploymentPostprocessing = 0; 1099 | shellPath = /bin/sh; 1100 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1101 | }; 1102 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1103 | isa = PBXShellScriptBuildPhase; 1104 | buildActionMask = 2147483647; 1105 | files = ( 1106 | ); 1107 | inputPaths = ( 1108 | ); 1109 | name = "Bundle React Native Code And Images"; 1110 | outputPaths = ( 1111 | ); 1112 | runOnlyForDeploymentPostprocessing = 0; 1113 | shellPath = /bin/sh; 1114 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1115 | }; 1116 | /* End PBXShellScriptBuildPhase section */ 1117 | 1118 | /* Begin PBXSourcesBuildPhase section */ 1119 | 00E356EA1AD99517003FC87E /* Sources */ = { 1120 | isa = PBXSourcesBuildPhase; 1121 | buildActionMask = 2147483647; 1122 | files = ( 1123 | 00E356F31AD99517003FC87E /* multiLanguageTests.m in Sources */, 1124 | ); 1125 | runOnlyForDeploymentPostprocessing = 0; 1126 | }; 1127 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1128 | isa = PBXSourcesBuildPhase; 1129 | buildActionMask = 2147483647; 1130 | files = ( 1131 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1132 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1133 | ); 1134 | runOnlyForDeploymentPostprocessing = 0; 1135 | }; 1136 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1137 | isa = PBXSourcesBuildPhase; 1138 | buildActionMask = 2147483647; 1139 | files = ( 1140 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1141 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1142 | ); 1143 | runOnlyForDeploymentPostprocessing = 0; 1144 | }; 1145 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1146 | isa = PBXSourcesBuildPhase; 1147 | buildActionMask = 2147483647; 1148 | files = ( 1149 | 2DCD954D1E0B4F2C00145EB5 /* multiLanguageTests.m in Sources */, 1150 | ); 1151 | runOnlyForDeploymentPostprocessing = 0; 1152 | }; 1153 | /* End PBXSourcesBuildPhase section */ 1154 | 1155 | /* Begin PBXTargetDependency section */ 1156 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1157 | isa = PBXTargetDependency; 1158 | target = 13B07F861A680F5B00A75B9A /* multiLanguage */; 1159 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1160 | }; 1161 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1162 | isa = PBXTargetDependency; 1163 | target = 2D02E47A1E0B4A5D006451C7 /* multiLanguage-tvOS */; 1164 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1165 | }; 1166 | /* End PBXTargetDependency section */ 1167 | 1168 | /* Begin PBXVariantGroup section */ 1169 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1170 | isa = PBXVariantGroup; 1171 | children = ( 1172 | 13B07FB21A68108700A75B9A /* Base */, 1173 | ); 1174 | name = LaunchScreen.xib; 1175 | path = multiLanguage; 1176 | sourceTree = ""; 1177 | }; 1178 | /* End PBXVariantGroup section */ 1179 | 1180 | /* Begin XCBuildConfiguration section */ 1181 | 00E356F61AD99517003FC87E /* Debug */ = { 1182 | isa = XCBuildConfiguration; 1183 | buildSettings = { 1184 | BUNDLE_LOADER = "$(TEST_HOST)"; 1185 | GCC_PREPROCESSOR_DEFINITIONS = ( 1186 | "DEBUG=1", 1187 | "$(inherited)", 1188 | ); 1189 | INFOPLIST_FILE = multiLanguageTests/Info.plist; 1190 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1191 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1192 | OTHER_LDFLAGS = ( 1193 | "-ObjC", 1194 | "-lc++", 1195 | ); 1196 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1197 | PRODUCT_NAME = "$(TARGET_NAME)"; 1198 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/multiLanguage.app/multiLanguage"; 1199 | LIBRARY_SEARCH_PATHS = ( 1200 | "$(inherited)", 1201 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1202 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1203 | ); 1204 | HEADER_SEARCH_PATHS = ( 1205 | "$(inherited)", 1206 | "$(SRCROOT)/../node_modules/react-native-localize/ios", 1207 | ); 1208 | }; 1209 | name = Debug; 1210 | }; 1211 | 00E356F71AD99517003FC87E /* Release */ = { 1212 | isa = XCBuildConfiguration; 1213 | buildSettings = { 1214 | BUNDLE_LOADER = "$(TEST_HOST)"; 1215 | COPY_PHASE_STRIP = NO; 1216 | INFOPLIST_FILE = multiLanguageTests/Info.plist; 1217 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1218 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1219 | OTHER_LDFLAGS = ( 1220 | "-ObjC", 1221 | "-lc++", 1222 | ); 1223 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1224 | PRODUCT_NAME = "$(TARGET_NAME)"; 1225 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/multiLanguage.app/multiLanguage"; 1226 | LIBRARY_SEARCH_PATHS = ( 1227 | "$(inherited)", 1228 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1229 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1230 | ); 1231 | HEADER_SEARCH_PATHS = ( 1232 | "$(inherited)", 1233 | "$(SRCROOT)/../node_modules/react-native-localize/ios", 1234 | ); 1235 | }; 1236 | name = Release; 1237 | }; 1238 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1239 | isa = XCBuildConfiguration; 1240 | buildSettings = { 1241 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1242 | CURRENT_PROJECT_VERSION = 1; 1243 | DEAD_CODE_STRIPPING = NO; 1244 | INFOPLIST_FILE = multiLanguage/Info.plist; 1245 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1246 | OTHER_LDFLAGS = ( 1247 | "$(inherited)", 1248 | "-ObjC", 1249 | "-lc++", 1250 | ); 1251 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1252 | PRODUCT_NAME = multiLanguage; 1253 | VERSIONING_SYSTEM = "apple-generic"; 1254 | HEADER_SEARCH_PATHS = ( 1255 | "$(inherited)", 1256 | "$(SRCROOT)/../node_modules/react-native-localize/ios", 1257 | ); 1258 | }; 1259 | name = Debug; 1260 | }; 1261 | 13B07F951A680F5B00A75B9A /* Release */ = { 1262 | isa = XCBuildConfiguration; 1263 | buildSettings = { 1264 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1265 | CURRENT_PROJECT_VERSION = 1; 1266 | INFOPLIST_FILE = multiLanguage/Info.plist; 1267 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1268 | OTHER_LDFLAGS = ( 1269 | "$(inherited)", 1270 | "-ObjC", 1271 | "-lc++", 1272 | ); 1273 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1274 | PRODUCT_NAME = multiLanguage; 1275 | VERSIONING_SYSTEM = "apple-generic"; 1276 | HEADER_SEARCH_PATHS = ( 1277 | "$(inherited)", 1278 | "$(SRCROOT)/../node_modules/react-native-localize/ios", 1279 | ); 1280 | }; 1281 | name = Release; 1282 | }; 1283 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1284 | isa = XCBuildConfiguration; 1285 | buildSettings = { 1286 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1287 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1288 | CLANG_ANALYZER_NONNULL = YES; 1289 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1290 | CLANG_WARN_INFINITE_RECURSION = YES; 1291 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1292 | DEBUG_INFORMATION_FORMAT = dwarf; 1293 | ENABLE_TESTABILITY = YES; 1294 | GCC_NO_COMMON_BLOCKS = YES; 1295 | INFOPLIST_FILE = "multiLanguage-tvOS/Info.plist"; 1296 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1297 | OTHER_LDFLAGS = ( 1298 | "-ObjC", 1299 | "-lc++", 1300 | ); 1301 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.multiLanguage-tvOS"; 1302 | PRODUCT_NAME = "$(TARGET_NAME)"; 1303 | SDKROOT = appletvos; 1304 | TARGETED_DEVICE_FAMILY = 3; 1305 | TVOS_DEPLOYMENT_TARGET = 9.2; 1306 | LIBRARY_SEARCH_PATHS = ( 1307 | "$(inherited)", 1308 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1309 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1310 | ); 1311 | HEADER_SEARCH_PATHS = ( 1312 | "$(inherited)", 1313 | "$(SRCROOT)/../node_modules/react-native-localize/ios", 1314 | ); 1315 | }; 1316 | name = Debug; 1317 | }; 1318 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1319 | isa = XCBuildConfiguration; 1320 | buildSettings = { 1321 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1322 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1323 | CLANG_ANALYZER_NONNULL = YES; 1324 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1325 | CLANG_WARN_INFINITE_RECURSION = YES; 1326 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1327 | COPY_PHASE_STRIP = NO; 1328 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1329 | GCC_NO_COMMON_BLOCKS = YES; 1330 | INFOPLIST_FILE = "multiLanguage-tvOS/Info.plist"; 1331 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1332 | OTHER_LDFLAGS = ( 1333 | "-ObjC", 1334 | "-lc++", 1335 | ); 1336 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.multiLanguage-tvOS"; 1337 | PRODUCT_NAME = "$(TARGET_NAME)"; 1338 | SDKROOT = appletvos; 1339 | TARGETED_DEVICE_FAMILY = 3; 1340 | TVOS_DEPLOYMENT_TARGET = 9.2; 1341 | LIBRARY_SEARCH_PATHS = ( 1342 | "$(inherited)", 1343 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1344 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1345 | ); 1346 | HEADER_SEARCH_PATHS = ( 1347 | "$(inherited)", 1348 | "$(SRCROOT)/../node_modules/react-native-localize/ios", 1349 | ); 1350 | }; 1351 | name = Release; 1352 | }; 1353 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1354 | isa = XCBuildConfiguration; 1355 | buildSettings = { 1356 | BUNDLE_LOADER = "$(TEST_HOST)"; 1357 | CLANG_ANALYZER_NONNULL = YES; 1358 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1359 | CLANG_WARN_INFINITE_RECURSION = YES; 1360 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1361 | DEBUG_INFORMATION_FORMAT = dwarf; 1362 | ENABLE_TESTABILITY = YES; 1363 | GCC_NO_COMMON_BLOCKS = YES; 1364 | INFOPLIST_FILE = "multiLanguage-tvOSTests/Info.plist"; 1365 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1366 | OTHER_LDFLAGS = ( 1367 | "-ObjC", 1368 | "-lc++", 1369 | ); 1370 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.multiLanguage-tvOSTests"; 1371 | PRODUCT_NAME = "$(TARGET_NAME)"; 1372 | SDKROOT = appletvos; 1373 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/multiLanguage-tvOS.app/multiLanguage-tvOS"; 1374 | TVOS_DEPLOYMENT_TARGET = 10.1; 1375 | LIBRARY_SEARCH_PATHS = ( 1376 | "$(inherited)", 1377 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1378 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1379 | ); 1380 | HEADER_SEARCH_PATHS = ( 1381 | "$(inherited)", 1382 | "$(SRCROOT)/../node_modules/react-native-localize/ios", 1383 | ); 1384 | }; 1385 | name = Debug; 1386 | }; 1387 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1388 | isa = XCBuildConfiguration; 1389 | buildSettings = { 1390 | BUNDLE_LOADER = "$(TEST_HOST)"; 1391 | CLANG_ANALYZER_NONNULL = YES; 1392 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1393 | CLANG_WARN_INFINITE_RECURSION = YES; 1394 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1395 | COPY_PHASE_STRIP = NO; 1396 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1397 | GCC_NO_COMMON_BLOCKS = YES; 1398 | INFOPLIST_FILE = "multiLanguage-tvOSTests/Info.plist"; 1399 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1400 | OTHER_LDFLAGS = ( 1401 | "-ObjC", 1402 | "-lc++", 1403 | ); 1404 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.multiLanguage-tvOSTests"; 1405 | PRODUCT_NAME = "$(TARGET_NAME)"; 1406 | SDKROOT = appletvos; 1407 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/multiLanguage-tvOS.app/multiLanguage-tvOS"; 1408 | TVOS_DEPLOYMENT_TARGET = 10.1; 1409 | LIBRARY_SEARCH_PATHS = ( 1410 | "$(inherited)", 1411 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1412 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1413 | ); 1414 | HEADER_SEARCH_PATHS = ( 1415 | "$(inherited)", 1416 | "$(SRCROOT)/../node_modules/react-native-localize/ios", 1417 | ); 1418 | }; 1419 | name = Release; 1420 | }; 1421 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1422 | isa = XCBuildConfiguration; 1423 | buildSettings = { 1424 | ALWAYS_SEARCH_USER_PATHS = NO; 1425 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1426 | CLANG_CXX_LIBRARY = "libc++"; 1427 | CLANG_ENABLE_MODULES = YES; 1428 | CLANG_ENABLE_OBJC_ARC = YES; 1429 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1430 | CLANG_WARN_BOOL_CONVERSION = YES; 1431 | CLANG_WARN_COMMA = YES; 1432 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1433 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1434 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1435 | CLANG_WARN_EMPTY_BODY = YES; 1436 | CLANG_WARN_ENUM_CONVERSION = YES; 1437 | CLANG_WARN_INFINITE_RECURSION = YES; 1438 | CLANG_WARN_INT_CONVERSION = YES; 1439 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1440 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1441 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1442 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1443 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1444 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1445 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1446 | CLANG_WARN_UNREACHABLE_CODE = YES; 1447 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1448 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1449 | COPY_PHASE_STRIP = NO; 1450 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1451 | ENABLE_TESTABILITY = YES; 1452 | GCC_C_LANGUAGE_STANDARD = gnu99; 1453 | GCC_DYNAMIC_NO_PIC = NO; 1454 | GCC_NO_COMMON_BLOCKS = YES; 1455 | GCC_OPTIMIZATION_LEVEL = 0; 1456 | GCC_PREPROCESSOR_DEFINITIONS = ( 1457 | "DEBUG=1", 1458 | "$(inherited)", 1459 | ); 1460 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1461 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1462 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1463 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1464 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1465 | GCC_WARN_UNUSED_FUNCTION = YES; 1466 | GCC_WARN_UNUSED_VARIABLE = YES; 1467 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1468 | MTL_ENABLE_DEBUG_INFO = YES; 1469 | ONLY_ACTIVE_ARCH = YES; 1470 | SDKROOT = iphoneos; 1471 | }; 1472 | name = Debug; 1473 | }; 1474 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1475 | isa = XCBuildConfiguration; 1476 | buildSettings = { 1477 | ALWAYS_SEARCH_USER_PATHS = NO; 1478 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1479 | CLANG_CXX_LIBRARY = "libc++"; 1480 | CLANG_ENABLE_MODULES = YES; 1481 | CLANG_ENABLE_OBJC_ARC = YES; 1482 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1483 | CLANG_WARN_BOOL_CONVERSION = YES; 1484 | CLANG_WARN_COMMA = YES; 1485 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1486 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1487 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1488 | CLANG_WARN_EMPTY_BODY = YES; 1489 | CLANG_WARN_ENUM_CONVERSION = YES; 1490 | CLANG_WARN_INFINITE_RECURSION = YES; 1491 | CLANG_WARN_INT_CONVERSION = YES; 1492 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1493 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1494 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1495 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1496 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1497 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1498 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1499 | CLANG_WARN_UNREACHABLE_CODE = YES; 1500 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1501 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1502 | COPY_PHASE_STRIP = YES; 1503 | ENABLE_NS_ASSERTIONS = NO; 1504 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1505 | GCC_C_LANGUAGE_STANDARD = gnu99; 1506 | GCC_NO_COMMON_BLOCKS = YES; 1507 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1508 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1509 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1510 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1511 | GCC_WARN_UNUSED_FUNCTION = YES; 1512 | GCC_WARN_UNUSED_VARIABLE = YES; 1513 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1514 | MTL_ENABLE_DEBUG_INFO = NO; 1515 | SDKROOT = iphoneos; 1516 | VALIDATE_PRODUCT = YES; 1517 | }; 1518 | name = Release; 1519 | }; 1520 | /* End XCBuildConfiguration section */ 1521 | 1522 | /* Begin XCConfigurationList section */ 1523 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "multiLanguageTests" */ = { 1524 | isa = XCConfigurationList; 1525 | buildConfigurations = ( 1526 | 00E356F61AD99517003FC87E /* Debug */, 1527 | 00E356F71AD99517003FC87E /* Release */, 1528 | ); 1529 | defaultConfigurationIsVisible = 0; 1530 | defaultConfigurationName = Release; 1531 | }; 1532 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "multiLanguage" */ = { 1533 | isa = XCConfigurationList; 1534 | buildConfigurations = ( 1535 | 13B07F941A680F5B00A75B9A /* Debug */, 1536 | 13B07F951A680F5B00A75B9A /* Release */, 1537 | ); 1538 | defaultConfigurationIsVisible = 0; 1539 | defaultConfigurationName = Release; 1540 | }; 1541 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "multiLanguage-tvOS" */ = { 1542 | isa = XCConfigurationList; 1543 | buildConfigurations = ( 1544 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1545 | 2D02E4981E0B4A5E006451C7 /* Release */, 1546 | ); 1547 | defaultConfigurationIsVisible = 0; 1548 | defaultConfigurationName = Release; 1549 | }; 1550 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "multiLanguage-tvOSTests" */ = { 1551 | isa = XCConfigurationList; 1552 | buildConfigurations = ( 1553 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1554 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1555 | ); 1556 | defaultConfigurationIsVisible = 0; 1557 | defaultConfigurationName = Release; 1558 | }; 1559 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "multiLanguage" */ = { 1560 | isa = XCConfigurationList; 1561 | buildConfigurations = ( 1562 | 83CBBA201A601CBA00E9B192 /* Debug */, 1563 | 83CBBA211A601CBA00E9B192 /* Release */, 1564 | ); 1565 | defaultConfigurationIsVisible = 0; 1566 | defaultConfigurationName = Release; 1567 | }; 1568 | /* End XCConfigurationList section */ 1569 | }; 1570 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1571 | } 1572 | -------------------------------------------------------------------------------- /ios/multiLanguage.xcodeproj/xcshareddata/xcschemes/multiLanguage-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/multiLanguage.xcodeproj/xcshareddata/xcschemes/multiLanguage.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/multiLanguage/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (nonatomic, strong) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios/multiLanguage/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | #import 13 | 14 | @implementation AppDelegate 15 | 16 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 17 | { 18 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 19 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 20 | moduleName:@"multiLanguage" 21 | initialProperties:nil]; 22 | 23 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 24 | 25 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 26 | UIViewController *rootViewController = [UIViewController new]; 27 | rootViewController.view = rootView; 28 | self.window.rootViewController = rootViewController; 29 | [self.window makeKeyAndVisible]; 30 | return YES; 31 | } 32 | 33 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 34 | { 35 | #if DEBUG 36 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 37 | #else 38 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 39 | #endif 40 | } 41 | 42 | @end 43 | -------------------------------------------------------------------------------- /ios/multiLanguage/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/multiLanguage/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/multiLanguage/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/multiLanguage/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | multiLanguage 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSLocationWhenInUseUsageDescription 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UIViewControllerBasedStatusBarAppearance 42 | 43 | NSLocationWhenInUseUsageDescription 44 | 45 | NSAppTransportSecurity 46 | 47 | 48 | NSAllowsArbitraryLoads 49 | 50 | NSExceptionDomains 51 | 52 | localhost 53 | 54 | NSExceptionAllowsInsecureHTTPLoads 55 | 56 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /ios/multiLanguage/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/multiLanguageTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/multiLanguageTests/multiLanguageTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface multiLanguageTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation multiLanguageTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: false, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "multiLanguage", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "i18n-js": "^3.3.0", 11 | "lodash.memoize": "^4.1.2", 12 | "react": "16.8.3", 13 | "react-native": "0.59.10", 14 | "react-native-localize": "^1.1.3" 15 | }, 16 | "devDependencies": { 17 | "@babel/core": "^7.4.5", 18 | "@babel/runtime": "^7.4.5", 19 | "babel-jest": "^24.8.0", 20 | "jest": "^24.8.0", 21 | "metro-react-native-babel-preset": "^0.54.1", 22 | "react-test-renderer": "16.8.3" 23 | }, 24 | "jest": { 25 | "preset": "react-native" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/translations/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "أهلاً بالعالم" 3 | } 4 | -------------------------------------------------------------------------------- /src/translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "Hello World!" 3 | } 4 | -------------------------------------------------------------------------------- /src/translations/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "Salut le Monde!" 3 | } 4 | --------------------------------------------------------------------------------