├── .github
└── workflows
│ ├── android.yml
│ ├── codequality.yml
│ └── ios.yml
├── .gitignore
├── android
├── app
│ ├── BUCK
│ ├── build.gradle
│ ├── build_defs.bzl
│ ├── proguard-rules.pro
│ └── src
│ │ ├── debug
│ │ └── AndroidManifest.xml
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ └── com
│ │ │ └── helloreactnative
│ │ │ ├── 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
├── index.js
├── ios
├── HelloReactNative-tvOS
│ └── Info.plist
├── HelloReactNative-tvOSTests
│ └── Info.plist
├── HelloReactNative.xcodeproj
│ ├── project.pbxproj
│ └── xcshareddata
│ │ └── xcschemes
│ │ ├── HelloReactNative-tvOS.xcscheme
│ │ └── HelloReactNative.xcscheme
├── HelloReactNative.xcworkspace
│ └── contents.xcworkspacedata
├── HelloReactNative
│ ├── AppDelegate.h
│ ├── AppDelegate.m
│ ├── Base.lproj
│ │ └── LaunchScreen.xib
│ ├── Images.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ └── Contents.json
│ │ └── Contents.json
│ ├── Info.plist
│ └── main.m
├── HelloReactNativeTests
│ ├── HelloReactNativeTests.m
│ └── Info.plist
├── Podfile
└── Podfile.lock
├── package-lock.json
├── package.json
└── src
├── App.tsx
├── __tests__
└── App-test.tsx
├── tsconfig.json
└── tslint.json
/.github/workflows/android.yml:
--------------------------------------------------------------------------------
1 | name: Android
2 |
3 | on: [push, pull_request]
4 |
5 | jobs:
6 | build:
7 | runs-on: ubuntu-20.04
8 | steps:
9 | - uses: actions/checkout@v2
10 | - name: Use Node.js v14
11 | uses: actions/setup-node@v1
12 | with:
13 | node-version: 14.x
14 |
15 | - name: Cache npm dependencies
16 | uses: actions/cache@v2
17 | with:
18 | path: '~/.npm'
19 | key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
20 | restore-keys: |
21 | ${{ runner.os }}-node-
22 | - run: npm ci
23 |
24 | - run: ./gradlew assembleDebug -Dorg.gradle.logging.level=info
25 | working-directory: android
26 | name: Build Android apk (debug)
27 |
28 | - uses: actions/upload-artifact@v2
29 | with:
30 | name: android-apk
31 | path: '**/*.apk'
32 |
--------------------------------------------------------------------------------
/.github/workflows/codequality.yml:
--------------------------------------------------------------------------------
1 | name: CodeQuality
2 |
3 | on: [push, pull_request]
4 |
5 | jobs:
6 | check:
7 | runs-on: ubuntu-20.04
8 | steps:
9 | - uses: actions/checkout@v2
10 | - name: Use Node.js v14
11 | uses: actions/setup-node@v1
12 | with:
13 | node-version: 14.x
14 |
15 | - name: Cache npm dependencies
16 | uses: actions/cache@v2
17 | with:
18 | path: '~/.npm'
19 | key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
20 | restore-keys: |
21 | ${{ runner.os }}-node-
22 | - run: npm ci
23 |
24 | - run: npm run static-code-analysis
25 | - run: npm run dynamic-code-analysis
26 |
--------------------------------------------------------------------------------
/.github/workflows/ios.yml:
--------------------------------------------------------------------------------
1 | name: iOS
2 |
3 | on: [push, pull_request]
4 |
5 | jobs:
6 | build:
7 | runs-on: macos-latest
8 | steps:
9 | - uses: actions/checkout@v2
10 | - name: Use Node.js
11 | uses: actions/setup-node@v1
12 | with:
13 | node-version: 14.x
14 |
15 | - name: Cache npm dependencies
16 | uses: actions/cache@v2
17 | with:
18 | path: '~/.npm'
19 | key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
20 | restore-keys: |
21 | ${{ runner.os }}-node-
22 | - run: npm ci
23 |
24 | - run: xcode-select -p
25 |
26 | - name: Cache pods
27 | uses: actions/cache@v1
28 | with:
29 | path: ios/Pods
30 | key: ${{ runner.OS }}-pods-cache-${{ hashFiles('**/ios/Podfile.lock') }}
31 | restore-keys: |
32 | ${{ runner.OS }}-pods-cache-
33 | - run: pod install
34 | working-directory: ios
35 | name: Install pod dependencies
36 |
37 | - name: Build iOS (debug)
38 | run: "xcodebuild \
39 | -workspace ios/HelloReactNative.xcworkspace \
40 | -scheme HelloReactNative \
41 | clean archive \
42 | -sdk iphoneos \
43 | -configuration Debug \
44 | -UseModernBuildSystem=NO \
45 | -archivePath $PWD/HelloReactNative \
46 | CODE_SIGNING_ALLOWED=NO"
47 |
48 | - name: Compress .xcarchive
49 | run: zip -r -9 HelloReactNative.xcarchive.zip $PWD/HelloReactNative.xcarchive/
50 |
51 | - uses: actions/upload-artifact@v2
52 | with:
53 | name: ios-xarchive
54 | path: HelloReactNative.xcarchive.zip
--------------------------------------------------------------------------------
/.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 |
24 | # Android/IntelliJ
25 | #
26 | build/
27 | .idea
28 | .gradle
29 | local.properties
30 | *.iml
31 |
32 | # node.js
33 | #
34 | node_modules/
35 | npm-debug.log
36 | yarn-error.log
37 |
38 | # BUCK
39 | buck-out/
40 | \.buckd/
41 | *.keystore
42 |
43 | # fastlane
44 | #
45 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
46 | # screenshots whenever they are needed.
47 | # For more information about the recommended setup visit:
48 | # https://docs.fastlane.tools/best-practices/source-control/
49 |
50 | */fastlane/report.xml
51 | */fastlane/Preview.html
52 | */fastlane/screenshots
53 |
54 | # Bundle artifact
55 | *.jsbundle
56 |
57 | # CocoaPods
58 | /ios/Pods/
59 |
--------------------------------------------------------------------------------
/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.helloreactnative",
39 | )
40 |
41 | android_resource(
42 | name = "res",
43 | package = "com.helloreactnative",
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 | * // https://facebook.github.io/react-native/docs/performance#enable-the-ram-format
22 | * bundleCommand: "ram-bundle",
23 | *
24 | * // whether to bundle JS and assets in debug mode
25 | * bundleInDebug: false,
26 | *
27 | * // whether to bundle JS and assets in release mode
28 | * bundleInRelease: true,
29 | *
30 | * // whether to bundle JS and assets in another build variant (if configured).
31 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
32 | * // The configuration property can be in the following formats
33 | * // 'bundleIn${productFlavor}${buildType}'
34 | * // 'bundleIn${buildType}'
35 | * // bundleInFreeDebug: true,
36 | * // bundleInPaidRelease: true,
37 | * // bundleInBeta: true,
38 | *
39 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
40 | * // for example: to disable dev mode in the staging build type (if configured)
41 | * devDisabledInStaging: true,
42 | * // The configuration property can be in the following formats
43 | * // 'devDisabledIn${productFlavor}${buildType}'
44 | * // 'devDisabledIn${buildType}'
45 | *
46 | * // the root of your project, i.e. where "package.json" lives
47 | * root: "../../",
48 | *
49 | * // where to put the JS bundle asset in debug mode
50 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
51 | *
52 | * // where to put the JS bundle asset in release mode
53 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
54 | *
55 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
56 | * // require('./image.png')), in debug mode
57 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
58 | *
59 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
60 | * // require('./image.png')), in release mode
61 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
62 | *
63 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
64 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
65 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
66 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
67 | * // for example, you might want to remove it from here.
68 | * inputExcludes: ["android/**", "ios/**"],
69 | *
70 | * // override which node gets called and with what additional arguments
71 | * nodeExecutableAndArgs: ["node"],
72 | *
73 | * // supply additional arguments to the packager
74 | * extraPackagerArgs: []
75 | * ]
76 | */
77 |
78 | project.ext.react = [
79 | entryFile: "index.js",
80 | enableHermes: true, // clean and rebuild if changing
81 | ]
82 |
83 | apply from: "../../node_modules/react-native/react.gradle"
84 |
85 | /**
86 | * Set this to true to create two separate APKs instead of one:
87 | * - An APK that only works on ARM devices
88 | * - An APK that only works on x86 devices
89 | * The advantage is the size of the APK is reduced by about 4MB.
90 | * Upload all the APKs to the Play Store and people will download
91 | * the correct one based on the CPU architecture of their device.
92 | */
93 | def enableSeparateBuildPerCPUArchitecture = false
94 |
95 | /**
96 | * Run Proguard to shrink the Java bytecode in release builds.
97 | */
98 | def enableProguardInReleaseBuilds = false
99 |
100 | /**
101 | * The preferred build flavor of JavaScriptCore.
102 | *
103 | * For example, to use the international variant, you can use:
104 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
105 | *
106 | * The international variant includes ICU i18n library and necessary data
107 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
108 | * give correct results when using with locales other than en-US. Note that
109 | * this variant is about 6MiB larger per architecture than default.
110 | */
111 | def jscFlavor = 'org.webkit:android-jsc:+'
112 |
113 | /**
114 | * Whether to enable the Hermes VM.
115 | *
116 | * This should be set on project.ext.react and mirrored here. If it is not set
117 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
118 | * and the benefits of using Hermes will therefore be sharply reduced.
119 | */
120 | def enableHermes = project.ext.react.get("enableHermes", false);
121 |
122 | android {
123 | compileSdkVersion rootProject.ext.compileSdkVersion
124 |
125 | compileOptions {
126 | sourceCompatibility JavaVersion.VERSION_1_8
127 | targetCompatibility JavaVersion.VERSION_1_8
128 | }
129 |
130 | defaultConfig {
131 | applicationId "com.helloreactnative"
132 | minSdkVersion rootProject.ext.minSdkVersion
133 | targetSdkVersion rootProject.ext.targetSdkVersion
134 | versionCode 1
135 | versionName "2.0"
136 | }
137 | splits {
138 | abi {
139 | reset()
140 | enable enableSeparateBuildPerCPUArchitecture
141 | universalApk true // If true, also generate a universal APK
142 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
143 | }
144 | }
145 | buildTypes {
146 | release {
147 | minifyEnabled enableProguardInReleaseBuilds
148 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
149 | }
150 | }
151 | // applicationVariants are e.g. debug, release
152 | applicationVariants.all { variant ->
153 | variant.outputs.each { output ->
154 | // For each separate APK per architecture, set a unique version code as described here:
155 | // https://developer.android.com/studio/build/configure-apk-splits.html
156 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
157 | def abi = output.getFilter(OutputFile.ABI)
158 | if (abi != null) { // null for the universal-debug, universal-release variants
159 | output.versionCodeOverride =
160 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
161 | }
162 |
163 | }
164 | }
165 |
166 | packagingOptions {
167 | pickFirst '**/armeabi-v7a/libc++_shared.so'
168 | pickFirst '**/x86/libc++_shared.so'
169 | pickFirst '**/arm64-v8a/libc++_shared.so'
170 | pickFirst '**/x86_64/libc++_shared.so'
171 | pickFirst '**/x86/libjsc.so'
172 | pickFirst '**/armeabi-v7a/libjsc.so'
173 | }
174 | }
175 |
176 | dependencies {
177 | implementation fileTree(dir: "libs", include: ["*.jar"])
178 | implementation "com.facebook.react:react-native:+" // From node_modules
179 |
180 | if (enableHermes) {
181 | def hermesPath = "../../node_modules/hermes-engine/android/";
182 | debugImplementation files(hermesPath + "hermes-debug.aar")
183 | releaseImplementation files(hermesPath + "hermes-release.aar")
184 | } else {
185 | implementation jscFlavor
186 | }
187 | }
188 |
189 | // Run this once to be able to run the application with BUCK
190 | // puts all compile dependencies into folder libs for BUCK to use
191 | task copyDownloadableDepsToLibs(type: Copy) {
192 | from configurations.compile
193 | into 'libs'
194 | }
195 |
196 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
197 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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/helloreactnative/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.helloreactnative;
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. This is used to schedule
9 | * rendering of the component.
10 | */
11 | @Override
12 | protected String getMainComponentName() {
13 | return "HelloReactNative";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/android/app/src/main/java/com/helloreactnative/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.helloreactnative;
2 |
3 | import android.app.Application;
4 | import android.content.Context;
5 | import com.facebook.react.PackageList;
6 | import com.facebook.react.ReactApplication;
7 | import com.facebook.react.ReactNativeHost;
8 | import com.facebook.react.ReactPackage;
9 | import com.facebook.soloader.SoLoader;
10 | import java.lang.reflect.InvocationTargetException;
11 | import java.util.List;
12 |
13 | public class MainApplication extends Application implements ReactApplication {
14 |
15 | private final ReactNativeHost mReactNativeHost =
16 | new ReactNativeHost(this) {
17 | @Override
18 | public boolean getUseDeveloperSupport() {
19 | return BuildConfig.DEBUG;
20 | }
21 |
22 | @Override
23 | protected List getPackages() {
24 | @SuppressWarnings("UnnecessaryLocalVariable")
25 | List packages = new PackageList(this).getPackages();
26 | // Packages that cannot be autolinked yet can be added manually here, for example:
27 | // packages.add(new MyReactNativePackage());
28 | return packages;
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 | initializeFlipper(this); // Remove this line if you don't want Flipper enabled
47 | }
48 |
49 | /**
50 | * Loads Flipper in React Native templates.
51 | *
52 | * @param context
53 | */
54 | private static void initializeFlipper(Context context) {
55 | if (BuildConfig.DEBUG) {
56 | try {
57 | /*
58 | We use reflection here to pick up the class that initializes Flipper,
59 | since Flipper library is not available in release mode
60 | */
61 | Class> aClass = Class.forName("com.facebook.flipper.ReactNativeFlipper");
62 | aClass.getMethod("initializeFlipper", Context.class).invoke(null, context);
63 | } catch (ClassNotFoundException e) {
64 | e.printStackTrace();
65 | } catch (NoSuchMethodException e) {
66 | e.printStackTrace();
67 | } catch (IllegalAccessException e) {
68 | e.printStackTrace();
69 | } catch (InvocationTargetException e) {
70 | e.printStackTrace();
71 | }
72 | }
73 | }
74 | }
75 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | HelloReactNative
3 |
4 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/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 | }
10 | repositories {
11 | google()
12 | jcenter()
13 | }
14 | dependencies {
15 | classpath("com.android.tools.build:gradle:3.4.2")
16 |
17 | // NOTE: Do not place your application dependencies here; they belong
18 | // in the individual module build.gradle files
19 | }
20 | }
21 |
22 | allprojects {
23 | repositories {
24 | mavenLocal()
25 | maven {
26 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
27 | url("$rootDir/../node_modules/react-native/android")
28 | }
29 | maven {
30 | // Android JSC is installed from npm
31 | url("$rootDir/../node_modules/jsc-android/dist")
32 | }
33 |
34 | google()
35 | jcenter()
36 | maven { url 'https://jitpack.io' }
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
19 |
20 | android.useAndroidX=true
21 | android.enableJetifier=true
22 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ariya/hello-react-native/a26862123a9d0c697c7446b40af4ca3c1f66a792/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.5-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 = 'HelloReactNative'
2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
3 | include ':app'
4 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import {AppRegistry} from 'react-native';
6 | import App from './src/App';
7 |
8 | AppRegistry.registerComponent('HelloReactNative', () => App);
9 |
--------------------------------------------------------------------------------
/ios/HelloReactNative-tvOS/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 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | NSAppTransportSecurity
26 |
27 | NSExceptionDomains
28 |
29 | localhost
30 |
31 | NSExceptionAllowsInsecureHTTPLoads
32 |
33 |
34 |
35 |
36 | NSLocationWhenInUseUsageDescription
37 |
38 | UILaunchStoryboardName
39 | LaunchScreen
40 | UIRequiredDeviceCapabilities
41 |
42 | armv7
43 |
44 | UISupportedInterfaceOrientations
45 |
46 | UIInterfaceOrientationPortrait
47 | UIInterfaceOrientationLandscapeLeft
48 | UIInterfaceOrientationLandscapeRight
49 |
50 | UIViewControllerBasedStatusBarAppearance
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/ios/HelloReactNative-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/HelloReactNative.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* HelloReactNativeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* HelloReactNativeTests.m */; };
11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
12 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
13 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
16 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
17 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
18 | 2DCD954D1E0B4F2C00145EB5 /* HelloReactNativeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* HelloReactNativeTests.m */; };
19 | 33642718C8FE390DF06620B7 /* libPods-HelloReactNative-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 34F48AF178772DDFE4325B92 /* libPods-HelloReactNative-tvOS.a */; };
20 | 65A946E8C640DAF65BF2B76E /* libPods-HelloReactNative.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DE2532632C521A8E3EFF4618 /* libPods-HelloReactNative.a */; };
21 | B07B8FDE894CAB592050AB13 /* libPods-HelloReactNativeTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C576E0E3EC6EA1C8173DB05 /* libPods-HelloReactNativeTests.a */; };
22 | C110DC681F79CA3B9876E63F /* libPods-HelloReactNative-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F25C75BDED1C1A254345997D /* libPods-HelloReactNative-tvOSTests.a */; };
23 | /* End PBXBuildFile section */
24 |
25 | /* Begin PBXContainerItemProxy section */
26 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
27 | isa = PBXContainerItemProxy;
28 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
29 | proxyType = 1;
30 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
31 | remoteInfo = HelloReactNative;
32 | };
33 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
34 | isa = PBXContainerItemProxy;
35 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
36 | proxyType = 1;
37 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
38 | remoteInfo = "HelloReactNative-tvOS";
39 | };
40 | /* End PBXContainerItemProxy section */
41 |
42 | /* Begin PBXFileReference section */
43 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
44 | 00E356EE1AD99517003FC87E /* HelloReactNativeTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = HelloReactNativeTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
45 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
46 | 00E356F21AD99517003FC87E /* HelloReactNativeTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HelloReactNativeTests.m; sourceTree = ""; };
47 | 13B07F961A680F5B00A75B9A /* HelloReactNative.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HelloReactNative.app; sourceTree = BUILT_PRODUCTS_DIR; };
48 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = HelloReactNative/AppDelegate.h; sourceTree = ""; };
49 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = HelloReactNative/AppDelegate.m; sourceTree = ""; };
50 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
51 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = HelloReactNative/Images.xcassets; sourceTree = ""; };
52 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = HelloReactNative/Info.plist; sourceTree = ""; };
53 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = HelloReactNative/main.m; sourceTree = ""; };
54 | 2D02E47B1E0B4A5D006451C7 /* HelloReactNative-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "HelloReactNative-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
55 | 2D02E4901E0B4A5D006451C7 /* HelloReactNative-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "HelloReactNative-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
56 | 34F48AF178772DDFE4325B92 /* libPods-HelloReactNative-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-HelloReactNative-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
57 | 5D1B786FB4B48F36DE9244FB /* Pods-HelloReactNative-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloReactNative-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-HelloReactNative-tvOSTests/Pods-HelloReactNative-tvOSTests.debug.xcconfig"; sourceTree = ""; };
58 | 768D548E727A5A055C2AADFF /* Pods-HelloReactNative-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloReactNative-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-HelloReactNative-tvOS/Pods-HelloReactNative-tvOS.debug.xcconfig"; sourceTree = ""; };
59 | 7F2F8AE095B3A2E9E97BA0D5 /* Pods-HelloReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloReactNative.release.xcconfig"; path = "Target Support Files/Pods-HelloReactNative/Pods-HelloReactNative.release.xcconfig"; sourceTree = ""; };
60 | 8C576E0E3EC6EA1C8173DB05 /* libPods-HelloReactNativeTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-HelloReactNativeTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
61 | 910708ED652978364312E4D9 /* Pods-HelloReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloReactNative.debug.xcconfig"; path = "Target Support Files/Pods-HelloReactNative/Pods-HelloReactNative.debug.xcconfig"; sourceTree = ""; };
62 | AE3D19ABBCF3EFD6DFDBF8A7 /* Pods-HelloReactNativeTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloReactNativeTests.debug.xcconfig"; path = "Target Support Files/Pods-HelloReactNativeTests/Pods-HelloReactNativeTests.debug.xcconfig"; sourceTree = ""; };
63 | B465A7AB386EEB585392EC22 /* Pods-HelloReactNativeTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloReactNativeTests.release.xcconfig"; path = "Target Support Files/Pods-HelloReactNativeTests/Pods-HelloReactNativeTests.release.xcconfig"; sourceTree = ""; };
64 | B88D387A01722EFCC14873BA /* Pods-HelloReactNative-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloReactNative-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-HelloReactNative-tvOSTests/Pods-HelloReactNative-tvOSTests.release.xcconfig"; sourceTree = ""; };
65 | C68D7AEA4CD280D7E05388EB /* Pods-HelloReactNative-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloReactNative-tvOS.release.xcconfig"; path = "Target Support Files/Pods-HelloReactNative-tvOS/Pods-HelloReactNative-tvOS.release.xcconfig"; sourceTree = ""; };
66 | DE2532632C521A8E3EFF4618 /* libPods-HelloReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-HelloReactNative.a"; sourceTree = BUILT_PRODUCTS_DIR; };
67 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
68 | 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; };
69 | F25C75BDED1C1A254345997D /* libPods-HelloReactNative-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-HelloReactNative-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
70 | /* End PBXFileReference section */
71 |
72 | /* Begin PBXFrameworksBuildPhase section */
73 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
74 | isa = PBXFrameworksBuildPhase;
75 | buildActionMask = 2147483647;
76 | files = (
77 | B07B8FDE894CAB592050AB13 /* libPods-HelloReactNativeTests.a in Frameworks */,
78 | );
79 | runOnlyForDeploymentPostprocessing = 0;
80 | };
81 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
82 | isa = PBXFrameworksBuildPhase;
83 | buildActionMask = 2147483647;
84 | files = (
85 | 65A946E8C640DAF65BF2B76E /* libPods-HelloReactNative.a in Frameworks */,
86 | );
87 | runOnlyForDeploymentPostprocessing = 0;
88 | };
89 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
90 | isa = PBXFrameworksBuildPhase;
91 | buildActionMask = 2147483647;
92 | files = (
93 | 33642718C8FE390DF06620B7 /* libPods-HelloReactNative-tvOS.a in Frameworks */,
94 | );
95 | runOnlyForDeploymentPostprocessing = 0;
96 | };
97 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
98 | isa = PBXFrameworksBuildPhase;
99 | buildActionMask = 2147483647;
100 | files = (
101 | C110DC681F79CA3B9876E63F /* libPods-HelloReactNative-tvOSTests.a in Frameworks */,
102 | );
103 | runOnlyForDeploymentPostprocessing = 0;
104 | };
105 | /* End PBXFrameworksBuildPhase section */
106 |
107 | /* Begin PBXGroup section */
108 | 00E356EF1AD99517003FC87E /* HelloReactNativeTests */ = {
109 | isa = PBXGroup;
110 | children = (
111 | 00E356F21AD99517003FC87E /* HelloReactNativeTests.m */,
112 | 00E356F01AD99517003FC87E /* Supporting Files */,
113 | );
114 | path = HelloReactNativeTests;
115 | sourceTree = "";
116 | };
117 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
118 | isa = PBXGroup;
119 | children = (
120 | 00E356F11AD99517003FC87E /* Info.plist */,
121 | );
122 | name = "Supporting Files";
123 | sourceTree = "";
124 | };
125 | 13B07FAE1A68108700A75B9A /* HelloReactNative */ = {
126 | isa = PBXGroup;
127 | children = (
128 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
129 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
130 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
131 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
132 | 13B07FB61A68108700A75B9A /* Info.plist */,
133 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
134 | 13B07FB71A68108700A75B9A /* main.m */,
135 | );
136 | name = HelloReactNative;
137 | sourceTree = "";
138 | };
139 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
140 | isa = PBXGroup;
141 | children = (
142 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
143 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
144 | DE2532632C521A8E3EFF4618 /* libPods-HelloReactNative.a */,
145 | 34F48AF178772DDFE4325B92 /* libPods-HelloReactNative-tvOS.a */,
146 | F25C75BDED1C1A254345997D /* libPods-HelloReactNative-tvOSTests.a */,
147 | 8C576E0E3EC6EA1C8173DB05 /* libPods-HelloReactNativeTests.a */,
148 | );
149 | name = Frameworks;
150 | sourceTree = "";
151 | };
152 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
153 | isa = PBXGroup;
154 | children = (
155 | );
156 | name = Libraries;
157 | sourceTree = "";
158 | };
159 | 83CBB9F61A601CBA00E9B192 = {
160 | isa = PBXGroup;
161 | children = (
162 | 13B07FAE1A68108700A75B9A /* HelloReactNative */,
163 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
164 | 00E356EF1AD99517003FC87E /* HelloReactNativeTests */,
165 | 83CBBA001A601CBA00E9B192 /* Products */,
166 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
167 | 8E40B1B58A0524322611B9C0 /* Pods */,
168 | );
169 | indentWidth = 2;
170 | sourceTree = "";
171 | tabWidth = 2;
172 | usesTabs = 0;
173 | };
174 | 83CBBA001A601CBA00E9B192 /* Products */ = {
175 | isa = PBXGroup;
176 | children = (
177 | 13B07F961A680F5B00A75B9A /* HelloReactNative.app */,
178 | 00E356EE1AD99517003FC87E /* HelloReactNativeTests.xctest */,
179 | 2D02E47B1E0B4A5D006451C7 /* HelloReactNative-tvOS.app */,
180 | 2D02E4901E0B4A5D006451C7 /* HelloReactNative-tvOSTests.xctest */,
181 | );
182 | name = Products;
183 | sourceTree = "";
184 | };
185 | 8E40B1B58A0524322611B9C0 /* Pods */ = {
186 | isa = PBXGroup;
187 | children = (
188 | 910708ED652978364312E4D9 /* Pods-HelloReactNative.debug.xcconfig */,
189 | 7F2F8AE095B3A2E9E97BA0D5 /* Pods-HelloReactNative.release.xcconfig */,
190 | 768D548E727A5A055C2AADFF /* Pods-HelloReactNative-tvOS.debug.xcconfig */,
191 | C68D7AEA4CD280D7E05388EB /* Pods-HelloReactNative-tvOS.release.xcconfig */,
192 | 5D1B786FB4B48F36DE9244FB /* Pods-HelloReactNative-tvOSTests.debug.xcconfig */,
193 | B88D387A01722EFCC14873BA /* Pods-HelloReactNative-tvOSTests.release.xcconfig */,
194 | AE3D19ABBCF3EFD6DFDBF8A7 /* Pods-HelloReactNativeTests.debug.xcconfig */,
195 | B465A7AB386EEB585392EC22 /* Pods-HelloReactNativeTests.release.xcconfig */,
196 | );
197 | name = Pods;
198 | path = Pods;
199 | sourceTree = "";
200 | };
201 | /* End PBXGroup section */
202 |
203 | /* Begin PBXNativeTarget section */
204 | 00E356ED1AD99517003FC87E /* HelloReactNativeTests */ = {
205 | isa = PBXNativeTarget;
206 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "HelloReactNativeTests" */;
207 | buildPhases = (
208 | BF73C59E62FF7617B717CA6F /* [CP] Check Pods Manifest.lock */,
209 | 00E356EA1AD99517003FC87E /* Sources */,
210 | 00E356EB1AD99517003FC87E /* Frameworks */,
211 | 00E356EC1AD99517003FC87E /* Resources */,
212 | );
213 | buildRules = (
214 | );
215 | dependencies = (
216 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
217 | );
218 | name = HelloReactNativeTests;
219 | productName = HelloReactNativeTests;
220 | productReference = 00E356EE1AD99517003FC87E /* HelloReactNativeTests.xctest */;
221 | productType = "com.apple.product-type.bundle.unit-test";
222 | };
223 | 13B07F861A680F5B00A75B9A /* HelloReactNative */ = {
224 | isa = PBXNativeTarget;
225 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "HelloReactNative" */;
226 | buildPhases = (
227 | 934D488141524B740F99B8B7 /* [CP] Check Pods Manifest.lock */,
228 | FD10A7F022414F080027D42C /* Start Packager */,
229 | 13B07F871A680F5B00A75B9A /* Sources */,
230 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
231 | 13B07F8E1A680F5B00A75B9A /* Resources */,
232 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
233 | );
234 | buildRules = (
235 | );
236 | dependencies = (
237 | );
238 | name = HelloReactNative;
239 | productName = HelloReactNative;
240 | productReference = 13B07F961A680F5B00A75B9A /* HelloReactNative.app */;
241 | productType = "com.apple.product-type.application";
242 | };
243 | 2D02E47A1E0B4A5D006451C7 /* HelloReactNative-tvOS */ = {
244 | isa = PBXNativeTarget;
245 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "HelloReactNative-tvOS" */;
246 | buildPhases = (
247 | EAFD999E3F987B8A2E0CABA5 /* [CP] Check Pods Manifest.lock */,
248 | FD10A7F122414F3F0027D42C /* Start Packager */,
249 | 2D02E4771E0B4A5D006451C7 /* Sources */,
250 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
251 | 2D02E4791E0B4A5D006451C7 /* Resources */,
252 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
253 | );
254 | buildRules = (
255 | );
256 | dependencies = (
257 | );
258 | name = "HelloReactNative-tvOS";
259 | productName = "HelloReactNative-tvOS";
260 | productReference = 2D02E47B1E0B4A5D006451C7 /* HelloReactNative-tvOS.app */;
261 | productType = "com.apple.product-type.application";
262 | };
263 | 2D02E48F1E0B4A5D006451C7 /* HelloReactNative-tvOSTests */ = {
264 | isa = PBXNativeTarget;
265 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "HelloReactNative-tvOSTests" */;
266 | buildPhases = (
267 | 8B2579CDD8A9302F8EBF4F32 /* [CP] Check Pods Manifest.lock */,
268 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
269 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
270 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
271 | );
272 | buildRules = (
273 | );
274 | dependencies = (
275 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
276 | );
277 | name = "HelloReactNative-tvOSTests";
278 | productName = "HelloReactNative-tvOSTests";
279 | productReference = 2D02E4901E0B4A5D006451C7 /* HelloReactNative-tvOSTests.xctest */;
280 | productType = "com.apple.product-type.bundle.unit-test";
281 | };
282 | /* End PBXNativeTarget section */
283 |
284 | /* Begin PBXProject section */
285 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
286 | isa = PBXProject;
287 | attributes = {
288 | LastUpgradeCheck = 0940;
289 | ORGANIZATIONNAME = Facebook;
290 | TargetAttributes = {
291 | 00E356ED1AD99517003FC87E = {
292 | CreatedOnToolsVersion = 6.2;
293 | TestTargetID = 13B07F861A680F5B00A75B9A;
294 | };
295 | 2D02E47A1E0B4A5D006451C7 = {
296 | CreatedOnToolsVersion = 8.2.1;
297 | ProvisioningStyle = Automatic;
298 | };
299 | 2D02E48F1E0B4A5D006451C7 = {
300 | CreatedOnToolsVersion = 8.2.1;
301 | ProvisioningStyle = Automatic;
302 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
303 | };
304 | };
305 | };
306 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "HelloReactNative" */;
307 | compatibilityVersion = "Xcode 3.2";
308 | developmentRegion = English;
309 | hasScannedForEncodings = 0;
310 | knownRegions = (
311 | en,
312 | Base,
313 | );
314 | mainGroup = 83CBB9F61A601CBA00E9B192;
315 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
316 | projectDirPath = "";
317 | projectRoot = "";
318 | targets = (
319 | 13B07F861A680F5B00A75B9A /* HelloReactNative */,
320 | 00E356ED1AD99517003FC87E /* HelloReactNativeTests */,
321 | 2D02E47A1E0B4A5D006451C7 /* HelloReactNative-tvOS */,
322 | 2D02E48F1E0B4A5D006451C7 /* HelloReactNative-tvOSTests */,
323 | );
324 | };
325 | /* End PBXProject section */
326 |
327 | /* Begin PBXResourcesBuildPhase section */
328 | 00E356EC1AD99517003FC87E /* Resources */ = {
329 | isa = PBXResourcesBuildPhase;
330 | buildActionMask = 2147483647;
331 | files = (
332 | );
333 | runOnlyForDeploymentPostprocessing = 0;
334 | };
335 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
336 | isa = PBXResourcesBuildPhase;
337 | buildActionMask = 2147483647;
338 | files = (
339 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
340 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
341 | );
342 | runOnlyForDeploymentPostprocessing = 0;
343 | };
344 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
345 | isa = PBXResourcesBuildPhase;
346 | buildActionMask = 2147483647;
347 | files = (
348 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
349 | );
350 | runOnlyForDeploymentPostprocessing = 0;
351 | };
352 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
353 | isa = PBXResourcesBuildPhase;
354 | buildActionMask = 2147483647;
355 | files = (
356 | );
357 | runOnlyForDeploymentPostprocessing = 0;
358 | };
359 | /* End PBXResourcesBuildPhase section */
360 |
361 | /* Begin PBXShellScriptBuildPhase section */
362 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
363 | isa = PBXShellScriptBuildPhase;
364 | buildActionMask = 2147483647;
365 | files = (
366 | );
367 | inputPaths = (
368 | );
369 | name = "Bundle React Native code and images";
370 | outputPaths = (
371 | );
372 | runOnlyForDeploymentPostprocessing = 0;
373 | shellPath = /bin/sh;
374 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
375 | };
376 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
377 | isa = PBXShellScriptBuildPhase;
378 | buildActionMask = 2147483647;
379 | files = (
380 | );
381 | inputPaths = (
382 | );
383 | name = "Bundle React Native Code And Images";
384 | outputPaths = (
385 | );
386 | runOnlyForDeploymentPostprocessing = 0;
387 | shellPath = /bin/sh;
388 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
389 | };
390 | 8B2579CDD8A9302F8EBF4F32 /* [CP] Check Pods Manifest.lock */ = {
391 | isa = PBXShellScriptBuildPhase;
392 | buildActionMask = 2147483647;
393 | files = (
394 | );
395 | inputFileListPaths = (
396 | );
397 | inputPaths = (
398 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
399 | "${PODS_ROOT}/Manifest.lock",
400 | );
401 | name = "[CP] Check Pods Manifest.lock";
402 | outputFileListPaths = (
403 | );
404 | outputPaths = (
405 | "$(DERIVED_FILE_DIR)/Pods-HelloReactNative-tvOSTests-checkManifestLockResult.txt",
406 | );
407 | runOnlyForDeploymentPostprocessing = 0;
408 | shellPath = /bin/sh;
409 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
410 | showEnvVarsInLog = 0;
411 | };
412 | 934D488141524B740F99B8B7 /* [CP] Check Pods Manifest.lock */ = {
413 | isa = PBXShellScriptBuildPhase;
414 | buildActionMask = 2147483647;
415 | files = (
416 | );
417 | inputFileListPaths = (
418 | );
419 | inputPaths = (
420 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
421 | "${PODS_ROOT}/Manifest.lock",
422 | );
423 | name = "[CP] Check Pods Manifest.lock";
424 | outputFileListPaths = (
425 | );
426 | outputPaths = (
427 | "$(DERIVED_FILE_DIR)/Pods-HelloReactNative-checkManifestLockResult.txt",
428 | );
429 | runOnlyForDeploymentPostprocessing = 0;
430 | shellPath = /bin/sh;
431 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
432 | showEnvVarsInLog = 0;
433 | };
434 | BF73C59E62FF7617B717CA6F /* [CP] Check Pods Manifest.lock */ = {
435 | isa = PBXShellScriptBuildPhase;
436 | buildActionMask = 2147483647;
437 | files = (
438 | );
439 | inputFileListPaths = (
440 | );
441 | inputPaths = (
442 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
443 | "${PODS_ROOT}/Manifest.lock",
444 | );
445 | name = "[CP] Check Pods Manifest.lock";
446 | outputFileListPaths = (
447 | );
448 | outputPaths = (
449 | "$(DERIVED_FILE_DIR)/Pods-HelloReactNativeTests-checkManifestLockResult.txt",
450 | );
451 | runOnlyForDeploymentPostprocessing = 0;
452 | shellPath = /bin/sh;
453 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
454 | showEnvVarsInLog = 0;
455 | };
456 | EAFD999E3F987B8A2E0CABA5 /* [CP] Check Pods Manifest.lock */ = {
457 | isa = PBXShellScriptBuildPhase;
458 | buildActionMask = 2147483647;
459 | files = (
460 | );
461 | inputFileListPaths = (
462 | );
463 | inputPaths = (
464 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
465 | "${PODS_ROOT}/Manifest.lock",
466 | );
467 | name = "[CP] Check Pods Manifest.lock";
468 | outputFileListPaths = (
469 | );
470 | outputPaths = (
471 | "$(DERIVED_FILE_DIR)/Pods-HelloReactNative-tvOS-checkManifestLockResult.txt",
472 | );
473 | runOnlyForDeploymentPostprocessing = 0;
474 | shellPath = /bin/sh;
475 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
476 | showEnvVarsInLog = 0;
477 | };
478 | FD10A7F022414F080027D42C /* Start Packager */ = {
479 | isa = PBXShellScriptBuildPhase;
480 | buildActionMask = 2147483647;
481 | files = (
482 | );
483 | inputFileListPaths = (
484 | );
485 | inputPaths = (
486 | );
487 | name = "Start Packager";
488 | outputFileListPaths = (
489 | );
490 | outputPaths = (
491 | );
492 | runOnlyForDeploymentPostprocessing = 0;
493 | shellPath = /bin/sh;
494 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
495 | showEnvVarsInLog = 0;
496 | };
497 | FD10A7F122414F3F0027D42C /* Start Packager */ = {
498 | isa = PBXShellScriptBuildPhase;
499 | buildActionMask = 2147483647;
500 | files = (
501 | );
502 | inputFileListPaths = (
503 | );
504 | inputPaths = (
505 | );
506 | name = "Start Packager";
507 | outputFileListPaths = (
508 | );
509 | outputPaths = (
510 | );
511 | runOnlyForDeploymentPostprocessing = 0;
512 | shellPath = /bin/sh;
513 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
514 | showEnvVarsInLog = 0;
515 | };
516 | /* End PBXShellScriptBuildPhase section */
517 |
518 | /* Begin PBXSourcesBuildPhase section */
519 | 00E356EA1AD99517003FC87E /* Sources */ = {
520 | isa = PBXSourcesBuildPhase;
521 | buildActionMask = 2147483647;
522 | files = (
523 | 00E356F31AD99517003FC87E /* HelloReactNativeTests.m in Sources */,
524 | );
525 | runOnlyForDeploymentPostprocessing = 0;
526 | };
527 | 13B07F871A680F5B00A75B9A /* Sources */ = {
528 | isa = PBXSourcesBuildPhase;
529 | buildActionMask = 2147483647;
530 | files = (
531 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
532 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
533 | );
534 | runOnlyForDeploymentPostprocessing = 0;
535 | };
536 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
537 | isa = PBXSourcesBuildPhase;
538 | buildActionMask = 2147483647;
539 | files = (
540 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
541 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
542 | );
543 | runOnlyForDeploymentPostprocessing = 0;
544 | };
545 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
546 | isa = PBXSourcesBuildPhase;
547 | buildActionMask = 2147483647;
548 | files = (
549 | 2DCD954D1E0B4F2C00145EB5 /* HelloReactNativeTests.m in Sources */,
550 | );
551 | runOnlyForDeploymentPostprocessing = 0;
552 | };
553 | /* End PBXSourcesBuildPhase section */
554 |
555 | /* Begin PBXTargetDependency section */
556 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
557 | isa = PBXTargetDependency;
558 | target = 13B07F861A680F5B00A75B9A /* HelloReactNative */;
559 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
560 | };
561 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
562 | isa = PBXTargetDependency;
563 | target = 2D02E47A1E0B4A5D006451C7 /* HelloReactNative-tvOS */;
564 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
565 | };
566 | /* End PBXTargetDependency section */
567 |
568 | /* Begin PBXVariantGroup section */
569 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
570 | isa = PBXVariantGroup;
571 | children = (
572 | 13B07FB21A68108700A75B9A /* Base */,
573 | );
574 | name = LaunchScreen.xib;
575 | path = HelloReactNative;
576 | sourceTree = "";
577 | };
578 | /* End PBXVariantGroup section */
579 |
580 | /* Begin XCBuildConfiguration section */
581 | 00E356F61AD99517003FC87E /* Debug */ = {
582 | isa = XCBuildConfiguration;
583 | baseConfigurationReference = AE3D19ABBCF3EFD6DFDBF8A7 /* Pods-HelloReactNativeTests.debug.xcconfig */;
584 | buildSettings = {
585 | BUNDLE_LOADER = "$(TEST_HOST)";
586 | GCC_PREPROCESSOR_DEFINITIONS = (
587 | "DEBUG=1",
588 | "$(inherited)",
589 | );
590 | INFOPLIST_FILE = HelloReactNativeTests/Info.plist;
591 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
592 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
593 | OTHER_LDFLAGS = (
594 | "-ObjC",
595 | "-lc++",
596 | "$(inherited)",
597 | );
598 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
599 | PRODUCT_NAME = "$(TARGET_NAME)";
600 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HelloReactNative.app/HelloReactNative";
601 | };
602 | name = Debug;
603 | };
604 | 00E356F71AD99517003FC87E /* Release */ = {
605 | isa = XCBuildConfiguration;
606 | baseConfigurationReference = B465A7AB386EEB585392EC22 /* Pods-HelloReactNativeTests.release.xcconfig */;
607 | buildSettings = {
608 | BUNDLE_LOADER = "$(TEST_HOST)";
609 | COPY_PHASE_STRIP = NO;
610 | INFOPLIST_FILE = HelloReactNativeTests/Info.plist;
611 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
612 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
613 | OTHER_LDFLAGS = (
614 | "-ObjC",
615 | "-lc++",
616 | "$(inherited)",
617 | );
618 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
619 | PRODUCT_NAME = "$(TARGET_NAME)";
620 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HelloReactNative.app/HelloReactNative";
621 | };
622 | name = Release;
623 | };
624 | 13B07F941A680F5B00A75B9A /* Debug */ = {
625 | isa = XCBuildConfiguration;
626 | baseConfigurationReference = 910708ED652978364312E4D9 /* Pods-HelloReactNative.debug.xcconfig */;
627 | buildSettings = {
628 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
629 | CURRENT_PROJECT_VERSION = 1;
630 | DEAD_CODE_STRIPPING = NO;
631 | INFOPLIST_FILE = HelloReactNative/Info.plist;
632 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
633 | OTHER_LDFLAGS = (
634 | "$(inherited)",
635 | "-ObjC",
636 | "-lc++",
637 | );
638 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
639 | PRODUCT_NAME = HelloReactNative;
640 | VERSIONING_SYSTEM = "apple-generic";
641 | };
642 | name = Debug;
643 | };
644 | 13B07F951A680F5B00A75B9A /* Release */ = {
645 | isa = XCBuildConfiguration;
646 | baseConfigurationReference = 7F2F8AE095B3A2E9E97BA0D5 /* Pods-HelloReactNative.release.xcconfig */;
647 | buildSettings = {
648 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
649 | CURRENT_PROJECT_VERSION = 1;
650 | INFOPLIST_FILE = HelloReactNative/Info.plist;
651 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
652 | OTHER_LDFLAGS = (
653 | "$(inherited)",
654 | "-ObjC",
655 | "-lc++",
656 | );
657 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
658 | PRODUCT_NAME = HelloReactNative;
659 | VERSIONING_SYSTEM = "apple-generic";
660 | };
661 | name = Release;
662 | };
663 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
664 | isa = XCBuildConfiguration;
665 | baseConfigurationReference = 768D548E727A5A055C2AADFF /* Pods-HelloReactNative-tvOS.debug.xcconfig */;
666 | buildSettings = {
667 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
668 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
669 | CLANG_ANALYZER_NONNULL = YES;
670 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
671 | CLANG_WARN_INFINITE_RECURSION = YES;
672 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
673 | DEBUG_INFORMATION_FORMAT = dwarf;
674 | ENABLE_TESTABILITY = YES;
675 | GCC_NO_COMMON_BLOCKS = YES;
676 | INFOPLIST_FILE = "HelloReactNative-tvOS/Info.plist";
677 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
678 | OTHER_LDFLAGS = (
679 | "$(inherited)",
680 | "-ObjC",
681 | "-lc++",
682 | );
683 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.HelloReactNative-tvOS";
684 | PRODUCT_NAME = "$(TARGET_NAME)";
685 | SDKROOT = appletvos;
686 | TARGETED_DEVICE_FAMILY = 3;
687 | TVOS_DEPLOYMENT_TARGET = 9.2;
688 | };
689 | name = Debug;
690 | };
691 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
692 | isa = XCBuildConfiguration;
693 | baseConfigurationReference = C68D7AEA4CD280D7E05388EB /* Pods-HelloReactNative-tvOS.release.xcconfig */;
694 | buildSettings = {
695 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
696 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
697 | CLANG_ANALYZER_NONNULL = YES;
698 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
699 | CLANG_WARN_INFINITE_RECURSION = YES;
700 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
701 | COPY_PHASE_STRIP = NO;
702 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
703 | GCC_NO_COMMON_BLOCKS = YES;
704 | INFOPLIST_FILE = "HelloReactNative-tvOS/Info.plist";
705 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
706 | OTHER_LDFLAGS = (
707 | "$(inherited)",
708 | "-ObjC",
709 | "-lc++",
710 | );
711 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.HelloReactNative-tvOS";
712 | PRODUCT_NAME = "$(TARGET_NAME)";
713 | SDKROOT = appletvos;
714 | TARGETED_DEVICE_FAMILY = 3;
715 | TVOS_DEPLOYMENT_TARGET = 9.2;
716 | };
717 | name = Release;
718 | };
719 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
720 | isa = XCBuildConfiguration;
721 | baseConfigurationReference = 5D1B786FB4B48F36DE9244FB /* Pods-HelloReactNative-tvOSTests.debug.xcconfig */;
722 | buildSettings = {
723 | BUNDLE_LOADER = "$(TEST_HOST)";
724 | CLANG_ANALYZER_NONNULL = YES;
725 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
726 | CLANG_WARN_INFINITE_RECURSION = YES;
727 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
728 | DEBUG_INFORMATION_FORMAT = dwarf;
729 | ENABLE_TESTABILITY = YES;
730 | GCC_NO_COMMON_BLOCKS = YES;
731 | INFOPLIST_FILE = "HelloReactNative-tvOSTests/Info.plist";
732 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
733 | OTHER_LDFLAGS = (
734 | "$(inherited)",
735 | "-ObjC",
736 | "-lc++",
737 | );
738 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.HelloReactNative-tvOSTests";
739 | PRODUCT_NAME = "$(TARGET_NAME)";
740 | SDKROOT = appletvos;
741 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HelloReactNative-tvOS.app/HelloReactNative-tvOS";
742 | TVOS_DEPLOYMENT_TARGET = 10.1;
743 | };
744 | name = Debug;
745 | };
746 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
747 | isa = XCBuildConfiguration;
748 | baseConfigurationReference = B88D387A01722EFCC14873BA /* Pods-HelloReactNative-tvOSTests.release.xcconfig */;
749 | buildSettings = {
750 | BUNDLE_LOADER = "$(TEST_HOST)";
751 | CLANG_ANALYZER_NONNULL = YES;
752 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
753 | CLANG_WARN_INFINITE_RECURSION = YES;
754 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
755 | COPY_PHASE_STRIP = NO;
756 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
757 | GCC_NO_COMMON_BLOCKS = YES;
758 | INFOPLIST_FILE = "HelloReactNative-tvOSTests/Info.plist";
759 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
760 | OTHER_LDFLAGS = (
761 | "$(inherited)",
762 | "-ObjC",
763 | "-lc++",
764 | );
765 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.HelloReactNative-tvOSTests";
766 | PRODUCT_NAME = "$(TARGET_NAME)";
767 | SDKROOT = appletvos;
768 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HelloReactNative-tvOS.app/HelloReactNative-tvOS";
769 | TVOS_DEPLOYMENT_TARGET = 10.1;
770 | };
771 | name = Release;
772 | };
773 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
774 | isa = XCBuildConfiguration;
775 | buildSettings = {
776 | ALWAYS_SEARCH_USER_PATHS = NO;
777 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
778 | CLANG_CXX_LIBRARY = "libc++";
779 | CLANG_ENABLE_MODULES = YES;
780 | CLANG_ENABLE_OBJC_ARC = YES;
781 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
782 | CLANG_WARN_BOOL_CONVERSION = YES;
783 | CLANG_WARN_COMMA = YES;
784 | CLANG_WARN_CONSTANT_CONVERSION = YES;
785 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
786 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
787 | CLANG_WARN_EMPTY_BODY = YES;
788 | CLANG_WARN_ENUM_CONVERSION = YES;
789 | CLANG_WARN_INFINITE_RECURSION = YES;
790 | CLANG_WARN_INT_CONVERSION = YES;
791 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
792 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
793 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
794 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
795 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
796 | CLANG_WARN_STRICT_PROTOTYPES = YES;
797 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
798 | CLANG_WARN_UNREACHABLE_CODE = YES;
799 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
800 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
801 | COPY_PHASE_STRIP = NO;
802 | ENABLE_STRICT_OBJC_MSGSEND = YES;
803 | ENABLE_TESTABILITY = YES;
804 | GCC_C_LANGUAGE_STANDARD = gnu99;
805 | GCC_DYNAMIC_NO_PIC = NO;
806 | GCC_NO_COMMON_BLOCKS = YES;
807 | GCC_OPTIMIZATION_LEVEL = 0;
808 | GCC_PREPROCESSOR_DEFINITIONS = (
809 | "DEBUG=1",
810 | "$(inherited)",
811 | );
812 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
813 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
814 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
815 | GCC_WARN_UNDECLARED_SELECTOR = YES;
816 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
817 | GCC_WARN_UNUSED_FUNCTION = YES;
818 | GCC_WARN_UNUSED_VARIABLE = YES;
819 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
820 | MTL_ENABLE_DEBUG_INFO = YES;
821 | ONLY_ACTIVE_ARCH = YES;
822 | SDKROOT = iphoneos;
823 | };
824 | name = Debug;
825 | };
826 | 83CBBA211A601CBA00E9B192 /* Release */ = {
827 | isa = XCBuildConfiguration;
828 | buildSettings = {
829 | ALWAYS_SEARCH_USER_PATHS = NO;
830 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
831 | CLANG_CXX_LIBRARY = "libc++";
832 | CLANG_ENABLE_MODULES = YES;
833 | CLANG_ENABLE_OBJC_ARC = YES;
834 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
835 | CLANG_WARN_BOOL_CONVERSION = YES;
836 | CLANG_WARN_COMMA = YES;
837 | CLANG_WARN_CONSTANT_CONVERSION = YES;
838 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
839 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
840 | CLANG_WARN_EMPTY_BODY = YES;
841 | CLANG_WARN_ENUM_CONVERSION = YES;
842 | CLANG_WARN_INFINITE_RECURSION = YES;
843 | CLANG_WARN_INT_CONVERSION = YES;
844 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
845 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
846 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
847 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
848 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
849 | CLANG_WARN_STRICT_PROTOTYPES = YES;
850 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
851 | CLANG_WARN_UNREACHABLE_CODE = YES;
852 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
853 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
854 | COPY_PHASE_STRIP = YES;
855 | ENABLE_NS_ASSERTIONS = NO;
856 | ENABLE_STRICT_OBJC_MSGSEND = YES;
857 | GCC_C_LANGUAGE_STANDARD = gnu99;
858 | GCC_NO_COMMON_BLOCKS = YES;
859 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
860 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
861 | GCC_WARN_UNDECLARED_SELECTOR = YES;
862 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
863 | GCC_WARN_UNUSED_FUNCTION = YES;
864 | GCC_WARN_UNUSED_VARIABLE = YES;
865 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
866 | MTL_ENABLE_DEBUG_INFO = NO;
867 | SDKROOT = iphoneos;
868 | VALIDATE_PRODUCT = YES;
869 | };
870 | name = Release;
871 | };
872 | /* End XCBuildConfiguration section */
873 |
874 | /* Begin XCConfigurationList section */
875 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "HelloReactNativeTests" */ = {
876 | isa = XCConfigurationList;
877 | buildConfigurations = (
878 | 00E356F61AD99517003FC87E /* Debug */,
879 | 00E356F71AD99517003FC87E /* Release */,
880 | );
881 | defaultConfigurationIsVisible = 0;
882 | defaultConfigurationName = Release;
883 | };
884 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "HelloReactNative" */ = {
885 | isa = XCConfigurationList;
886 | buildConfigurations = (
887 | 13B07F941A680F5B00A75B9A /* Debug */,
888 | 13B07F951A680F5B00A75B9A /* Release */,
889 | );
890 | defaultConfigurationIsVisible = 0;
891 | defaultConfigurationName = Release;
892 | };
893 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "HelloReactNative-tvOS" */ = {
894 | isa = XCConfigurationList;
895 | buildConfigurations = (
896 | 2D02E4971E0B4A5E006451C7 /* Debug */,
897 | 2D02E4981E0B4A5E006451C7 /* Release */,
898 | );
899 | defaultConfigurationIsVisible = 0;
900 | defaultConfigurationName = Release;
901 | };
902 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "HelloReactNative-tvOSTests" */ = {
903 | isa = XCConfigurationList;
904 | buildConfigurations = (
905 | 2D02E4991E0B4A5E006451C7 /* Debug */,
906 | 2D02E49A1E0B4A5E006451C7 /* Release */,
907 | );
908 | defaultConfigurationIsVisible = 0;
909 | defaultConfigurationName = Release;
910 | };
911 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "HelloReactNative" */ = {
912 | isa = XCConfigurationList;
913 | buildConfigurations = (
914 | 83CBBA201A601CBA00E9B192 /* Debug */,
915 | 83CBBA211A601CBA00E9B192 /* Release */,
916 | );
917 | defaultConfigurationIsVisible = 0;
918 | defaultConfigurationName = Release;
919 | };
920 | /* End XCConfigurationList section */
921 | };
922 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
923 | }
924 |
--------------------------------------------------------------------------------
/ios/HelloReactNative.xcodeproj/xcshareddata/xcschemes/HelloReactNative-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/HelloReactNative.xcodeproj/xcshareddata/xcschemes/HelloReactNative.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/HelloReactNative.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ios/HelloReactNative/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/HelloReactNative/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:@"HelloReactNative"
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/HelloReactNative/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/HelloReactNative/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/HelloReactNative/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/ios/HelloReactNative/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | HelloReactNative
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 | NSAppTransportSecurity
28 |
29 | NSAllowsArbitraryLoads
30 |
31 | NSExceptionDomains
32 |
33 | localhost
34 |
35 | NSExceptionAllowsInsecureHTTPLoads
36 |
37 |
38 |
39 |
40 | NSLocationWhenInUseUsageDescription
41 |
42 | UILaunchStoryboardName
43 | LaunchScreen
44 | UIRequiredDeviceCapabilities
45 |
46 | armv7
47 |
48 | UISupportedInterfaceOrientations
49 |
50 | UIInterfaceOrientationPortrait
51 | UIInterfaceOrientationLandscapeLeft
52 | UIInterfaceOrientationLandscapeRight
53 |
54 | UIViewControllerBasedStatusBarAppearance
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/ios/HelloReactNative/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/HelloReactNativeTests/HelloReactNativeTests.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"
16 |
17 | @interface HelloReactNativeTests : XCTestCase
18 |
19 | @end
20 |
21 | @implementation HelloReactNativeTests
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 | #ifdef DEBUG
44 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
45 | if (level >= RCTLogLevelError) {
46 | redboxError = message;
47 | }
48 | });
49 | #endif
50 |
51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
54 |
55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
57 | return YES;
58 | }
59 | return NO;
60 | }];
61 | }
62 |
63 | #ifdef DEBUG
64 | RCTSetLogFunction(RCTDefaultLogFunction);
65 | #endif
66 |
67 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
68 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
69 | }
70 |
71 |
72 | @end
73 |
--------------------------------------------------------------------------------
/ios/HelloReactNativeTests/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/Podfile:
--------------------------------------------------------------------------------
1 | platform :ios, '9.0'
2 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
3 |
4 | target 'HelloReactNative' do
5 | # Pods for HelloReactNative
6 | pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
7 | pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
8 | pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
9 | pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
10 | pod 'React', :path => '../node_modules/react-native/'
11 | pod 'React-Core', :path => '../node_modules/react-native/'
12 | pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
13 | pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
14 | pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
15 | pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
16 | pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
17 | pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
18 | pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
19 | pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
20 | pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
21 | pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
22 | pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
23 | pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
24 |
25 | pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
26 | pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
27 | pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
28 | pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
29 | pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
30 | pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
31 | pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
32 |
33 | pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
34 | pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
35 | pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
36 |
37 | target 'HelloReactNativeTests' do
38 | inherit! :search_paths
39 | # Pods for testing
40 | end
41 |
42 | use_native_modules!
43 | end
44 |
45 | target 'HelloReactNative-tvOS' do
46 | # Pods for HelloReactNative-tvOS
47 |
48 | target 'HelloReactNative-tvOSTests' do
49 | inherit! :search_paths
50 | # Pods for testing
51 | end
52 |
53 | end
54 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost-for-react-native (1.63.0)
3 | - DoubleConversion (1.1.6)
4 | - FBLazyVector (0.61.4)
5 | - FBReactNativeSpec (0.61.4):
6 | - Folly (= 2018.10.22.00)
7 | - RCTRequired (= 0.61.4)
8 | - RCTTypeSafety (= 0.61.4)
9 | - React-Core (= 0.61.4)
10 | - React-jsi (= 0.61.4)
11 | - ReactCommon/turbomodule/core (= 0.61.4)
12 | - Folly (2018.10.22.00):
13 | - boost-for-react-native
14 | - DoubleConversion
15 | - Folly/Default (= 2018.10.22.00)
16 | - glog
17 | - Folly/Default (2018.10.22.00):
18 | - boost-for-react-native
19 | - DoubleConversion
20 | - glog
21 | - glog (0.3.5)
22 | - RCTRequired (0.61.4)
23 | - RCTTypeSafety (0.61.4):
24 | - FBLazyVector (= 0.61.4)
25 | - Folly (= 2018.10.22.00)
26 | - RCTRequired (= 0.61.4)
27 | - React-Core (= 0.61.4)
28 | - React (0.61.4):
29 | - React-Core (= 0.61.4)
30 | - React-Core/DevSupport (= 0.61.4)
31 | - React-Core/RCTWebSocket (= 0.61.4)
32 | - React-RCTActionSheet (= 0.61.4)
33 | - React-RCTAnimation (= 0.61.4)
34 | - React-RCTBlob (= 0.61.4)
35 | - React-RCTImage (= 0.61.4)
36 | - React-RCTLinking (= 0.61.4)
37 | - React-RCTNetwork (= 0.61.4)
38 | - React-RCTSettings (= 0.61.4)
39 | - React-RCTText (= 0.61.4)
40 | - React-RCTVibration (= 0.61.4)
41 | - React-Core (0.61.4):
42 | - Folly (= 2018.10.22.00)
43 | - glog
44 | - React-Core/Default (= 0.61.4)
45 | - React-cxxreact (= 0.61.4)
46 | - React-jsi (= 0.61.4)
47 | - React-jsiexecutor (= 0.61.4)
48 | - Yoga
49 | - React-Core/CoreModulesHeaders (0.61.4):
50 | - Folly (= 2018.10.22.00)
51 | - glog
52 | - React-Core/Default
53 | - React-cxxreact (= 0.61.4)
54 | - React-jsi (= 0.61.4)
55 | - React-jsiexecutor (= 0.61.4)
56 | - Yoga
57 | - React-Core/Default (0.61.4):
58 | - Folly (= 2018.10.22.00)
59 | - glog
60 | - React-cxxreact (= 0.61.4)
61 | - React-jsi (= 0.61.4)
62 | - React-jsiexecutor (= 0.61.4)
63 | - Yoga
64 | - React-Core/DevSupport (0.61.4):
65 | - Folly (= 2018.10.22.00)
66 | - glog
67 | - React-Core/Default (= 0.61.4)
68 | - React-Core/RCTWebSocket (= 0.61.4)
69 | - React-cxxreact (= 0.61.4)
70 | - React-jsi (= 0.61.4)
71 | - React-jsiexecutor (= 0.61.4)
72 | - React-jsinspector (= 0.61.4)
73 | - Yoga
74 | - React-Core/RCTActionSheetHeaders (0.61.4):
75 | - Folly (= 2018.10.22.00)
76 | - glog
77 | - React-Core/Default
78 | - React-cxxreact (= 0.61.4)
79 | - React-jsi (= 0.61.4)
80 | - React-jsiexecutor (= 0.61.4)
81 | - Yoga
82 | - React-Core/RCTAnimationHeaders (0.61.4):
83 | - Folly (= 2018.10.22.00)
84 | - glog
85 | - React-Core/Default
86 | - React-cxxreact (= 0.61.4)
87 | - React-jsi (= 0.61.4)
88 | - React-jsiexecutor (= 0.61.4)
89 | - Yoga
90 | - React-Core/RCTBlobHeaders (0.61.4):
91 | - Folly (= 2018.10.22.00)
92 | - glog
93 | - React-Core/Default
94 | - React-cxxreact (= 0.61.4)
95 | - React-jsi (= 0.61.4)
96 | - React-jsiexecutor (= 0.61.4)
97 | - Yoga
98 | - React-Core/RCTImageHeaders (0.61.4):
99 | - Folly (= 2018.10.22.00)
100 | - glog
101 | - React-Core/Default
102 | - React-cxxreact (= 0.61.4)
103 | - React-jsi (= 0.61.4)
104 | - React-jsiexecutor (= 0.61.4)
105 | - Yoga
106 | - React-Core/RCTLinkingHeaders (0.61.4):
107 | - Folly (= 2018.10.22.00)
108 | - glog
109 | - React-Core/Default
110 | - React-cxxreact (= 0.61.4)
111 | - React-jsi (= 0.61.4)
112 | - React-jsiexecutor (= 0.61.4)
113 | - Yoga
114 | - React-Core/RCTNetworkHeaders (0.61.4):
115 | - Folly (= 2018.10.22.00)
116 | - glog
117 | - React-Core/Default
118 | - React-cxxreact (= 0.61.4)
119 | - React-jsi (= 0.61.4)
120 | - React-jsiexecutor (= 0.61.4)
121 | - Yoga
122 | - React-Core/RCTSettingsHeaders (0.61.4):
123 | - Folly (= 2018.10.22.00)
124 | - glog
125 | - React-Core/Default
126 | - React-cxxreact (= 0.61.4)
127 | - React-jsi (= 0.61.4)
128 | - React-jsiexecutor (= 0.61.4)
129 | - Yoga
130 | - React-Core/RCTTextHeaders (0.61.4):
131 | - Folly (= 2018.10.22.00)
132 | - glog
133 | - React-Core/Default
134 | - React-cxxreact (= 0.61.4)
135 | - React-jsi (= 0.61.4)
136 | - React-jsiexecutor (= 0.61.4)
137 | - Yoga
138 | - React-Core/RCTVibrationHeaders (0.61.4):
139 | - Folly (= 2018.10.22.00)
140 | - glog
141 | - React-Core/Default
142 | - React-cxxreact (= 0.61.4)
143 | - React-jsi (= 0.61.4)
144 | - React-jsiexecutor (= 0.61.4)
145 | - Yoga
146 | - React-Core/RCTWebSocket (0.61.4):
147 | - Folly (= 2018.10.22.00)
148 | - glog
149 | - React-Core/Default (= 0.61.4)
150 | - React-cxxreact (= 0.61.4)
151 | - React-jsi (= 0.61.4)
152 | - React-jsiexecutor (= 0.61.4)
153 | - Yoga
154 | - React-CoreModules (0.61.4):
155 | - FBReactNativeSpec (= 0.61.4)
156 | - Folly (= 2018.10.22.00)
157 | - RCTTypeSafety (= 0.61.4)
158 | - React-Core/CoreModulesHeaders (= 0.61.4)
159 | - React-RCTImage (= 0.61.4)
160 | - ReactCommon/turbomodule/core (= 0.61.4)
161 | - React-cxxreact (0.61.4):
162 | - boost-for-react-native (= 1.63.0)
163 | - DoubleConversion
164 | - Folly (= 2018.10.22.00)
165 | - glog
166 | - React-jsinspector (= 0.61.4)
167 | - React-jsi (0.61.4):
168 | - boost-for-react-native (= 1.63.0)
169 | - DoubleConversion
170 | - Folly (= 2018.10.22.00)
171 | - glog
172 | - React-jsi/Default (= 0.61.4)
173 | - React-jsi/Default (0.61.4):
174 | - boost-for-react-native (= 1.63.0)
175 | - DoubleConversion
176 | - Folly (= 2018.10.22.00)
177 | - glog
178 | - React-jsiexecutor (0.61.4):
179 | - DoubleConversion
180 | - Folly (= 2018.10.22.00)
181 | - glog
182 | - React-cxxreact (= 0.61.4)
183 | - React-jsi (= 0.61.4)
184 | - React-jsinspector (0.61.4)
185 | - React-RCTActionSheet (0.61.4):
186 | - React-Core/RCTActionSheetHeaders (= 0.61.4)
187 | - React-RCTAnimation (0.61.4):
188 | - React-Core/RCTAnimationHeaders (= 0.61.4)
189 | - React-RCTBlob (0.61.4):
190 | - React-Core/RCTBlobHeaders (= 0.61.4)
191 | - React-Core/RCTWebSocket (= 0.61.4)
192 | - React-jsi (= 0.61.4)
193 | - React-RCTNetwork (= 0.61.4)
194 | - React-RCTImage (0.61.4):
195 | - React-Core/RCTImageHeaders (= 0.61.4)
196 | - React-RCTNetwork (= 0.61.4)
197 | - React-RCTLinking (0.61.4):
198 | - React-Core/RCTLinkingHeaders (= 0.61.4)
199 | - React-RCTNetwork (0.61.4):
200 | - React-Core/RCTNetworkHeaders (= 0.61.4)
201 | - React-RCTSettings (0.61.4):
202 | - React-Core/RCTSettingsHeaders (= 0.61.4)
203 | - React-RCTText (0.61.4):
204 | - React-Core/RCTTextHeaders (= 0.61.4)
205 | - React-RCTVibration (0.61.4):
206 | - React-Core/RCTVibrationHeaders (= 0.61.4)
207 | - ReactCommon/jscallinvoker (0.61.4):
208 | - DoubleConversion
209 | - Folly (= 2018.10.22.00)
210 | - glog
211 | - React-cxxreact (= 0.61.4)
212 | - ReactCommon/turbomodule/core (0.61.4):
213 | - DoubleConversion
214 | - Folly (= 2018.10.22.00)
215 | - glog
216 | - React-Core (= 0.61.4)
217 | - React-cxxreact (= 0.61.4)
218 | - React-jsi (= 0.61.4)
219 | - ReactCommon/jscallinvoker (= 0.61.4)
220 | - Yoga (1.14.0)
221 |
222 | DEPENDENCIES:
223 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
224 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
225 | - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
226 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
227 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
228 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
229 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
230 | - React (from `../node_modules/react-native/`)
231 | - React-Core (from `../node_modules/react-native/`)
232 | - React-Core/DevSupport (from `../node_modules/react-native/`)
233 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
234 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
235 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
236 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
237 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
238 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
239 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
240 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
241 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
242 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
243 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
244 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
245 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
246 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
247 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
248 | - ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`)
249 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
250 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
251 |
252 | SPEC REPOS:
253 | https://github.com/cocoapods/specs.git:
254 | - boost-for-react-native
255 |
256 | EXTERNAL SOURCES:
257 | DoubleConversion:
258 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
259 | FBLazyVector:
260 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
261 | FBReactNativeSpec:
262 | :path: "../node_modules/react-native/Libraries/FBReactNativeSpec"
263 | Folly:
264 | :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
265 | glog:
266 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
267 | RCTRequired:
268 | :path: "../node_modules/react-native/Libraries/RCTRequired"
269 | RCTTypeSafety:
270 | :path: "../node_modules/react-native/Libraries/TypeSafety"
271 | React:
272 | :path: "../node_modules/react-native/"
273 | React-Core:
274 | :path: "../node_modules/react-native/"
275 | React-CoreModules:
276 | :path: "../node_modules/react-native/React/CoreModules"
277 | React-cxxreact:
278 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
279 | React-jsi:
280 | :path: "../node_modules/react-native/ReactCommon/jsi"
281 | React-jsiexecutor:
282 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
283 | React-jsinspector:
284 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
285 | React-RCTActionSheet:
286 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
287 | React-RCTAnimation:
288 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
289 | React-RCTBlob:
290 | :path: "../node_modules/react-native/Libraries/Blob"
291 | React-RCTImage:
292 | :path: "../node_modules/react-native/Libraries/Image"
293 | React-RCTLinking:
294 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
295 | React-RCTNetwork:
296 | :path: "../node_modules/react-native/Libraries/Network"
297 | React-RCTSettings:
298 | :path: "../node_modules/react-native/Libraries/Settings"
299 | React-RCTText:
300 | :path: "../node_modules/react-native/Libraries/Text"
301 | React-RCTVibration:
302 | :path: "../node_modules/react-native/Libraries/Vibration"
303 | ReactCommon:
304 | :path: "../node_modules/react-native/ReactCommon"
305 | Yoga:
306 | :path: "../node_modules/react-native/ReactCommon/yoga"
307 |
308 | SPEC CHECKSUMS:
309 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
310 | DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2
311 | FBLazyVector: feb35a6b7f7b50f367be07f34012f34a79282fa3
312 | FBReactNativeSpec: 51477b84b1bf7ab6f9ef307c24e3dd675391be44
313 | Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51
314 | glog: 1f3da668190260b06b429bb211bfbee5cd790c28
315 | RCTRequired: f3b3fb6f4723e8e52facb229d0c75fdc76773849
316 | RCTTypeSafety: 2ec60de6abb1db050b56ecc4b60188026078fd10
317 | React: 10e0130b57e55a7cd8c3dee37c1261102ce295f4
318 | React-Core: 636212410772d05f3a1eb79d965df2962ca1c70b
319 | React-CoreModules: 6f70d5e41919289c582f88c9ad9923fe5c87400a
320 | React-cxxreact: ddecbe9157ec1743f52ea17bf8d95debc0d6e846
321 | React-jsi: ca921f4041505f9d5197139b2d09eeb020bb12e8
322 | React-jsiexecutor: 8dfb73b987afa9324e4009bdce62a18ce23d983c
323 | React-jsinspector: d15478d0a8ada19864aa4d1cc1c697b41b3fa92f
324 | React-RCTActionSheet: 7369b7c85f99b6299491333affd9f01f5a130c22
325 | React-RCTAnimation: d07be15b2bd1d06d89417eb0343f98ffd2b099a7
326 | React-RCTBlob: 8e0b23d95c9baa98f6b0e127e07666aaafd96c34
327 | React-RCTImage: 443050d14a66e8c2332e9c055f45689d23e15cc7
328 | React-RCTLinking: ce9a90ba155aec41be49e75ec721bbae2d48a47e
329 | React-RCTNetwork: 41fe54bacc67dd00e6e4c4d30dd98a13e4beabc8
330 | React-RCTSettings: 45e3e0a6470310b2dab2ccc6d1d73121ba3ea936
331 | React-RCTText: 21934e0a51d522abcd0a275407e80af45d6fd9ec
332 | React-RCTVibration: 0f76400ee3cec6edb9c125da49fed279340d145a
333 | ReactCommon: a6a294e7028ed67b926d29551aa9394fd989c24c
334 | Yoga: ba3d99dbee6c15ea6bbe3783d1f0cb1ffb79af0f
335 |
336 | PODFILE CHECKSUM: 75a81cbd3e9c35642a16b0d6d2339a963fb66bc5
337 |
338 | COCOAPODS: 1.7.3
339 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "HelloReactNative",
3 | "version": "0.0.1",
4 | "license": "MIT",
5 | "scripts": {
6 | "start": "node node_modules/react-native/local-cli/cli.js start",
7 | "test": "npm run static-code-analysis && npm run dynamic-code-analysis",
8 | "static-code-analysis": "npm run typecoverage && npm run tslint && npm run prettier",
9 | "dynamic-code-analysis": "jest --coverage",
10 | "typecoverage": "type-coverage -p src --detail",
11 | "tslint": "tslint -p src",
12 | "prettier": "prettier --check \"src/**/*.{ts,tsx}\"",
13 | "format": "prettier --write \"src/**/*.{ts,tsx}\"",
14 | "jest": "jest",
15 | "bundle:android": "mkdir -p android/app/src/main/assets && react-native bundle --platform android --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
16 | "run:android": "react-native run-android",
17 | "android": "npm run bundle:android && npm run run:android",
18 | "ios": "react-native run-ios"
19 | },
20 | "dependencies": {
21 | "react": "16.9.0",
22 | "react-native": "0.61.4"
23 | },
24 | "devDependencies": {
25 | "@types/jest": "24.0.23",
26 | "@types/node": "10.12.9",
27 | "@types/react": "16.9.0",
28 | "@types/react-native": "0.60.22",
29 | "@types/react-test-renderer": "16.8.3",
30 | "babel-jest": "23.6.0",
31 | "babel-preset-react-native": "5.0.2",
32 | "jest": "24.5.0",
33 | "prettier": "1.16.4",
34 | "react-native-typescript-transformer": "1.2.12",
35 | "react-test-renderer": "16.8.3",
36 | "ts-jest": "24.0.2",
37 | "tslint": "5.11.0",
38 | "tslint-config-prettier": "1.15.0",
39 | "type-coverage": "2.3.1",
40 | "typescript": "3.7.2"
41 | },
42 | "jest": {
43 | "preset": "react-native",
44 | "transform": {
45 | "^.+\\.js$": "/node_modules/react-native/jest/preprocessor.js",
46 | "^.+\\.tsx?$": "ts-jest"
47 | },
48 | "testPathIgnorePatterns": [
49 | "/build/",
50 | "/node_modules/"
51 | ],
52 | "transformIgnorePatterns": [
53 | "node_modules/(?!(jest-)?react-native|react-navigation)"
54 | ],
55 | "moduleFileExtensions": [
56 | "ts",
57 | "tsx",
58 | "js",
59 | "jsx",
60 | "json",
61 | "ios.ts",
62 | "ios.tsx",
63 | "android.ts",
64 | "android.tsx"
65 | ],
66 | "globals": {
67 | "ts-jest": {
68 | "tsConfig": "src/tsconfig.json"
69 | }
70 | }
71 | },
72 | "prettier": {
73 | "bracketSpacing": false,
74 | "singleQuote": true,
75 | "trailingComma": "all",
76 | "arrowParens": "always"
77 | }
78 | }
79 |
--------------------------------------------------------------------------------
/src/App.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import {Component} from 'react';
3 | import {StyleSheet, Text, View} from 'react-native';
4 |
5 | type VersionInfo = {
6 | version: {
7 | major: number;
8 | minor: number;
9 | patch: number;
10 | };
11 | };
12 |
13 | type Props = {};
14 | export default class App extends Component {
15 | render() {
16 | const useHermes = global.hasOwnProperty('HermesInternal');
17 | const RNVersion: VersionInfo = require('../node_modules/react-native/Libraries/Core/ReactNativeVersion');
18 | return (
19 |
20 |
21 | This is a demo using React Native {RNVersion.version.minor}
22 |
23 |
24 | {useHermes
25 | ? 'JavaScript engine: Hermes'
26 | : 'JavaScript engine: JavaScriptCore'}
27 |
28 |
29 | );
30 | }
31 | }
32 |
33 | const styles = StyleSheet.create({
34 | container: {
35 | flex: 1,
36 | justifyContent: 'center',
37 | alignItems: 'center',
38 | backgroundColor: '#F5FCFF',
39 | },
40 | welcome: {
41 | fontSize: 20,
42 | textAlign: 'center',
43 | margin: 10,
44 | },
45 | });
46 |
--------------------------------------------------------------------------------
/src/__tests__/App-test.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import App from '../App';
3 |
4 | // Note: test renderer must be required after react-native.
5 | import renderer from 'react-test-renderer';
6 |
7 | it('renders correctly', () => {
8 | renderer.create();
9 | });
10 |
--------------------------------------------------------------------------------
/src/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | /* Basic Options */
4 | "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
5 | "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
6 | // "lib": [], /* Specify library files to be included in the compilation. */
7 | // "allowJs": true, /* Allow javascript files to be compiled. */
8 | // "checkJs": true, /* Report errors in .js files. */
9 | "jsx": "react", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
10 | // "declaration": true, /* Generates corresponding '.d.ts' file. */
11 | // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
12 | // "sourceMap": true, /* Generates corresponding '.map' file. */
13 | // "outFile": "./", /* Concatenate and emit output to single file. */
14 | // "outDir": "./", /* Redirect output structure to the directory. */
15 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
16 | // "composite": true, /* Enable project compilation */
17 | // "removeComments": true, /* Do not emit comments to output. */
18 | // "noEmit": true, /* Do not emit outputs. */
19 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */
20 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
21 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
22 |
23 | /* Strict Type-Checking Options */
24 | "strict": true, /* Enable all strict type-checking options. */
25 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
26 | // "strictNullChecks": true, /* Enable strict null checks. */
27 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */
28 | // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
29 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
30 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
31 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
32 |
33 | /* Additional Checks */
34 | // "noUnusedLocals": true, /* Report errors on unused locals. */
35 | // "noUnusedParameters": true, /* Report errors on unused parameters. */
36 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
37 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
38 |
39 | /* Module Resolution Options */
40 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
41 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
42 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
43 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
44 | // "typeRoots": [], /* List of folders to include type definitions from. */
45 | // "types": [], /* Type declaration files to be included in compilation. */
46 | "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
47 | "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
48 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
49 |
50 | /* Source Map Options */
51 | // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
52 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
53 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
54 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
55 |
56 | /* Experimental Options */
57 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
58 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/src/tslint.json:
--------------------------------------------------------------------------------
1 | {
2 | "defaultSeverity": "error",
3 | "extends": ["tslint:recommended", "tslint-config-prettier"],
4 | "jsRules": {},
5 | "rules": {
6 | "interface-over-type-literal": false,
7 | "member-access": [true, "no-public"],
8 | "object-literal-sort-keys": false
9 | },
10 | "rulesDirectory": [],
11 | "linterOptions": {
12 | "exclude": [
13 | "package.json"
14 | ]
15 | }
16 | }
17 |
--------------------------------------------------------------------------------