├── .gitignore ├── LICENSE ├── Mobile_App_Bootstrap ├── .babelrc ├── .buckconfig ├── .expo │ ├── packager-info.json │ └── settings.json ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── AntDesign.ttf │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ ├── Fontisto.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── mobile_app_bootstrap │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── assets │ ├── Download.png │ ├── ExploreViz.png │ ├── HeaderLogo.png │ ├── HelpViz.png │ ├── JavaScriptLogo.png │ ├── ReactNativeLogo.png │ └── StoriesViz.png ├── index.js ├── ios │ ├── Mobile_App_Bootstrap-Bridging-Header.h │ ├── Mobile_App_Bootstrap-tvOS-Bridging-Header.h │ ├── Mobile_App_Bootstrap-tvOS │ │ └── Info.plist │ ├── Mobile_App_Bootstrap-tvOSTests │ │ └── Info.plist │ ├── Mobile_App_Bootstrap.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Mobile_App_Bootstrap-tvOS.xcscheme │ │ │ └── Mobile_App_Bootstrap.xcscheme │ ├── Mobile_App_Bootstrap.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Mobile_App_Bootstrap │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── Mobile_App_BootstrapTests │ │ ├── Info.plist │ │ └── Mobile_App_BootstrapTests.m │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package-lock.json ├── package.json └── src │ ├── router.js │ └── screens │ ├── CardDetails.js │ ├── Home.js │ ├── Viz1.js │ ├── Viz2.js │ └── Viz3.js └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | Mobile_App_Bootstrap/ios/build 2 | Mobile_App_Bootstrap/android/.gradle 3 | Mobile_App_Bootstrap/android/app/build 4 | Mobile_App_Bootstrap/android/build 5 | Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/xcuserdata 6 | Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.xcworkspace/xcuserdata 7 | Mobile_App_Bootstrap/libc.so 8 | Mobile_App_Bootstrap/libc.so_pixel 9 | Mobile_App_Bootstrap/output.txt 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Tableau 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["module:metro-react-native-babel-preset"] 3 | } 4 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.expo/packager-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "expoServerPort": null, 3 | "packagerPort": null, 4 | "packagerPid": null 5 | } -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.expo/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "hostType": "tunnel", 3 | "lanType": "ip", 4 | "dev": true, 5 | "minify": false, 6 | "urlRandomness": null 7 | } -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore polyfills 9 | node_modules/react-native/Libraries/polyfills/.* 10 | 11 | ; Flow doesn't support platforms 12 | .*/Libraries/Utilities/LoadingView.js 13 | 14 | [untyped] 15 | .*/node_modules/@react-native-community/cli/.*/.* 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/interface.js 21 | node_modules/react-native/flow/ 22 | 23 | [options] 24 | emoji=true 25 | 26 | esproposal.optional_chaining=enable 27 | esproposal.nullish_coalescing=enable 28 | 29 | exact_by_default=true 30 | 31 | module.file_ext=.js 32 | module.file_ext=.json 33 | module.file_ext=.ios.js 34 | 35 | munge_underscores=true 36 | 37 | module.name_mapper='^react-native/\(.*\)$' -> '/node_modules/react-native/\1' 38 | module.name_mapper='^@?[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> '/node_modules/react-native/Libraries/Image/RelativeImageStub' 39 | 40 | suppress_type=$FlowIssue 41 | suppress_type=$FlowFixMe 42 | suppress_type=$FlowFixMeProps 43 | suppress_type=$FlowFixMeState 44 | 45 | [lints] 46 | sketchy-null-number=warn 47 | sketchy-null-mixed=warn 48 | sketchy-number=warn 49 | untyped-type-import=warn 50 | nonstrict-import=warn 51 | deprecated-type=warn 52 | unsafe-getters-setters=warn 53 | unnecessary-invariant=warn 54 | signature-verification-failure=warn 55 | 56 | [strict] 57 | deprecated-type 58 | nonstrict-import 59 | sketchy-null 60 | unclear-type 61 | unsafe-getters-setters 62 | untyped-import 63 | untyped-type-import 64 | 65 | [version] 66 | ^0.137.0 67 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | Pods/ 25 | 26 | # Android/IntelliJ 27 | # 28 | build/ 29 | .idea 30 | .gradle 31 | local.properties 32 | *.iml 33 | 34 | # node.js 35 | # 36 | node_modules/ 37 | npm-debug.log 38 | yarn-error.log 39 | 40 | # BUCK 41 | buck-out/ 42 | \.buckd/ 43 | *.keystore 44 | 45 | # fastlane 46 | # 47 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 48 | # screenshots whenever they are needed. 49 | # For more information about the recommended setup visit: 50 | # https://docs.fastlane.tools/best-practices/source-control/ 51 | 52 | */fastlane/report.xml 53 | */fastlane/Preview.html 54 | */fastlane/screenshots 55 | 56 | # Bundle artifact 57 | *.jsbundle 58 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/App.js: -------------------------------------------------------------------------------- 1 | import { navContainer } from './src/router'; 2 | 3 | // Code is in the src folder as much as possible. 4 | const App = navContainer; 5 | export default App; 6 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import App from './App'; 3 | 4 | import renderer from 'react-test-renderer'; 5 | 6 | it('renders without crashing', () => { 7 | const rendered = renderer.create().toJSON(); 8 | expect(rendered).toBeTruthy(); 9 | }); 10 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/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.mobile_app_bootstrap", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.mobile_app_bootstrap", 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 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | /** 97 | * The preferred build flavor of JavaScriptCore. 98 | * 99 | * For example, to use the international variant, you can use: 100 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` 101 | * 102 | * The international variant includes ICU i18n library and necessary data 103 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that 104 | * give correct results when using with locales other than en-US. Note that 105 | * this variant is about 6MiB larger per architecture than default. 106 | */ 107 | def jscFlavor = 'org.webkit:android-jsc:+' 108 | 109 | /** 110 | * Whether to enable the Hermes VM. 111 | * 112 | * This should be set on project.ext.react and mirrored here. If it is not set 113 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode 114 | * and the benefits of using Hermes will therefore be sharply reduced. 115 | */ 116 | def enableHermes = project.ext.react.get("enableHermes", false); 117 | 118 | android { 119 | ndkVersion rootProject.ext.ndkVersion 120 | 121 | compileSdkVersion rootProject.ext.compileSdkVersion 122 | 123 | compileOptions { 124 | sourceCompatibility JavaVersion.VERSION_1_8 125 | targetCompatibility JavaVersion.VERSION_1_8 126 | } 127 | 128 | defaultConfig { 129 | applicationId "com.mobile_app_bootstrap" 130 | minSdkVersion rootProject.ext.minSdkVersion 131 | targetSdkVersion rootProject.ext.targetSdkVersion 132 | versionCode 1 133 | versionName "1.0" 134 | } 135 | splits { 136 | abi { 137 | reset() 138 | enable enableSeparateBuildPerCPUArchitecture 139 | universalApk false // If true, also generate a universal APK 140 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 141 | } 142 | } 143 | buildTypes { 144 | debug { 145 | manifestPlaceholders = [isDebug:true] 146 | } 147 | release { 148 | manifestPlaceholders = [isDebug:false] 149 | minifyEnabled enableProguardInReleaseBuilds 150 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 151 | } 152 | } 153 | // applicationVariants are e.g. debug, release 154 | applicationVariants.all { variant -> 155 | variant.outputs.each { output -> 156 | // For each separate APK per architecture, set a unique version code as described here: 157 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 158 | def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4] 159 | def abi = output.getFilter(OutputFile.ABI) 160 | if (abi != null) { // null for the universal-debug, universal-release variants 161 | output.versionCodeOverride = 162 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 163 | } 164 | } 165 | } 166 | } 167 | 168 | dependencies { 169 | implementation fileTree(dir: "libs", include: ["*.jar"]) 170 | //noinspection GradleDynamicVersion 171 | implementation "com.facebook.react:react-native:+" // From node_modules 172 | 173 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" 174 | 175 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { 176 | exclude group:'com.facebook.fbjni' 177 | } 178 | 179 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { 180 | exclude group:'com.facebook.flipper' 181 | exclude group:'com.squareup.okhttp3', module:'okhttp' 182 | } 183 | 184 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { 185 | exclude group:'com.facebook.flipper' 186 | } 187 | 188 | if (enableHermes) { 189 | def hermesPath = "../../node_modules/hermes-engine/android/"; 190 | debugImplementation files(hermesPath + "hermes-debug.aar") 191 | releaseImplementation files(hermesPath + "hermes-release.aar") 192 | } else { 193 | implementation jscFlavor 194 | } 195 | 196 | // implementation project(':react-native-webview') 197 | // implementation project(':react-native-vector-icons') 198 | // implementation project(':react-native-gesture-handler') 199 | // implementation fileTree(dir: "libs", include: ["*.jar"]) 200 | // implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 201 | // implementation "com.facebook.react:react-native:+" // From node_modules 202 | } 203 | 204 | // Run this once to be able to run the application with BUCK 205 | // puts all compile dependencies into folder libs for BUCK to use 206 | task copyDownloadableDepsToLibs(type: Copy) { 207 | from configurations.compile 208 | into 'libs' 209 | } 210 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) 211 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/java/com/mobile_app_bootstrap/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.mobile_app_bootstrap; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "Mobile_App_Bootstrap"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/java/com/mobile_app_bootstrap/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.mobile_app_bootstrap; 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.ReactInstanceManager; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.soloader.SoLoader; 11 | import java.lang.reflect.InvocationTargetException; 12 | import java.util.List; 13 | 14 | 15 | public class MainApplication extends Application implements ReactApplication { 16 | 17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 18 | @Override 19 | public boolean getUseDeveloperSupport() { 20 | return BuildConfig.DEBUG; 21 | } 22 | 23 | @Override 24 | protected List getPackages() { 25 | @SuppressWarnings("UnnecessaryLocalVariable") 26 | List packages = new PackageList(this).getPackages(); 27 | // Packages that cannot be autolinked yet can be added manually here, for example: 28 | // packages.add(new MyReactNativePackage()); 29 | return packages; 30 | } 31 | 32 | @Override 33 | protected String getJSMainModuleName() { 34 | return "index"; 35 | } 36 | }; 37 | 38 | @Override 39 | public ReactNativeHost getReactNativeHost() { 40 | return mReactNativeHost; 41 | } 42 | 43 | @Override 44 | public void onCreate() { 45 | super.onCreate(); 46 | SoLoader.init(this, /* native exopackage */ false); 47 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 48 | } 49 | 50 | /** 51 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like 52 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 53 | * 54 | * @param context 55 | * @param reactInstanceManager 56 | */ 57 | private static void initializeFlipper( 58 | Context context, ReactInstanceManager reactInstanceManager) { 59 | if (BuildConfig.DEBUG) { 60 | try { 61 | /* 62 | We use reflection here to pick up the class that initializes Flipper, 63 | since Flipper library is not available in release mode 64 | */ 65 | Class aClass = Class.forName("com.mobile_app_bootstrap.ReactNativeFlipper"); 66 | aClass 67 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) 68 | .invoke(null, context, reactInstanceManager); 69 | } catch (ClassNotFoundException e) { 70 | e.printStackTrace(); 71 | } catch (NoSuchMethodException e) { 72 | e.printStackTrace(); 73 | } catch (IllegalAccessException e) { 74 | e.printStackTrace(); 75 | } catch (InvocationTargetException e) { 76 | e.printStackTrace(); 77 | } 78 | } 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Mobile_App_Bootstrap 3 | 4 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/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 = "29.0.3" 6 | minSdkVersion = 21 7 | compileSdkVersion = 29 8 | targetSdkVersion = 29 9 | supportLibVersion = "28.0.0" 10 | ndkVersion = "20.1.5948944" 11 | } 12 | repositories { 13 | google() 14 | jcenter() 15 | } 16 | dependencies { 17 | classpath 'com.android.tools.build:gradle:3.3.1' 18 | 19 | // NOTE: Do not place your application dependencies here; they belong 20 | // in the individual module build.gradle files 21 | } 22 | } 23 | 24 | allprojects { 25 | repositories { 26 | mavenLocal() 27 | maven { 28 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 29 | url("$rootDir/../node_modules/react-native/android") 30 | } 31 | maven { 32 | // Android JSC is installed from npm 33 | url("$rootDir/../node_modules/jsc-android/dist") 34 | } 35 | 36 | google() 37 | jcenter() 38 | maven { url 'https://www.jitpack.io' } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/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 | # AndroidX package structure to make it clearer which packages are bundled with the 21 | # Android operating system, and which are packaged with your app's APK 22 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 23 | android.useAndroidX=true 24 | # Automatically convert third-party libraries to use AndroidX 25 | android.enableJetifier=true 26 | 27 | # Version of flipper SDK to use with React Native 28 | FLIPPER_VERSION=0.75.1 29 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 6 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/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 | # https://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 | 86 | # Determine the Java command to use to start the JVM. 87 | if [ -n "$JAVA_HOME" ] ; then 88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 89 | # IBM's JDK on AIX uses strange locations for the executables 90 | JAVACMD="$JAVA_HOME/jre/sh/java" 91 | else 92 | JAVACMD="$JAVA_HOME/bin/java" 93 | fi 94 | if [ ! -x "$JAVACMD" ] ; then 95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 96 | 97 | Please set the JAVA_HOME variable in your environment to match the 98 | location of your Java installation." 99 | fi 100 | else 101 | JAVACMD="java" 102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 103 | 104 | Please set the JAVA_HOME variable in your environment to match the 105 | location of your Java installation." 106 | fi 107 | 108 | # Increase the maximum file descriptors if we can. 109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 110 | MAX_FD_LIMIT=`ulimit -H -n` 111 | if [ $? -eq 0 ] ; then 112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 113 | MAX_FD="$MAX_FD_LIMIT" 114 | fi 115 | ulimit -n $MAX_FD 116 | if [ $? -ne 0 ] ; then 117 | warn "Could not set maximum file descriptor limit: $MAX_FD" 118 | fi 119 | else 120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 121 | fi 122 | fi 123 | 124 | # For Darwin, add options to specify how the application appears in the dock 125 | if $darwin; then 126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 127 | fi 128 | 129 | # For Cygwin or MSYS, switch paths to Windows format before running java 130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then 131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 133 | 134 | JAVACMD=`cygpath --unix "$JAVACMD"` 135 | 136 | # We build the pattern for arguments to be converted via cygpath 137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 138 | SEP="" 139 | for dir in $ROOTDIRSRAW ; do 140 | ROOTDIRS="$ROOTDIRS$SEP$dir" 141 | SEP="|" 142 | done 143 | OURCYGPATTERN="(^($ROOTDIRS))" 144 | # Add a user-defined pattern to the cygpath arguments 145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 147 | fi 148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 149 | i=0 150 | for arg in "$@" ; do 151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 153 | 154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 156 | else 157 | eval `echo args$i`="\"$arg\"" 158 | fi 159 | i=`expr $i + 1` 160 | done 161 | case $i in 162 | 0) set -- ;; 163 | 1) set -- "$args0" ;; 164 | 2) set -- "$args0" "$args1" ;; 165 | 3) set -- "$args0" "$args1" "$args2" ;; 166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;; 167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 172 | esac 173 | fi 174 | 175 | # Escape application args 176 | save () { 177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 178 | echo " " 179 | } 180 | APP_ARGS=`save "$@"` 181 | 182 | # Collect all arguments for the java command, following the shell quoting and substitution rules 183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 184 | 185 | exec "$JAVACMD" "$@" 186 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/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 https://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 Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/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 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Mobile_App_Bootstrap' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | 4 | include ':app' 5 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mobile_App_Bootstrap", 3 | "displayName": "Mobile_App_Bootstrap" 4 | } -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/Download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/assets/Download.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/ExploreViz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/assets/ExploreViz.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/HeaderLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/assets/HeaderLogo.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/HelpViz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/assets/HelpViz.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/JavaScriptLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/assets/JavaScriptLogo.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/ReactNativeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/assets/ReactNativeLogo.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/StoriesViz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/c5045283ad9e8e00c62ff9c293b6ad9db6dd60b7/Mobile_App_Bootstrap/assets/StoriesViz.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry, LogBox } from 'react-native'; 2 | import App from './App'; 3 | AppRegistry.registerComponent('Mobile_App_Bootstrap', () => App); 4 | 5 | LogBox.ignoreLogs(['Warning: isMounted', 'Module RCTImageLoader']); 6 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-tvOS-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-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 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00E356F31AD99517003FC87E /* Mobile_App_BootstrapTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* Mobile_App_BootstrapTests.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 | 1813D78AF02465E3C638BD74 /* libPods-Mobile_App_Bootstrap.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 563C4B060D717D55FEA8C756 /* libPods-Mobile_App_Bootstrap.a */; }; 16 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 17 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 18 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 19 | 2DCD954D1E0B4F2C00145EB5 /* Mobile_App_BootstrapTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* Mobile_App_BootstrapTests.m */; }; 20 | 9B1B0E1EE929821B1F883C43 /* libPods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 006AD4E9EC8D756B413BD41D /* libPods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.a */; }; 21 | 9FC96AF028EF7F640066526C /* libswiftWebKit.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FC96AEF28EF7F640066526C /* libswiftWebKit.tbd */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 30 | remoteInfo = Mobile_App_Bootstrap; 31 | }; 32 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 37 | remoteInfo = "Mobile_App_Bootstrap-tvOS"; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 006AD4E9EC8D756B413BD41D /* libPods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 44 | 00E356EE1AD99517003FC87E /* Mobile_App_BootstrapTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Mobile_App_BootstrapTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | 00E356F21AD99517003FC87E /* Mobile_App_BootstrapTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Mobile_App_BootstrapTests.m; sourceTree = ""; }; 47 | 0A2E1FAF2A423842D4717DA9 /* Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.release.xcconfig"; path = "Target Support Files/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.release.xcconfig"; sourceTree = ""; }; 48 | 13B07F961A680F5B00A75B9A /* Mobile_App_Bootstrap.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Mobile_App_Bootstrap.app; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Mobile_App_Bootstrap/AppDelegate.h; sourceTree = ""; }; 50 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Mobile_App_Bootstrap/AppDelegate.m; sourceTree = ""; }; 51 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 52 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Mobile_App_Bootstrap/Images.xcassets; sourceTree = ""; }; 53 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Mobile_App_Bootstrap/Info.plist; sourceTree = ""; }; 54 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Mobile_App_Bootstrap/main.m; sourceTree = ""; }; 55 | 2D02E47B1E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Mobile_App_Bootstrap-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 2D02E4901E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Mobile_App_Bootstrap-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | 308435C421094EEE01CD5BAA /* Pods-Mobile_App_Bootstrap.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mobile_App_Bootstrap.release.xcconfig"; path = "Target Support Files/Pods-Mobile_App_Bootstrap/Pods-Mobile_App_Bootstrap.release.xcconfig"; sourceTree = ""; }; 58 | 563C4B060D717D55FEA8C756 /* libPods-Mobile_App_Bootstrap.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Mobile_App_Bootstrap.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | 9FC96AEF28EF7F640066526C /* libswiftWebKit.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libswiftWebKit.tbd; path = usr/lib/swift/libswiftWebKit.tbd; sourceTree = SDKROOT; }; 60 | A283B27A481C0FD80BD7DCF1 /* Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.debug.xcconfig"; path = "Target Support Files/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.debug.xcconfig"; sourceTree = ""; }; 61 | C9743FA9224D8C1400397690 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 62 | C9ECDE1726532FE3007BB737 /* Mobile_App_Bootstrap-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Mobile_App_Bootstrap-Bridging-Header.h"; sourceTree = ""; }; 63 | C9ECDE1826532FE3007BB737 /* Mobile_App_Bootstrap-tvOS-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Mobile_App_Bootstrap-tvOS-Bridging-Header.h"; sourceTree = ""; }; 64 | F7D7D4AE7BFA8E09BB1747EF /* Pods-Mobile_App_Bootstrap.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Mobile_App_Bootstrap.debug.xcconfig"; path = "Target Support Files/Pods-Mobile_App_Bootstrap/Pods-Mobile_App_Bootstrap.debug.xcconfig"; sourceTree = ""; }; 65 | /* End PBXFileReference section */ 66 | 67 | /* Begin PBXFrameworksBuildPhase section */ 68 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 69 | isa = PBXFrameworksBuildPhase; 70 | buildActionMask = 2147483647; 71 | files = ( 72 | 9B1B0E1EE929821B1F883C43 /* libPods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.a in Frameworks */, 73 | ); 74 | runOnlyForDeploymentPostprocessing = 0; 75 | }; 76 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 77 | isa = PBXFrameworksBuildPhase; 78 | buildActionMask = 2147483647; 79 | files = ( 80 | 9FC96AF028EF7F640066526C /* libswiftWebKit.tbd in Frameworks */, 81 | 1813D78AF02465E3C638BD74 /* libPods-Mobile_App_Bootstrap.a in Frameworks */, 82 | ); 83 | runOnlyForDeploymentPostprocessing = 0; 84 | }; 85 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 86 | isa = PBXFrameworksBuildPhase; 87 | buildActionMask = 2147483647; 88 | files = ( 89 | ); 90 | runOnlyForDeploymentPostprocessing = 0; 91 | }; 92 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 93 | isa = PBXFrameworksBuildPhase; 94 | buildActionMask = 2147483647; 95 | files = ( 96 | ); 97 | runOnlyForDeploymentPostprocessing = 0; 98 | }; 99 | /* End PBXFrameworksBuildPhase section */ 100 | 101 | /* Begin PBXGroup section */ 102 | 00E356EF1AD99517003FC87E /* Mobile_App_BootstrapTests */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 00E356F21AD99517003FC87E /* Mobile_App_BootstrapTests.m */, 106 | 00E356F01AD99517003FC87E /* Supporting Files */, 107 | ); 108 | path = Mobile_App_BootstrapTests; 109 | sourceTree = ""; 110 | }; 111 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 112 | isa = PBXGroup; 113 | children = ( 114 | 00E356F11AD99517003FC87E /* Info.plist */, 115 | ); 116 | name = "Supporting Files"; 117 | sourceTree = ""; 118 | }; 119 | 13B07FAE1A68108700A75B9A /* Mobile_App_Bootstrap */ = { 120 | isa = PBXGroup; 121 | children = ( 122 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 123 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 124 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 125 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 126 | 13B07FB61A68108700A75B9A /* Info.plist */, 127 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 128 | 13B07FB71A68108700A75B9A /* main.m */, 129 | C9ECDE1726532FE3007BB737 /* Mobile_App_Bootstrap-Bridging-Header.h */, 130 | C9ECDE1826532FE3007BB737 /* Mobile_App_Bootstrap-tvOS-Bridging-Header.h */, 131 | ); 132 | name = Mobile_App_Bootstrap; 133 | sourceTree = ""; 134 | }; 135 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 9FC96AEF28EF7F640066526C /* libswiftWebKit.tbd */, 139 | C9743FA9224D8C1400397690 /* JavaScriptCore.framework */, 140 | 563C4B060D717D55FEA8C756 /* libPods-Mobile_App_Bootstrap.a */, 141 | 006AD4E9EC8D756B413BD41D /* libPods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.a */, 142 | ); 143 | name = Frameworks; 144 | sourceTree = ""; 145 | }; 146 | 6D1881D2928ABC1BBDE30D8C /* Pods */ = { 147 | isa = PBXGroup; 148 | children = ( 149 | F7D7D4AE7BFA8E09BB1747EF /* Pods-Mobile_App_Bootstrap.debug.xcconfig */, 150 | 308435C421094EEE01CD5BAA /* Pods-Mobile_App_Bootstrap.release.xcconfig */, 151 | A283B27A481C0FD80BD7DCF1 /* Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.debug.xcconfig */, 152 | 0A2E1FAF2A423842D4717DA9 /* Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.release.xcconfig */, 153 | ); 154 | path = Pods; 155 | sourceTree = ""; 156 | }; 157 | 83CBB9F61A601CBA00E9B192 = { 158 | isa = PBXGroup; 159 | children = ( 160 | 13B07FAE1A68108700A75B9A /* Mobile_App_Bootstrap */, 161 | 00E356EF1AD99517003FC87E /* Mobile_App_BootstrapTests */, 162 | 83CBBA001A601CBA00E9B192 /* Products */, 163 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 164 | 6D1881D2928ABC1BBDE30D8C /* Pods */, 165 | ); 166 | indentWidth = 2; 167 | sourceTree = ""; 168 | tabWidth = 2; 169 | usesTabs = 0; 170 | }; 171 | 83CBBA001A601CBA00E9B192 /* Products */ = { 172 | isa = PBXGroup; 173 | children = ( 174 | 13B07F961A680F5B00A75B9A /* Mobile_App_Bootstrap.app */, 175 | 00E356EE1AD99517003FC87E /* Mobile_App_BootstrapTests.xctest */, 176 | 2D02E47B1E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOS.app */, 177 | 2D02E4901E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOSTests.xctest */, 178 | ); 179 | name = Products; 180 | sourceTree = ""; 181 | }; 182 | /* End PBXGroup section */ 183 | 184 | /* Begin PBXNativeTarget section */ 185 | 00E356ED1AD99517003FC87E /* Mobile_App_BootstrapTests */ = { 186 | isa = PBXNativeTarget; 187 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "Mobile_App_BootstrapTests" */; 188 | buildPhases = ( 189 | 071C10F0643F7D922DE4EA60 /* [CP] Check Pods Manifest.lock */, 190 | 00E356EA1AD99517003FC87E /* Sources */, 191 | 00E356EB1AD99517003FC87E /* Frameworks */, 192 | 00E356EC1AD99517003FC87E /* Resources */, 193 | B19D189476CD3A1923BD6C97 /* [CP] Embed Pods Frameworks */, 194 | 8F56FE4A308568A041A3043C /* [CP] Copy Pods Resources */, 195 | ); 196 | buildRules = ( 197 | ); 198 | dependencies = ( 199 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 200 | ); 201 | name = Mobile_App_BootstrapTests; 202 | productName = Mobile_App_BootstrapTests; 203 | productReference = 00E356EE1AD99517003FC87E /* Mobile_App_BootstrapTests.xctest */; 204 | productType = "com.apple.product-type.bundle.unit-test"; 205 | }; 206 | 13B07F861A680F5B00A75B9A /* Mobile_App_Bootstrap */ = { 207 | isa = PBXNativeTarget; 208 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Mobile_App_Bootstrap" */; 209 | buildPhases = ( 210 | 15AD1786E429E43FFB323D04 /* [CP] Check Pods Manifest.lock */, 211 | C9ECDE7726533C9E007BB737 /* Run Script */, 212 | 13B07F871A680F5B00A75B9A /* Sources */, 213 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 214 | 13B07F8E1A680F5B00A75B9A /* Resources */, 215 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 216 | 74E0B5E0E1E5315DB78C2CA8 /* [CP] Embed Pods Frameworks */, 217 | D185BEBFED611DBF337F58EB /* [CP] Copy Pods Resources */, 218 | ); 219 | buildRules = ( 220 | ); 221 | dependencies = ( 222 | ); 223 | name = Mobile_App_Bootstrap; 224 | productName = "Hello World"; 225 | productReference = 13B07F961A680F5B00A75B9A /* Mobile_App_Bootstrap.app */; 226 | productType = "com.apple.product-type.application"; 227 | }; 228 | 2D02E47A1E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOS */ = { 229 | isa = PBXNativeTarget; 230 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Mobile_App_Bootstrap-tvOS" */; 231 | buildPhases = ( 232 | 2D02E4771E0B4A5D006451C7 /* Sources */, 233 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 234 | 2D02E4791E0B4A5D006451C7 /* Resources */, 235 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 236 | ); 237 | buildRules = ( 238 | ); 239 | dependencies = ( 240 | ); 241 | name = "Mobile_App_Bootstrap-tvOS"; 242 | productName = "Mobile_App_Bootstrap-tvOS"; 243 | productReference = 2D02E47B1E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOS.app */; 244 | productType = "com.apple.product-type.application"; 245 | }; 246 | 2D02E48F1E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOSTests */ = { 247 | isa = PBXNativeTarget; 248 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Mobile_App_Bootstrap-tvOSTests" */; 249 | buildPhases = ( 250 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 251 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 252 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 253 | ); 254 | buildRules = ( 255 | ); 256 | dependencies = ( 257 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 258 | ); 259 | name = "Mobile_App_Bootstrap-tvOSTests"; 260 | productName = "Mobile_App_Bootstrap-tvOSTests"; 261 | productReference = 2D02E4901E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOSTests.xctest */; 262 | productType = "com.apple.product-type.bundle.unit-test"; 263 | }; 264 | /* End PBXNativeTarget section */ 265 | 266 | /* Begin PBXProject section */ 267 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 268 | isa = PBXProject; 269 | attributes = { 270 | LastUpgradeCheck = 1240; 271 | ORGANIZATIONNAME = ""; 272 | TargetAttributes = { 273 | 00E356ED1AD99517003FC87E = { 274 | CreatedOnToolsVersion = 6.2; 275 | TestTargetID = 13B07F861A680F5B00A75B9A; 276 | }; 277 | 13B07F861A680F5B00A75B9A = { 278 | LastSwiftMigration = 1240; 279 | }; 280 | 2D02E47A1E0B4A5D006451C7 = { 281 | CreatedOnToolsVersion = 8.2.1; 282 | LastSwiftMigration = 1240; 283 | ProvisioningStyle = Automatic; 284 | }; 285 | 2D02E48F1E0B4A5D006451C7 = { 286 | CreatedOnToolsVersion = 8.2.1; 287 | ProvisioningStyle = Automatic; 288 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 289 | }; 290 | }; 291 | }; 292 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Mobile_App_Bootstrap" */; 293 | compatibilityVersion = "Xcode 3.2"; 294 | developmentRegion = English; 295 | hasScannedForEncodings = 0; 296 | knownRegions = ( 297 | English, 298 | en, 299 | Base, 300 | ); 301 | mainGroup = 83CBB9F61A601CBA00E9B192; 302 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 303 | projectDirPath = ""; 304 | projectRoot = ""; 305 | targets = ( 306 | 13B07F861A680F5B00A75B9A /* Mobile_App_Bootstrap */, 307 | 00E356ED1AD99517003FC87E /* Mobile_App_BootstrapTests */, 308 | 2D02E47A1E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOS */, 309 | 2D02E48F1E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOSTests */, 310 | ); 311 | }; 312 | /* End PBXProject section */ 313 | 314 | /* Begin PBXResourcesBuildPhase section */ 315 | 00E356EC1AD99517003FC87E /* Resources */ = { 316 | isa = PBXResourcesBuildPhase; 317 | buildActionMask = 2147483647; 318 | files = ( 319 | ); 320 | runOnlyForDeploymentPostprocessing = 0; 321 | }; 322 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 323 | isa = PBXResourcesBuildPhase; 324 | buildActionMask = 2147483647; 325 | files = ( 326 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 327 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 328 | ); 329 | runOnlyForDeploymentPostprocessing = 0; 330 | }; 331 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 332 | isa = PBXResourcesBuildPhase; 333 | buildActionMask = 2147483647; 334 | files = ( 335 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 340 | isa = PBXResourcesBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | ); 344 | runOnlyForDeploymentPostprocessing = 0; 345 | }; 346 | /* End PBXResourcesBuildPhase section */ 347 | 348 | /* Begin PBXShellScriptBuildPhase section */ 349 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 350 | isa = PBXShellScriptBuildPhase; 351 | buildActionMask = 2147483647; 352 | files = ( 353 | ); 354 | inputPaths = ( 355 | ); 356 | name = "Bundle React Native code and images"; 357 | outputPaths = ( 358 | ); 359 | runOnlyForDeploymentPostprocessing = 0; 360 | shellPath = /bin/sh; 361 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; 362 | }; 363 | 071C10F0643F7D922DE4EA60 /* [CP] Check Pods Manifest.lock */ = { 364 | isa = PBXShellScriptBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | ); 368 | inputFileListPaths = ( 369 | ); 370 | inputPaths = ( 371 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 372 | "${PODS_ROOT}/Manifest.lock", 373 | ); 374 | name = "[CP] Check Pods Manifest.lock"; 375 | outputFileListPaths = ( 376 | ); 377 | outputPaths = ( 378 | "$(DERIVED_FILE_DIR)/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests-checkManifestLockResult.txt", 379 | ); 380 | runOnlyForDeploymentPostprocessing = 0; 381 | shellPath = /bin/sh; 382 | 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"; 383 | showEnvVarsInLog = 0; 384 | }; 385 | 15AD1786E429E43FFB323D04 /* [CP] Check Pods Manifest.lock */ = { 386 | isa = PBXShellScriptBuildPhase; 387 | buildActionMask = 2147483647; 388 | files = ( 389 | ); 390 | inputFileListPaths = ( 391 | ); 392 | inputPaths = ( 393 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 394 | "${PODS_ROOT}/Manifest.lock", 395 | ); 396 | name = "[CP] Check Pods Manifest.lock"; 397 | outputFileListPaths = ( 398 | ); 399 | outputPaths = ( 400 | "$(DERIVED_FILE_DIR)/Pods-Mobile_App_Bootstrap-checkManifestLockResult.txt", 401 | ); 402 | runOnlyForDeploymentPostprocessing = 0; 403 | shellPath = /bin/sh; 404 | 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"; 405 | showEnvVarsInLog = 0; 406 | }; 407 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 408 | isa = PBXShellScriptBuildPhase; 409 | buildActionMask = 2147483647; 410 | files = ( 411 | ); 412 | inputPaths = ( 413 | ); 414 | name = "Bundle React Native Code And Images"; 415 | outputPaths = ( 416 | ); 417 | runOnlyForDeploymentPostprocessing = 0; 418 | shellPath = /bin/sh; 419 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 420 | }; 421 | 74E0B5E0E1E5315DB78C2CA8 /* [CP] Embed Pods Frameworks */ = { 422 | isa = PBXShellScriptBuildPhase; 423 | buildActionMask = 2147483647; 424 | files = ( 425 | ); 426 | inputPaths = ( 427 | "${PODS_ROOT}/Target Support Files/Pods-Mobile_App_Bootstrap/Pods-Mobile_App_Bootstrap-frameworks.sh", 428 | "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL", 429 | ); 430 | name = "[CP] Embed Pods Frameworks"; 431 | outputPaths = ( 432 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework", 433 | ); 434 | runOnlyForDeploymentPostprocessing = 0; 435 | shellPath = /bin/sh; 436 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Mobile_App_Bootstrap/Pods-Mobile_App_Bootstrap-frameworks.sh\"\n"; 437 | showEnvVarsInLog = 0; 438 | }; 439 | 8F56FE4A308568A041A3043C /* [CP] Copy Pods Resources */ = { 440 | isa = PBXShellScriptBuildPhase; 441 | buildActionMask = 2147483647; 442 | files = ( 443 | ); 444 | inputPaths = ( 445 | "${PODS_ROOT}/Target Support Files/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests-resources.sh", 446 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf", 447 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf", 448 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf", 449 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf", 450 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf", 451 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf", 452 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf", 453 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf", 454 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf", 455 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf", 456 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf", 457 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf", 458 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf", 459 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf", 460 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf", 461 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf", 462 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle", 463 | ); 464 | name = "[CP] Copy Pods Resources"; 465 | outputPaths = ( 466 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf", 467 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf", 468 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf", 469 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf", 470 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf", 471 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf", 472 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf", 473 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf", 474 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf", 475 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf", 476 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf", 477 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf", 478 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf", 479 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf", 480 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf", 481 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf", 482 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle", 483 | ); 484 | runOnlyForDeploymentPostprocessing = 0; 485 | shellPath = /bin/sh; 486 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests-resources.sh\"\n"; 487 | showEnvVarsInLog = 0; 488 | }; 489 | B19D189476CD3A1923BD6C97 /* [CP] Embed Pods Frameworks */ = { 490 | isa = PBXShellScriptBuildPhase; 491 | buildActionMask = 2147483647; 492 | files = ( 493 | ); 494 | inputPaths = ( 495 | "${PODS_ROOT}/Target Support Files/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests-frameworks.sh", 496 | "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL", 497 | ); 498 | name = "[CP] Embed Pods Frameworks"; 499 | outputPaths = ( 500 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework", 501 | ); 502 | runOnlyForDeploymentPostprocessing = 0; 503 | shellPath = /bin/sh; 504 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests/Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests-frameworks.sh\"\n"; 505 | showEnvVarsInLog = 0; 506 | }; 507 | C9ECDE7726533C9E007BB737 /* Run Script */ = { 508 | isa = PBXShellScriptBuildPhase; 509 | buildActionMask = 2147483647; 510 | files = ( 511 | ); 512 | inputFileListPaths = ( 513 | ); 514 | inputPaths = ( 515 | ); 516 | name = "Run Script"; 517 | outputFileListPaths = ( 518 | ); 519 | outputPaths = ( 520 | ); 521 | runOnlyForDeploymentPostprocessing = 0; 522 | shellPath = /bin/sh; 523 | 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"; 524 | showEnvVarsInLog = 0; 525 | }; 526 | D185BEBFED611DBF337F58EB /* [CP] Copy Pods Resources */ = { 527 | isa = PBXShellScriptBuildPhase; 528 | buildActionMask = 2147483647; 529 | files = ( 530 | ); 531 | inputPaths = ( 532 | "${PODS_ROOT}/Target Support Files/Pods-Mobile_App_Bootstrap/Pods-Mobile_App_Bootstrap-resources.sh", 533 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf", 534 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf", 535 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf", 536 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf", 537 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf", 538 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf", 539 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf", 540 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf", 541 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf", 542 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf", 543 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf", 544 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf", 545 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf", 546 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf", 547 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf", 548 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf", 549 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle", 550 | ); 551 | name = "[CP] Copy Pods Resources"; 552 | outputPaths = ( 553 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf", 554 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf", 555 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf", 556 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf", 557 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf", 558 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf", 559 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf", 560 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf", 561 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf", 562 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf", 563 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf", 564 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf", 565 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf", 566 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf", 567 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf", 568 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf", 569 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle", 570 | ); 571 | runOnlyForDeploymentPostprocessing = 0; 572 | shellPath = /bin/sh; 573 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Mobile_App_Bootstrap/Pods-Mobile_App_Bootstrap-resources.sh\"\n"; 574 | showEnvVarsInLog = 0; 575 | }; 576 | /* End PBXShellScriptBuildPhase section */ 577 | 578 | /* Begin PBXSourcesBuildPhase section */ 579 | 00E356EA1AD99517003FC87E /* Sources */ = { 580 | isa = PBXSourcesBuildPhase; 581 | buildActionMask = 2147483647; 582 | files = ( 583 | 00E356F31AD99517003FC87E /* Mobile_App_BootstrapTests.m in Sources */, 584 | ); 585 | runOnlyForDeploymentPostprocessing = 0; 586 | }; 587 | 13B07F871A680F5B00A75B9A /* Sources */ = { 588 | isa = PBXSourcesBuildPhase; 589 | buildActionMask = 2147483647; 590 | files = ( 591 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 592 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 593 | ); 594 | runOnlyForDeploymentPostprocessing = 0; 595 | }; 596 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 597 | isa = PBXSourcesBuildPhase; 598 | buildActionMask = 2147483647; 599 | files = ( 600 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 601 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 602 | ); 603 | runOnlyForDeploymentPostprocessing = 0; 604 | }; 605 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 606 | isa = PBXSourcesBuildPhase; 607 | buildActionMask = 2147483647; 608 | files = ( 609 | 2DCD954D1E0B4F2C00145EB5 /* Mobile_App_BootstrapTests.m in Sources */, 610 | ); 611 | runOnlyForDeploymentPostprocessing = 0; 612 | }; 613 | /* End PBXSourcesBuildPhase section */ 614 | 615 | /* Begin PBXTargetDependency section */ 616 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 617 | isa = PBXTargetDependency; 618 | target = 13B07F861A680F5B00A75B9A /* Mobile_App_Bootstrap */; 619 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 620 | }; 621 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 622 | isa = PBXTargetDependency; 623 | target = 2D02E47A1E0B4A5D006451C7 /* Mobile_App_Bootstrap-tvOS */; 624 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 625 | }; 626 | /* End PBXTargetDependency section */ 627 | 628 | /* Begin PBXVariantGroup section */ 629 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 630 | isa = PBXVariantGroup; 631 | children = ( 632 | 13B07FB21A68108700A75B9A /* Base */, 633 | ); 634 | name = LaunchScreen.xib; 635 | path = Mobile_App_Bootstrap; 636 | sourceTree = ""; 637 | }; 638 | /* End PBXVariantGroup section */ 639 | 640 | /* Begin XCBuildConfiguration section */ 641 | 00E356F61AD99517003FC87E /* Debug */ = { 642 | isa = XCBuildConfiguration; 643 | baseConfigurationReference = A283B27A481C0FD80BD7DCF1 /* Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.debug.xcconfig */; 644 | buildSettings = { 645 | BUNDLE_LOADER = "$(TEST_HOST)"; 646 | GCC_PREPROCESSOR_DEFINITIONS = ( 647 | "DEBUG=1", 648 | "$(inherited)", 649 | ); 650 | HEADER_SEARCH_PATHS = "$(inherited)"; 651 | INFOPLIST_FILE = Mobile_App_BootstrapTests/Info.plist; 652 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 653 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 654 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 655 | OTHER_LDFLAGS = ( 656 | "-ObjC", 657 | "-lc++", 658 | ); 659 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 660 | PRODUCT_NAME = "$(TARGET_NAME)"; 661 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Mobile_App_Bootstrap.app/Mobile_App_Bootstrap"; 662 | }; 663 | name = Debug; 664 | }; 665 | 00E356F71AD99517003FC87E /* Release */ = { 666 | isa = XCBuildConfiguration; 667 | baseConfigurationReference = 0A2E1FAF2A423842D4717DA9 /* Pods-Mobile_App_Bootstrap-Mobile_App_BootstrapTests.release.xcconfig */; 668 | buildSettings = { 669 | BUNDLE_LOADER = "$(TEST_HOST)"; 670 | COPY_PHASE_STRIP = NO; 671 | HEADER_SEARCH_PATHS = "$(inherited)"; 672 | INFOPLIST_FILE = Mobile_App_BootstrapTests/Info.plist; 673 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 674 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 675 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 676 | OTHER_LDFLAGS = ( 677 | "-ObjC", 678 | "-lc++", 679 | ); 680 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 681 | PRODUCT_NAME = "$(TARGET_NAME)"; 682 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Mobile_App_Bootstrap.app/Mobile_App_Bootstrap"; 683 | }; 684 | name = Release; 685 | }; 686 | 13B07F941A680F5B00A75B9A /* Debug */ = { 687 | isa = XCBuildConfiguration; 688 | baseConfigurationReference = F7D7D4AE7BFA8E09BB1747EF /* Pods-Mobile_App_Bootstrap.debug.xcconfig */; 689 | buildSettings = { 690 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 691 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 692 | CLANG_ENABLE_MODULES = YES; 693 | CURRENT_PROJECT_VERSION = 1; 694 | DEAD_CODE_STRIPPING = YES; 695 | HEADER_SEARCH_PATHS = "$(inherited)"; 696 | INFOPLIST_FILE = Mobile_App_Bootstrap/Info.plist; 697 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 698 | LIBRARY_SEARCH_PATHS = ( 699 | "$(inherited)", 700 | "$(SDKROOT)/usr/lib/swift", 701 | ); 702 | OTHER_LDFLAGS = ( 703 | "$(inherited)", 704 | "-ObjC", 705 | "-lc++", 706 | ); 707 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 708 | PRODUCT_NAME = Mobile_App_Bootstrap; 709 | SWIFT_OBJC_BRIDGING_HEADER = "Mobile_App_Bootstrap-Bridging-Header.h"; 710 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 711 | SWIFT_VERSION = 5.0; 712 | VERSIONING_SYSTEM = "apple-generic"; 713 | }; 714 | name = Debug; 715 | }; 716 | 13B07F951A680F5B00A75B9A /* Release */ = { 717 | isa = XCBuildConfiguration; 718 | baseConfigurationReference = 308435C421094EEE01CD5BAA /* Pods-Mobile_App_Bootstrap.release.xcconfig */; 719 | buildSettings = { 720 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 721 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 722 | CLANG_ENABLE_MODULES = YES; 723 | CURRENT_PROJECT_VERSION = 1; 724 | HEADER_SEARCH_PATHS = "$(inherited)"; 725 | INFOPLIST_FILE = Mobile_App_Bootstrap/Info.plist; 726 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 727 | LIBRARY_SEARCH_PATHS = ( 728 | "$(inherited)", 729 | "$(SDKROOT)/usr/lib/swift", 730 | ); 731 | OTHER_LDFLAGS = ( 732 | "$(inherited)", 733 | "-ObjC", 734 | "-lc++", 735 | ); 736 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 737 | PRODUCT_NAME = Mobile_App_Bootstrap; 738 | SWIFT_OBJC_BRIDGING_HEADER = "Mobile_App_Bootstrap-Bridging-Header.h"; 739 | SWIFT_VERSION = 5.0; 740 | VERSIONING_SYSTEM = "apple-generic"; 741 | }; 742 | name = Release; 743 | }; 744 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 745 | isa = XCBuildConfiguration; 746 | buildSettings = { 747 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 748 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 749 | CLANG_ANALYZER_NONNULL = YES; 750 | CLANG_ENABLE_MODULES = YES; 751 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 752 | CLANG_WARN_INFINITE_RECURSION = YES; 753 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 754 | DEBUG_INFORMATION_FORMAT = dwarf; 755 | ENABLE_TESTABILITY = YES; 756 | GCC_NO_COMMON_BLOCKS = YES; 757 | HEADER_SEARCH_PATHS = "$(inherited)"; 758 | INFOPLIST_FILE = "Mobile_App_Bootstrap-tvOS/Info.plist"; 759 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 760 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 761 | OTHER_LDFLAGS = ( 762 | "-ObjC", 763 | "-lc++", 764 | ); 765 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Mobile_App_Bootstrap-tvOS"; 766 | PRODUCT_NAME = "$(TARGET_NAME)"; 767 | SDKROOT = appletvos; 768 | SWIFT_OBJC_BRIDGING_HEADER = "Mobile_App_Bootstrap-tvOS-Bridging-Header.h"; 769 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 770 | SWIFT_VERSION = 5.0; 771 | TARGETED_DEVICE_FAMILY = 3; 772 | TVOS_DEPLOYMENT_TARGET = 12.0; 773 | }; 774 | name = Debug; 775 | }; 776 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 777 | isa = XCBuildConfiguration; 778 | buildSettings = { 779 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 780 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 781 | CLANG_ANALYZER_NONNULL = YES; 782 | CLANG_ENABLE_MODULES = YES; 783 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 784 | CLANG_WARN_INFINITE_RECURSION = YES; 785 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 786 | COPY_PHASE_STRIP = NO; 787 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 788 | GCC_NO_COMMON_BLOCKS = YES; 789 | HEADER_SEARCH_PATHS = "$(inherited)"; 790 | INFOPLIST_FILE = "Mobile_App_Bootstrap-tvOS/Info.plist"; 791 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 792 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 793 | OTHER_LDFLAGS = ( 794 | "-ObjC", 795 | "-lc++", 796 | ); 797 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Mobile_App_Bootstrap-tvOS"; 798 | PRODUCT_NAME = "$(TARGET_NAME)"; 799 | SDKROOT = appletvos; 800 | SWIFT_OBJC_BRIDGING_HEADER = "Mobile_App_Bootstrap-tvOS-Bridging-Header.h"; 801 | SWIFT_VERSION = 5.0; 802 | TARGETED_DEVICE_FAMILY = 3; 803 | TVOS_DEPLOYMENT_TARGET = 12.0; 804 | }; 805 | name = Release; 806 | }; 807 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 808 | isa = XCBuildConfiguration; 809 | buildSettings = { 810 | BUNDLE_LOADER = "$(TEST_HOST)"; 811 | CLANG_ANALYZER_NONNULL = YES; 812 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 813 | CLANG_WARN_INFINITE_RECURSION = YES; 814 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 815 | DEBUG_INFORMATION_FORMAT = dwarf; 816 | ENABLE_TESTABILITY = YES; 817 | GCC_NO_COMMON_BLOCKS = YES; 818 | HEADER_SEARCH_PATHS = "$(inherited)"; 819 | INFOPLIST_FILE = "Mobile_App_Bootstrap-tvOSTests/Info.plist"; 820 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 821 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 822 | OTHER_LDFLAGS = ( 823 | "-ObjC", 824 | "-lc++", 825 | ); 826 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Mobile_App_Bootstrap-tvOSTests"; 827 | PRODUCT_NAME = "$(TARGET_NAME)"; 828 | SDKROOT = appletvos; 829 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Mobile_App_Bootstrap-tvOS.app/Mobile_App_Bootstrap-tvOS"; 830 | TVOS_DEPLOYMENT_TARGET = 12.0; 831 | }; 832 | name = Debug; 833 | }; 834 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 835 | isa = XCBuildConfiguration; 836 | buildSettings = { 837 | BUNDLE_LOADER = "$(TEST_HOST)"; 838 | CLANG_ANALYZER_NONNULL = YES; 839 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 840 | CLANG_WARN_INFINITE_RECURSION = YES; 841 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 842 | COPY_PHASE_STRIP = NO; 843 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 844 | GCC_NO_COMMON_BLOCKS = YES; 845 | HEADER_SEARCH_PATHS = "$(inherited)"; 846 | INFOPLIST_FILE = "Mobile_App_Bootstrap-tvOSTests/Info.plist"; 847 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 848 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 849 | OTHER_LDFLAGS = ( 850 | "-ObjC", 851 | "-lc++", 852 | ); 853 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Mobile_App_Bootstrap-tvOSTests"; 854 | PRODUCT_NAME = "$(TARGET_NAME)"; 855 | SDKROOT = appletvos; 856 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Mobile_App_Bootstrap-tvOS.app/Mobile_App_Bootstrap-tvOS"; 857 | TVOS_DEPLOYMENT_TARGET = 12.0; 858 | }; 859 | name = Release; 860 | }; 861 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 862 | isa = XCBuildConfiguration; 863 | buildSettings = { 864 | ALWAYS_SEARCH_USER_PATHS = NO; 865 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 866 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 867 | CLANG_CXX_LIBRARY = "libc++"; 868 | CLANG_ENABLE_MODULES = YES; 869 | CLANG_ENABLE_OBJC_ARC = YES; 870 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 871 | CLANG_WARN_BOOL_CONVERSION = YES; 872 | CLANG_WARN_COMMA = YES; 873 | CLANG_WARN_CONSTANT_CONVERSION = YES; 874 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 875 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 876 | CLANG_WARN_EMPTY_BODY = YES; 877 | CLANG_WARN_ENUM_CONVERSION = YES; 878 | CLANG_WARN_INFINITE_RECURSION = YES; 879 | CLANG_WARN_INT_CONVERSION = YES; 880 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 881 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 882 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 883 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 884 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 885 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 886 | CLANG_WARN_STRICT_PROTOTYPES = YES; 887 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 888 | CLANG_WARN_UNREACHABLE_CODE = YES; 889 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 890 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 891 | COPY_PHASE_STRIP = NO; 892 | ENABLE_STRICT_OBJC_MSGSEND = YES; 893 | ENABLE_TESTABILITY = YES; 894 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; 895 | GCC_C_LANGUAGE_STANDARD = gnu99; 896 | GCC_DYNAMIC_NO_PIC = NO; 897 | GCC_NO_COMMON_BLOCKS = YES; 898 | GCC_OPTIMIZATION_LEVEL = 0; 899 | GCC_PREPROCESSOR_DEFINITIONS = ( 900 | "DEBUG=1", 901 | "$(inherited)", 902 | ); 903 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 904 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 905 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 906 | GCC_WARN_UNDECLARED_SELECTOR = YES; 907 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 908 | GCC_WARN_UNUSED_FUNCTION = YES; 909 | GCC_WARN_UNUSED_VARIABLE = YES; 910 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 911 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; 912 | LIBRARY_SEARCH_PATHS = ( 913 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 914 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", 915 | "\"$(inherited)\"", 916 | ); 917 | MTL_ENABLE_DEBUG_INFO = YES; 918 | ONLY_ACTIVE_ARCH = YES; 919 | SDKROOT = iphoneos; 920 | }; 921 | name = Debug; 922 | }; 923 | 83CBBA211A601CBA00E9B192 /* Release */ = { 924 | isa = XCBuildConfiguration; 925 | buildSettings = { 926 | ALWAYS_SEARCH_USER_PATHS = NO; 927 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 928 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 929 | CLANG_CXX_LIBRARY = "libc++"; 930 | CLANG_ENABLE_MODULES = YES; 931 | CLANG_ENABLE_OBJC_ARC = YES; 932 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 933 | CLANG_WARN_BOOL_CONVERSION = YES; 934 | CLANG_WARN_COMMA = YES; 935 | CLANG_WARN_CONSTANT_CONVERSION = YES; 936 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 937 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 938 | CLANG_WARN_EMPTY_BODY = YES; 939 | CLANG_WARN_ENUM_CONVERSION = YES; 940 | CLANG_WARN_INFINITE_RECURSION = YES; 941 | CLANG_WARN_INT_CONVERSION = YES; 942 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 943 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 944 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 945 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 946 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 947 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 948 | CLANG_WARN_STRICT_PROTOTYPES = YES; 949 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 950 | CLANG_WARN_UNREACHABLE_CODE = YES; 951 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 952 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 953 | COPY_PHASE_STRIP = YES; 954 | ENABLE_NS_ASSERTIONS = NO; 955 | ENABLE_STRICT_OBJC_MSGSEND = YES; 956 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; 957 | GCC_C_LANGUAGE_STANDARD = gnu99; 958 | GCC_NO_COMMON_BLOCKS = YES; 959 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 960 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 961 | GCC_WARN_UNDECLARED_SELECTOR = YES; 962 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 963 | GCC_WARN_UNUSED_FUNCTION = YES; 964 | GCC_WARN_UNUSED_VARIABLE = YES; 965 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 966 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; 967 | LIBRARY_SEARCH_PATHS = ( 968 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 969 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", 970 | "\"$(inherited)\"", 971 | ); 972 | MTL_ENABLE_DEBUG_INFO = NO; 973 | SDKROOT = iphoneos; 974 | VALIDATE_PRODUCT = YES; 975 | }; 976 | name = Release; 977 | }; 978 | /* End XCBuildConfiguration section */ 979 | 980 | /* Begin XCConfigurationList section */ 981 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "Mobile_App_BootstrapTests" */ = { 982 | isa = XCConfigurationList; 983 | buildConfigurations = ( 984 | 00E356F61AD99517003FC87E /* Debug */, 985 | 00E356F71AD99517003FC87E /* Release */, 986 | ); 987 | defaultConfigurationIsVisible = 0; 988 | defaultConfigurationName = Release; 989 | }; 990 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Mobile_App_Bootstrap" */ = { 991 | isa = XCConfigurationList; 992 | buildConfigurations = ( 993 | 13B07F941A680F5B00A75B9A /* Debug */, 994 | 13B07F951A680F5B00A75B9A /* Release */, 995 | ); 996 | defaultConfigurationIsVisible = 0; 997 | defaultConfigurationName = Release; 998 | }; 999 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Mobile_App_Bootstrap-tvOS" */ = { 1000 | isa = XCConfigurationList; 1001 | buildConfigurations = ( 1002 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1003 | 2D02E4981E0B4A5E006451C7 /* Release */, 1004 | ); 1005 | defaultConfigurationIsVisible = 0; 1006 | defaultConfigurationName = Release; 1007 | }; 1008 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Mobile_App_Bootstrap-tvOSTests" */ = { 1009 | isa = XCConfigurationList; 1010 | buildConfigurations = ( 1011 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1012 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1013 | ); 1014 | defaultConfigurationIsVisible = 0; 1015 | defaultConfigurationName = Release; 1016 | }; 1017 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Mobile_App_Bootstrap" */ = { 1018 | isa = XCConfigurationList; 1019 | buildConfigurations = ( 1020 | 83CBBA201A601CBA00E9B192 /* Debug */, 1021 | 83CBBA211A601CBA00E9B192 /* Release */, 1022 | ); 1023 | defaultConfigurationIsVisible = 0; 1024 | defaultConfigurationName = Release; 1025 | }; 1026 | /* End XCConfigurationList section */ 1027 | }; 1028 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1029 | } 1030 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/xcshareddata/xcschemes/Mobile_App_Bootstrap-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 65 | 66 | 67 | 68 | 70 | 76 | 77 | 78 | 79 | 80 | 90 | 92 | 98 | 99 | 100 | 101 | 107 | 109 | 115 | 116 | 117 | 118 | 120 | 121 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/xcshareddata/xcschemes/Mobile_App_Bootstrap.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 65 | 66 | 67 | 68 | 70 | 76 | 77 | 78 | 79 | 80 | 90 | 92 | 98 | 99 | 100 | 101 | 107 | 109 | 115 | 116 | 117 | 118 | 120 | 121 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 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 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | 3 | #import 4 | #import 5 | #import 6 | 7 | #ifdef FB_SONARKIT_ENABLED 8 | #import 9 | #import 10 | #import 11 | #import 12 | #import 13 | #import 14 | 15 | static void InitializeFlipper(UIApplication *application) { 16 | FlipperClient *client = [FlipperClient sharedClient]; 17 | SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults]; 18 | [client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]]; 19 | [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; 20 | [client addPlugin:[FlipperKitReactPlugin new]]; 21 | [client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]]; 22 | [client start]; 23 | } 24 | #endif 25 | 26 | @implementation AppDelegate 27 | 28 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 29 | { 30 | #ifdef FB_SONARKIT_ENABLED 31 | InitializeFlipper(application); 32 | #endif 33 | 34 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 35 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 36 | moduleName:@"Mobile_App_Bootstrap" 37 | initialProperties:nil]; 38 | 39 | if (@available(iOS 13.0, *)) { 40 | rootView.backgroundColor = [UIColor systemBackgroundColor]; 41 | } else { 42 | rootView.backgroundColor = [UIColor whiteColor]; 43 | } 44 | 45 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 46 | UIViewController *rootViewController = [UIViewController new]; 47 | rootViewController.view = rootView; 48 | self.window.rootViewController = rootViewController; 49 | [self.window makeKeyAndVisible]; 50 | return YES; 51 | } 52 | 53 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 54 | { 55 | #if DEBUG 56 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 57 | #else 58 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 59 | #endif 60 | } 61 | 62 | @end 63 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/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 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "scale" : "2x", 6 | "size" : "20x20" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "scale" : "3x", 11 | "size" : "20x20" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "scale" : "2x", 16 | "size" : "29x29" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "scale" : "3x", 21 | "size" : "29x29" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "scale" : "2x", 26 | "size" : "40x40" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "scale" : "3x", 31 | "size" : "40x40" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "scale" : "2x", 36 | "size" : "60x60" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "scale" : "3x", 41 | "size" : "60x60" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "scale" : "1x", 46 | "size" : "1024x1024" 47 | } 48 | ], 49 | "info" : { 50 | "author" : "xcode", 51 | "version" : 1 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | Mobile_App_Bootstrap 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 | NSExceptionDomains 30 | 31 | localhost 32 | 33 | NSExceptionAllowsInsecureHTTPLoads 34 | 35 | 36 | 37 | 38 | NSLocationWhenInUseUsageDescription 39 | 40 | UIAppFonts 41 | 42 | AntDesign.ttf 43 | Entypo.ttf 44 | EvilIcons.ttf 45 | Feather.ttf 46 | FontAwesome.ttf 47 | FontAwesome5_Brands.ttf 48 | FontAwesome5_Regular.ttf 49 | FontAwesome5_Solid.ttf 50 | Foundation.ttf 51 | Ionicons.ttf 52 | MaterialIcons.ttf 53 | MaterialCommunityIcons.ttf 54 | SimpleLineIcons.ttf 55 | Octicons.ttf 56 | Zocial.ttf 57 | 58 | UILaunchStoryboardName 59 | LaunchScreen 60 | UIRequiredDeviceCapabilities 61 | 62 | armv7 63 | 64 | UISupportedInterfaceOrientations 65 | 66 | UIInterfaceOrientationPortrait 67 | UIInterfaceOrientationLandscapeLeft 68 | UIInterfaceOrientationLandscapeRight 69 | 70 | UIViewControllerBasedStatusBarAppearance 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 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 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_BootstrapTests/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 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_BootstrapTests/Mobile_App_BootstrapTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface Mobile_App_BootstrapTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation Mobile_App_BootstrapTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Podfile: -------------------------------------------------------------------------------- 1 | require_relative '../node_modules/react-native/scripts/react_native_pods' 2 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' 3 | 4 | platform :ios, '10.0' 5 | 6 | target 'Mobile_App_Bootstrap' do 7 | config = use_native_modules! 8 | 9 | use_react_native!( 10 | :path => config[:reactNativePath], 11 | # to enable hermes on iOS, change `false` to `true` and then install pods 12 | :hermes_enabled => false 13 | ) 14 | 15 | target 'Mobile_App_BootstrapTests' do 16 | inherit! :complete 17 | # Pods for testing 18 | end 19 | 20 | # Enables Flipper. 21 | # 22 | # Note that if you have use_frameworks! enabled, Flipper will not work and 23 | # you should disable the next line. 24 | use_flipper!() 25 | 26 | post_install do |installer| 27 | react_native_post_install(installer) 28 | end 29 | end -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - boost-for-react-native (1.63.0) 3 | - CocoaAsyncSocket (7.6.5) 4 | - DoubleConversion (1.1.6) 5 | - FBLazyVector (0.64.1) 6 | - FBReactNativeSpec (0.64.1): 7 | - RCT-Folly (= 2020.01.13.00) 8 | - RCTRequired (= 0.64.1) 9 | - RCTTypeSafety (= 0.64.1) 10 | - React-Core (= 0.64.1) 11 | - React-jsi (= 0.64.1) 12 | - ReactCommon/turbomodule/core (= 0.64.1) 13 | - Flipper (0.75.1): 14 | - Flipper-Folly (~> 2.5) 15 | - Flipper-RSocket (~> 1.3) 16 | - Flipper-DoubleConversion (1.1.7) 17 | - Flipper-Folly (2.5.3): 18 | - boost-for-react-native 19 | - Flipper-DoubleConversion 20 | - Flipper-Glog 21 | - libevent (~> 2.1.12) 22 | - OpenSSL-Universal (= 1.1.180) 23 | - Flipper-Glog (0.3.6) 24 | - Flipper-PeerTalk (0.0.4) 25 | - Flipper-RSocket (1.3.1): 26 | - Flipper-Folly (~> 2.5) 27 | - FlipperKit (0.75.1): 28 | - FlipperKit/Core (= 0.75.1) 29 | - FlipperKit/Core (0.75.1): 30 | - Flipper (~> 0.75.1) 31 | - FlipperKit/CppBridge 32 | - FlipperKit/FBCxxFollyDynamicConvert 33 | - FlipperKit/FBDefines 34 | - FlipperKit/FKPortForwarding 35 | - FlipperKit/CppBridge (0.75.1): 36 | - Flipper (~> 0.75.1) 37 | - FlipperKit/FBCxxFollyDynamicConvert (0.75.1): 38 | - Flipper-Folly (~> 2.5) 39 | - FlipperKit/FBDefines (0.75.1) 40 | - FlipperKit/FKPortForwarding (0.75.1): 41 | - CocoaAsyncSocket (~> 7.6) 42 | - Flipper-PeerTalk (~> 0.0.4) 43 | - FlipperKit/FlipperKitHighlightOverlay (0.75.1) 44 | - FlipperKit/FlipperKitLayoutPlugin (0.75.1): 45 | - FlipperKit/Core 46 | - FlipperKit/FlipperKitHighlightOverlay 47 | - FlipperKit/FlipperKitLayoutTextSearchable 48 | - YogaKit (~> 1.18) 49 | - FlipperKit/FlipperKitLayoutTextSearchable (0.75.1) 50 | - FlipperKit/FlipperKitNetworkPlugin (0.75.1): 51 | - FlipperKit/Core 52 | - FlipperKit/FlipperKitReactPlugin (0.75.1): 53 | - FlipperKit/Core 54 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.75.1): 55 | - FlipperKit/Core 56 | - FlipperKit/SKIOSNetworkPlugin (0.75.1): 57 | - FlipperKit/Core 58 | - FlipperKit/FlipperKitNetworkPlugin 59 | - glog (0.3.5) 60 | - libevent (2.1.12) 61 | - OpenSSL-Universal (1.1.180) 62 | - RCT-Folly (2020.01.13.00): 63 | - boost-for-react-native 64 | - DoubleConversion 65 | - glog 66 | - RCT-Folly/Default (= 2020.01.13.00) 67 | - RCT-Folly/Default (2020.01.13.00): 68 | - boost-for-react-native 69 | - DoubleConversion 70 | - glog 71 | - RCTRequired (0.64.1) 72 | - RCTTypeSafety (0.64.1): 73 | - FBLazyVector (= 0.64.1) 74 | - RCT-Folly (= 2020.01.13.00) 75 | - RCTRequired (= 0.64.1) 76 | - React-Core (= 0.64.1) 77 | - React (0.64.1): 78 | - React-Core (= 0.64.1) 79 | - React-Core/DevSupport (= 0.64.1) 80 | - React-Core/RCTWebSocket (= 0.64.1) 81 | - React-RCTActionSheet (= 0.64.1) 82 | - React-RCTAnimation (= 0.64.1) 83 | - React-RCTBlob (= 0.64.1) 84 | - React-RCTImage (= 0.64.1) 85 | - React-RCTLinking (= 0.64.1) 86 | - React-RCTNetwork (= 0.64.1) 87 | - React-RCTSettings (= 0.64.1) 88 | - React-RCTText (= 0.64.1) 89 | - React-RCTVibration (= 0.64.1) 90 | - React-callinvoker (0.64.1) 91 | - React-Core (0.64.1): 92 | - glog 93 | - RCT-Folly (= 2020.01.13.00) 94 | - React-Core/Default (= 0.64.1) 95 | - React-cxxreact (= 0.64.1) 96 | - React-jsi (= 0.64.1) 97 | - React-jsiexecutor (= 0.64.1) 98 | - React-perflogger (= 0.64.1) 99 | - Yoga 100 | - React-Core/CoreModulesHeaders (0.64.1): 101 | - glog 102 | - RCT-Folly (= 2020.01.13.00) 103 | - React-Core/Default 104 | - React-cxxreact (= 0.64.1) 105 | - React-jsi (= 0.64.1) 106 | - React-jsiexecutor (= 0.64.1) 107 | - React-perflogger (= 0.64.1) 108 | - Yoga 109 | - React-Core/Default (0.64.1): 110 | - glog 111 | - RCT-Folly (= 2020.01.13.00) 112 | - React-cxxreact (= 0.64.1) 113 | - React-jsi (= 0.64.1) 114 | - React-jsiexecutor (= 0.64.1) 115 | - React-perflogger (= 0.64.1) 116 | - Yoga 117 | - React-Core/DevSupport (0.64.1): 118 | - glog 119 | - RCT-Folly (= 2020.01.13.00) 120 | - React-Core/Default (= 0.64.1) 121 | - React-Core/RCTWebSocket (= 0.64.1) 122 | - React-cxxreact (= 0.64.1) 123 | - React-jsi (= 0.64.1) 124 | - React-jsiexecutor (= 0.64.1) 125 | - React-jsinspector (= 0.64.1) 126 | - React-perflogger (= 0.64.1) 127 | - Yoga 128 | - React-Core/RCTActionSheetHeaders (0.64.1): 129 | - glog 130 | - RCT-Folly (= 2020.01.13.00) 131 | - React-Core/Default 132 | - React-cxxreact (= 0.64.1) 133 | - React-jsi (= 0.64.1) 134 | - React-jsiexecutor (= 0.64.1) 135 | - React-perflogger (= 0.64.1) 136 | - Yoga 137 | - React-Core/RCTAnimationHeaders (0.64.1): 138 | - glog 139 | - RCT-Folly (= 2020.01.13.00) 140 | - React-Core/Default 141 | - React-cxxreact (= 0.64.1) 142 | - React-jsi (= 0.64.1) 143 | - React-jsiexecutor (= 0.64.1) 144 | - React-perflogger (= 0.64.1) 145 | - Yoga 146 | - React-Core/RCTBlobHeaders (0.64.1): 147 | - glog 148 | - RCT-Folly (= 2020.01.13.00) 149 | - React-Core/Default 150 | - React-cxxreact (= 0.64.1) 151 | - React-jsi (= 0.64.1) 152 | - React-jsiexecutor (= 0.64.1) 153 | - React-perflogger (= 0.64.1) 154 | - Yoga 155 | - React-Core/RCTImageHeaders (0.64.1): 156 | - glog 157 | - RCT-Folly (= 2020.01.13.00) 158 | - React-Core/Default 159 | - React-cxxreact (= 0.64.1) 160 | - React-jsi (= 0.64.1) 161 | - React-jsiexecutor (= 0.64.1) 162 | - React-perflogger (= 0.64.1) 163 | - Yoga 164 | - React-Core/RCTLinkingHeaders (0.64.1): 165 | - glog 166 | - RCT-Folly (= 2020.01.13.00) 167 | - React-Core/Default 168 | - React-cxxreact (= 0.64.1) 169 | - React-jsi (= 0.64.1) 170 | - React-jsiexecutor (= 0.64.1) 171 | - React-perflogger (= 0.64.1) 172 | - Yoga 173 | - React-Core/RCTNetworkHeaders (0.64.1): 174 | - glog 175 | - RCT-Folly (= 2020.01.13.00) 176 | - React-Core/Default 177 | - React-cxxreact (= 0.64.1) 178 | - React-jsi (= 0.64.1) 179 | - React-jsiexecutor (= 0.64.1) 180 | - React-perflogger (= 0.64.1) 181 | - Yoga 182 | - React-Core/RCTSettingsHeaders (0.64.1): 183 | - glog 184 | - RCT-Folly (= 2020.01.13.00) 185 | - React-Core/Default 186 | - React-cxxreact (= 0.64.1) 187 | - React-jsi (= 0.64.1) 188 | - React-jsiexecutor (= 0.64.1) 189 | - React-perflogger (= 0.64.1) 190 | - Yoga 191 | - React-Core/RCTTextHeaders (0.64.1): 192 | - glog 193 | - RCT-Folly (= 2020.01.13.00) 194 | - React-Core/Default 195 | - React-cxxreact (= 0.64.1) 196 | - React-jsi (= 0.64.1) 197 | - React-jsiexecutor (= 0.64.1) 198 | - React-perflogger (= 0.64.1) 199 | - Yoga 200 | - React-Core/RCTVibrationHeaders (0.64.1): 201 | - glog 202 | - RCT-Folly (= 2020.01.13.00) 203 | - React-Core/Default 204 | - React-cxxreact (= 0.64.1) 205 | - React-jsi (= 0.64.1) 206 | - React-jsiexecutor (= 0.64.1) 207 | - React-perflogger (= 0.64.1) 208 | - Yoga 209 | - React-Core/RCTWebSocket (0.64.1): 210 | - glog 211 | - RCT-Folly (= 2020.01.13.00) 212 | - React-Core/Default (= 0.64.1) 213 | - React-cxxreact (= 0.64.1) 214 | - React-jsi (= 0.64.1) 215 | - React-jsiexecutor (= 0.64.1) 216 | - React-perflogger (= 0.64.1) 217 | - Yoga 218 | - React-CoreModules (0.64.1): 219 | - FBReactNativeSpec (= 0.64.1) 220 | - RCT-Folly (= 2020.01.13.00) 221 | - RCTTypeSafety (= 0.64.1) 222 | - React-Core/CoreModulesHeaders (= 0.64.1) 223 | - React-jsi (= 0.64.1) 224 | - React-RCTImage (= 0.64.1) 225 | - ReactCommon/turbomodule/core (= 0.64.1) 226 | - React-cxxreact (0.64.1): 227 | - boost-for-react-native (= 1.63.0) 228 | - DoubleConversion 229 | - glog 230 | - RCT-Folly (= 2020.01.13.00) 231 | - React-callinvoker (= 0.64.1) 232 | - React-jsi (= 0.64.1) 233 | - React-jsinspector (= 0.64.1) 234 | - React-perflogger (= 0.64.1) 235 | - React-runtimeexecutor (= 0.64.1) 236 | - React-jsi (0.64.1): 237 | - boost-for-react-native (= 1.63.0) 238 | - DoubleConversion 239 | - glog 240 | - RCT-Folly (= 2020.01.13.00) 241 | - React-jsi/Default (= 0.64.1) 242 | - React-jsi/Default (0.64.1): 243 | - boost-for-react-native (= 1.63.0) 244 | - DoubleConversion 245 | - glog 246 | - RCT-Folly (= 2020.01.13.00) 247 | - React-jsiexecutor (0.64.1): 248 | - DoubleConversion 249 | - glog 250 | - RCT-Folly (= 2020.01.13.00) 251 | - React-cxxreact (= 0.64.1) 252 | - React-jsi (= 0.64.1) 253 | - React-perflogger (= 0.64.1) 254 | - React-jsinspector (0.64.1) 255 | - react-native-safe-area-context (3.2.0): 256 | - React-Core 257 | - react-native-webview (11.6.2): 258 | - React-Core 259 | - React-perflogger (0.64.1) 260 | - React-RCTActionSheet (0.64.1): 261 | - React-Core/RCTActionSheetHeaders (= 0.64.1) 262 | - React-RCTAnimation (0.64.1): 263 | - FBReactNativeSpec (= 0.64.1) 264 | - RCT-Folly (= 2020.01.13.00) 265 | - RCTTypeSafety (= 0.64.1) 266 | - React-Core/RCTAnimationHeaders (= 0.64.1) 267 | - React-jsi (= 0.64.1) 268 | - ReactCommon/turbomodule/core (= 0.64.1) 269 | - React-RCTBlob (0.64.1): 270 | - FBReactNativeSpec (= 0.64.1) 271 | - RCT-Folly (= 2020.01.13.00) 272 | - React-Core/RCTBlobHeaders (= 0.64.1) 273 | - React-Core/RCTWebSocket (= 0.64.1) 274 | - React-jsi (= 0.64.1) 275 | - React-RCTNetwork (= 0.64.1) 276 | - ReactCommon/turbomodule/core (= 0.64.1) 277 | - React-RCTImage (0.64.1): 278 | - FBReactNativeSpec (= 0.64.1) 279 | - RCT-Folly (= 2020.01.13.00) 280 | - RCTTypeSafety (= 0.64.1) 281 | - React-Core/RCTImageHeaders (= 0.64.1) 282 | - React-jsi (= 0.64.1) 283 | - React-RCTNetwork (= 0.64.1) 284 | - ReactCommon/turbomodule/core (= 0.64.1) 285 | - React-RCTLinking (0.64.1): 286 | - FBReactNativeSpec (= 0.64.1) 287 | - React-Core/RCTLinkingHeaders (= 0.64.1) 288 | - React-jsi (= 0.64.1) 289 | - ReactCommon/turbomodule/core (= 0.64.1) 290 | - React-RCTNetwork (0.64.1): 291 | - FBReactNativeSpec (= 0.64.1) 292 | - RCT-Folly (= 2020.01.13.00) 293 | - RCTTypeSafety (= 0.64.1) 294 | - React-Core/RCTNetworkHeaders (= 0.64.1) 295 | - React-jsi (= 0.64.1) 296 | - ReactCommon/turbomodule/core (= 0.64.1) 297 | - React-RCTSettings (0.64.1): 298 | - FBReactNativeSpec (= 0.64.1) 299 | - RCT-Folly (= 2020.01.13.00) 300 | - RCTTypeSafety (= 0.64.1) 301 | - React-Core/RCTSettingsHeaders (= 0.64.1) 302 | - React-jsi (= 0.64.1) 303 | - ReactCommon/turbomodule/core (= 0.64.1) 304 | - React-RCTText (0.64.1): 305 | - React-Core/RCTTextHeaders (= 0.64.1) 306 | - React-RCTVibration (0.64.1): 307 | - FBReactNativeSpec (= 0.64.1) 308 | - RCT-Folly (= 2020.01.13.00) 309 | - React-Core/RCTVibrationHeaders (= 0.64.1) 310 | - React-jsi (= 0.64.1) 311 | - ReactCommon/turbomodule/core (= 0.64.1) 312 | - React-runtimeexecutor (0.64.1): 313 | - React-jsi (= 0.64.1) 314 | - ReactCommon/turbomodule/core (0.64.1): 315 | - DoubleConversion 316 | - glog 317 | - RCT-Folly (= 2020.01.13.00) 318 | - React-callinvoker (= 0.64.1) 319 | - React-Core (= 0.64.1) 320 | - React-cxxreact (= 0.64.1) 321 | - React-jsi (= 0.64.1) 322 | - React-perflogger (= 0.64.1) 323 | - RNGestureHandler (1.10.3): 324 | - React-Core 325 | - RNScreens (3.3.0): 326 | - React-Core 327 | - React-RCTImage 328 | - RNVectorIcons (8.1.0): 329 | - React-Core 330 | - Yoga (1.14.0) 331 | - YogaKit (1.18.1): 332 | - Yoga (~> 1.14) 333 | 334 | DEPENDENCIES: 335 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) 336 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) 337 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) 338 | - Flipper (~> 0.75.1) 339 | - Flipper-DoubleConversion (= 1.1.7) 340 | - Flipper-Folly (~> 2.5.3) 341 | - Flipper-Glog (= 0.3.6) 342 | - Flipper-PeerTalk (~> 0.0.4) 343 | - Flipper-RSocket (~> 1.3) 344 | - FlipperKit (~> 0.75.1) 345 | - FlipperKit/Core (~> 0.75.1) 346 | - FlipperKit/CppBridge (~> 0.75.1) 347 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.75.1) 348 | - FlipperKit/FBDefines (~> 0.75.1) 349 | - FlipperKit/FKPortForwarding (~> 0.75.1) 350 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.75.1) 351 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.75.1) 352 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.75.1) 353 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.75.1) 354 | - FlipperKit/FlipperKitReactPlugin (~> 0.75.1) 355 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.75.1) 356 | - FlipperKit/SKIOSNetworkPlugin (~> 0.75.1) 357 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) 358 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) 359 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) 360 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) 361 | - React (from `../node_modules/react-native/`) 362 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) 363 | - React-Core (from `../node_modules/react-native/`) 364 | - React-Core/DevSupport (from `../node_modules/react-native/`) 365 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`) 366 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) 367 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) 368 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) 369 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) 370 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) 371 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) 372 | - react-native-webview (from `../node_modules/react-native-webview`) 373 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) 374 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) 375 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) 376 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) 377 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) 378 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) 379 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) 380 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) 381 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`) 382 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) 383 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) 384 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) 385 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) 386 | - RNScreens (from `../node_modules/react-native-screens`) 387 | - RNVectorIcons (from `../node_modules/react-native-vector-icons`) 388 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) 389 | 390 | SPEC REPOS: 391 | trunk: 392 | - boost-for-react-native 393 | - CocoaAsyncSocket 394 | - Flipper 395 | - Flipper-DoubleConversion 396 | - Flipper-Folly 397 | - Flipper-Glog 398 | - Flipper-PeerTalk 399 | - Flipper-RSocket 400 | - FlipperKit 401 | - libevent 402 | - OpenSSL-Universal 403 | - YogaKit 404 | 405 | EXTERNAL SOURCES: 406 | DoubleConversion: 407 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 408 | FBLazyVector: 409 | :path: "../node_modules/react-native/Libraries/FBLazyVector" 410 | FBReactNativeSpec: 411 | :path: "../node_modules/react-native/React/FBReactNativeSpec" 412 | glog: 413 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" 414 | RCT-Folly: 415 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" 416 | RCTRequired: 417 | :path: "../node_modules/react-native/Libraries/RCTRequired" 418 | RCTTypeSafety: 419 | :path: "../node_modules/react-native/Libraries/TypeSafety" 420 | React: 421 | :path: "../node_modules/react-native/" 422 | React-callinvoker: 423 | :path: "../node_modules/react-native/ReactCommon/callinvoker" 424 | React-Core: 425 | :path: "../node_modules/react-native/" 426 | React-CoreModules: 427 | :path: "../node_modules/react-native/React/CoreModules" 428 | React-cxxreact: 429 | :path: "../node_modules/react-native/ReactCommon/cxxreact" 430 | React-jsi: 431 | :path: "../node_modules/react-native/ReactCommon/jsi" 432 | React-jsiexecutor: 433 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor" 434 | React-jsinspector: 435 | :path: "../node_modules/react-native/ReactCommon/jsinspector" 436 | react-native-safe-area-context: 437 | :path: "../node_modules/react-native-safe-area-context" 438 | react-native-webview: 439 | :path: "../node_modules/react-native-webview" 440 | React-perflogger: 441 | :path: "../node_modules/react-native/ReactCommon/reactperflogger" 442 | React-RCTActionSheet: 443 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS" 444 | React-RCTAnimation: 445 | :path: "../node_modules/react-native/Libraries/NativeAnimation" 446 | React-RCTBlob: 447 | :path: "../node_modules/react-native/Libraries/Blob" 448 | React-RCTImage: 449 | :path: "../node_modules/react-native/Libraries/Image" 450 | React-RCTLinking: 451 | :path: "../node_modules/react-native/Libraries/LinkingIOS" 452 | React-RCTNetwork: 453 | :path: "../node_modules/react-native/Libraries/Network" 454 | React-RCTSettings: 455 | :path: "../node_modules/react-native/Libraries/Settings" 456 | React-RCTText: 457 | :path: "../node_modules/react-native/Libraries/Text" 458 | React-RCTVibration: 459 | :path: "../node_modules/react-native/Libraries/Vibration" 460 | React-runtimeexecutor: 461 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" 462 | ReactCommon: 463 | :path: "../node_modules/react-native/ReactCommon" 464 | RNGestureHandler: 465 | :path: "../node_modules/react-native-gesture-handler" 466 | RNScreens: 467 | :path: "../node_modules/react-native-screens" 468 | RNVectorIcons: 469 | :path: "../node_modules/react-native-vector-icons" 470 | Yoga: 471 | :path: "../node_modules/react-native/ReactCommon/yoga" 472 | 473 | SPEC CHECKSUMS: 474 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c 475 | CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 476 | DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de 477 | FBLazyVector: 7b423f9e248eae65987838148c36eec1dbfe0b53 478 | FBReactNativeSpec: cbfff0c4c4b3212bdaa72c46afa9f4e755e6f795 479 | Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021 480 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 481 | Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c 482 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6 483 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 484 | Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154 485 | FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00 486 | glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62 487 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 488 | OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b 489 | RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c 490 | RCTRequired: ec2ebc96b7bfba3ca5c32740f5a0c6a014a274d2 491 | RCTTypeSafety: 22567f31e67c3e088c7ac23ea46ab6d4779c0ea5 492 | React: a241e3dbb1e91d06332f1dbd2b3ab26e1a4c4b9d 493 | React-callinvoker: da4d1c6141696a00163960906bc8a55b985e4ce4 494 | React-Core: 46ba164c437d7dac607b470c83c8308b05799748 495 | React-CoreModules: 217bd14904491c7b9940ff8b34a3fe08013c2f14 496 | React-cxxreact: 0090588ae6660c4615d3629fdd5c768d0983add4 497 | React-jsi: 5de8204706bd872b78ea646aee5d2561ca1214b6 498 | React-jsiexecutor: 124e8f99992490d0d13e0649d950d3e1aae06fe9 499 | React-jsinspector: 500a59626037be5b3b3d89c5151bc3baa9abf1a9 500 | react-native-safe-area-context: e471852c5ed67eea4b10c5d9d43c1cebae3b231d 501 | react-native-webview: 1f56115845c98f0a59dfbbac685797c014a821be 502 | React-perflogger: aad6d4b4a267936b3667260d1f649b6f6069a675 503 | React-RCTActionSheet: fc376be462c9c8d6ad82c0905442fd77f82a9d2a 504 | React-RCTAnimation: ba0a1c3a2738be224a08092fa7f1b444ab77d309 505 | React-RCTBlob: f758d4403fc5828a326dc69e27b41e1a92f34947 506 | React-RCTImage: ce57088705f4a8d03f6594b066a59c29143ba73e 507 | React-RCTLinking: 852a3a95c65fa63f657a4b4e2d3d83a815e00a7c 508 | React-RCTNetwork: 9d7ccb8a08d522d71700b4fb677d9fa28cccd118 509 | React-RCTSettings: d8aaf4389ff06114dee8c42ef5f0f2915946011e 510 | React-RCTText: 809c12ed6b261796ba056c04fcd20d8b90bcc81d 511 | React-RCTVibration: 4b99a7f5c6c0abbc5256410cc5425fb8531986e1 512 | React-runtimeexecutor: ff951a0c241bfaefc4940a3f1f1a229e7cb32fa6 513 | ReactCommon: bedc99ed4dae329c4fcf128d0c31b9115e5365ca 514 | RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 515 | RNScreens: bf59f17fbf001f1025243eeed5f19419d3c11ef2 516 | RNVectorIcons: 31cebfcf94e8cf8686eb5303ae0357da64d7a5a4 517 | Yoga: a7de31c64fe738607e7a3803e3f591a4b1df7393 518 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a 519 | 520 | PODFILE CHECKSUM: 6222c93aa5e9805ecfa809c9fb4926922a646fb8 521 | 522 | COCOAPODS: 1.10.1 523 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | console.log(`Loading ${__filename}`); 9 | 10 | module.exports = { 11 | transformer: { 12 | getTransformOptions: async () => ({ 13 | transform: { 14 | experimentalImportSupport: false, 15 | inlineRequires: true, 16 | }, 17 | }), 18 | }, 19 | }; 20 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mobile_App_Bootstrap", 3 | "version": "0.2.0", 4 | "private": true, 5 | "devDependencies": { 6 | "@babel/core": "^7.14.2", 7 | "@babel/runtime": "^7.14.0", 8 | "@react-native-community/eslint-config": "^2.0.0", 9 | "babel-jest": "^26.6.3", 10 | "eslint": "^7.26.0", 11 | "jest": "^26.6.3", 12 | "metro-react-native-babel-preset": "^0.66.0", 13 | "react-test-renderer": "17.0.1" 14 | }, 15 | "scripts": { 16 | "start": "react-native start", 17 | "android": "react-native run-android", 18 | "ios": "react-native run-ios", 19 | "test": "node node_modules/jest/bin/jest.js" 20 | }, 21 | "jest": { 22 | "preset": "react-native" 23 | }, 24 | "dependencies": { 25 | "@react-navigation/bottom-tabs": "^5.11.11", 26 | "@react-navigation/native": "^5.9.4", 27 | "@react-navigation/stack": "^5.14.5", 28 | "react": "17.0.1", 29 | "react-native": "0.64.1", 30 | "react-native-elements": "^3.4.1", 31 | "react-native-gesture-handler": "^1.10.3", 32 | "react-native-safe-area-context": "^3.2.0", 33 | "react-native-screens": "~3.3.0", 34 | "react-native-vector-icons": "^8.1.0", 35 | "react-native-webview": "^11.6.2", 36 | "react-navigation": "^4.4.4" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/router.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { Image, StyleSheet, Text, View } from 'react-native'; 3 | import { SafeAreaProvider } from 'react-native-safe-area-context'; 4 | import Icon from 'react-native-vector-icons/Ionicons'; 5 | import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; 6 | import { createStackNavigator } from '@react-navigation/stack'; 7 | import { NavigationContainer } from '@react-navigation/native'; 8 | 9 | import Viz1 from './screens/Viz1'; 10 | import Viz2 from './screens/Viz2'; 11 | import Viz3 from './screens/Viz3'; 12 | import Home from './screens/Home'; 13 | import CardDetails from './screens/CardDetails'; 14 | 15 | const HomeStack = createStackNavigator(); 16 | 17 | function HomeStackScreen() { 18 | return ( 19 | 20 | ( 24 | 28 | ), 29 | }} 30 | /> 31 | ({ title: route.params.headerTitle })} 35 | /> 36 | 37 | ); 38 | } 39 | 40 | const Tab = createBottomTabNavigator(); 41 | 42 | export function navContainer() { 43 | return ( 44 | 45 | 46 | 47 | ( )}} /> 48 | ( )}}/> 49 | ( )}}/> 50 | ( )}}/> 51 | 52 | 53 | 54 | ); 55 | } 56 | 57 | const styles = StyleSheet.create({ 58 | headerView: { 59 | flex: 1, 60 | 'justifyContent': 'center', 61 | 'alignItems': 'center', 62 | height: 60 63 | }, 64 | headerImage: { 65 | flex: 1, 66 | resizeMode: 'contain', 67 | height: 60, 68 | }, 69 | }); 70 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/CardDetails.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { 3 | StyleSheet, 4 | View 5 | } from 'react-native'; 6 | import WebView from 'react-native-webview'; 7 | 8 | export default class CardDetails extends React.Component { 9 | render() { 10 | return ( 11 | 12 | 16 | 17 | ); 18 | } 19 | } 20 | 21 | const styles = StyleSheet.create({ 22 | container: { 23 | flex: 1, 24 | }, 25 | webview: { 26 | flex: 1, 27 | } 28 | }); 29 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/Home.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { 3 | FlatList, 4 | StyleSheet, 5 | Text, 6 | TouchableOpacity, 7 | View 8 | } from 'react-native'; 9 | import { Card } from 'react-native-elements'; 10 | 11 | export default class Home extends React.Component { 12 | onCardPress = (webViewUri, title) => { 13 | this.props.navigation.navigate('Details', {uri: webViewUri, headerTitle: title}); 14 | }; 15 | 16 | renderItem = ({ item }) => { 17 | return ( 18 | this.onCardPress(item.webViewUri, item.title)}> 19 | 25 | 26 | 27 | {item.description} 28 | 29 | 30 | 31 | ); 32 | }; 33 | 34 | keyExtractor = (item, index) => item.title + '-' + index; 35 | 36 | render() { 37 | const cards = [ 38 | { 39 | title: 'Help', 40 | imageUri: require('../../assets/HelpViz.png'), 41 | description: 'Leverage the Developer Portal for help.', 42 | webViewUri: 'https://developer.tableau.com', 43 | }, { 44 | title: 'Reference', 45 | imageUri: require('../../assets/JavaScriptLogo.png'), 46 | description: 'Learn about the Tableau Javascript API.', 47 | webViewUri: 'https://onlinehelp.tableau.com/current/api/js_api/en-us/JavaScriptAPI/js_api.htm', 48 | }, { 49 | title: 'Stories', 50 | imageUri: require('../../assets/StoriesViz.png'), 51 | description: 'Discover how people are using Tableau.', 52 | webViewUri: 'https://www.tableau.com/stories', 53 | }, { 54 | title: 'Download', 55 | imageUri: require('../../assets/Download.png'), 56 | description: 'Download Tableau Mobile.', 57 | webViewUri: 'https://www.tableau.com/products/mobile', 58 | }, { 59 | title: 'Explore', 60 | imageUri: require('../../assets/ExploreViz.png'), 61 | description: 'Read about other Tableau Products.', 62 | webViewUri: 'https://www.tableau.com/products', 63 | }, { 64 | title: 'Learn', 65 | imageUri: require('../../assets/ReactNativeLogo.png'), 66 | description: 'Learn React Native.', 67 | webViewUri: 'https://facebook.github.io/react-native/', 68 | }, 69 | ]; 70 | 71 | return ( 72 | 73 | 80 | 81 | ); 82 | } 83 | } 84 | 85 | const styles = StyleSheet.create({ 86 | container: { 87 | flex: 1, 88 | flexDirection: 'row', 89 | justifyContent: 'space-between', 90 | margin: 5, 91 | borderRadius: 4, 92 | }, 93 | wrapper: { 94 | flex: 1, 95 | }, 96 | flatList: { 97 | paddingLeft: 1, 98 | paddingRight: 1, 99 | }, 100 | item: { 101 | flex: 0.33, 102 | flexDirection: 'column', 103 | justifyContent: 'space-around', 104 | marginBottom: 4 105 | }, 106 | title: { 107 | marginTop: 0, 108 | marginBottom: 0, 109 | padding: 7, 110 | backgroundColor:'#F5F5F5', 111 | fontWeight: 'normal', 112 | textAlign: 'left' 113 | }, 114 | description: { 115 | fontWeight: '200', 116 | } 117 | }); 118 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/Viz1.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { 3 | StyleSheet, 4 | View 5 | } from 'react-native'; 6 | import WebView from 'react-native-webview'; 7 | 8 | export default class Viz1 extends React.Component { 9 | render() { 10 | return ( 11 | 12 | 16 | 17 | ); 18 | } 19 | } 20 | 21 | const styles = StyleSheet.create({ 22 | container: { 23 | paddingTop: 25, 24 | flex: 1, 25 | }, 26 | webview: { 27 | flex: 1, 28 | } 29 | }); -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/Viz2.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { 3 | StyleSheet, 4 | View 5 | } from 'react-native'; 6 | import WebView from 'react-native-webview'; 7 | 8 | export default class Viz2 extends React.Component { 9 | render() { 10 | return ( 11 | 12 | 16 | 17 | ); 18 | } 19 | } 20 | 21 | const styles = StyleSheet.create({ 22 | container: { 23 | paddingTop: 25, 24 | flex: 1, 25 | }, 26 | webview: { 27 | flex: 1, 28 | } 29 | }); -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/Viz3.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { 3 | StyleSheet, 4 | View 5 | } from 'react-native'; 6 | import WebView from 'react-native-webview'; 7 | 8 | export default class Viz3 extends React.Component { 9 | render() { 10 | return ( 11 | 12 | 16 | 17 | ); 18 | } 19 | } 20 | 21 | const styles = StyleSheet.create({ 22 | container: { 23 | paddingTop: 25, 24 | flex: 1, 25 | }, 26 | webview: { 27 | flex: 1, 28 | } 29 | }); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mobile App Bootstrap: React Native 2 | [![Community Supported](https://img.shields.io/badge/Support%20Level-Community%20Supported-457387.svg)](https://www.tableau.com/support-levels-it-and-developer-tools) 3 | 4 | Provides a look at example code for how to embed Tableau visualizations inside of a React Native app that runs on iOS and Android. 5 | 6 | ## More Info 7 | 8 | The [2019 Tableau Conference included a session on the Mobile App Bootstrap](https://tc19.tableau.com/learn/sessions/mobile-app-bootstrap-custom-mobile-apps-embedded-tableau-visualizations) as did the [2018 Tableau Conference](https://tc18.tableau.com/learn/sessions/32250). The sessions outline some business use cases and provide some more technical background. The session video and slides are available from those TC pages. 9 | 10 | ## Installation 11 | 12 | Mac: 13 | 14 | 1. Download the code for the app from the [github repository](https://github.com/tableau/mobile-app-bootstrap-react-native) 15 | 2. Install [Visual Studio Code](https://code.visualstudio.com/) 16 | * VS Code is the main IDE we use for React Native development; it's where you'll do most of your editing. 17 | 3. Install Xcode for creating iOS builds 18 | 4. Install Android Studio for creating Android builds 19 | * You might need these added to your `~/.bash_profile`: 20 | `export ANDROID_HOME=$HOME/Library/Android/sdk` 21 | `export PATH="$PATH:$ANDROID_HOME/platform-tools:$ANDROID_HOME/tools"` 22 | 5. Install [homebrew](https://brew.sh/) 23 | 6. `brew install node` 24 | * This uses homebrew to install node 25 | 7. `brew install watchman` 26 | * watchman enables some fun auto-reload-on-file-change capabilities in React Native 27 | 8. `npm install -g react-native-cli` 28 | * This installs the React Native Command Line Interface 29 | 30 | 31 | Windows: 32 | 33 | 1. Download the code for the app from the [github repository](https://github.com/tableau/mobile-app-bootstrap-react-native) 34 | 2. Install [Visual Studio Code](https://code.visualstudio.com/) 35 | * VS Code is the main IDE we use for React Native development; it's where you'll do most of your editing. 36 | 3. Follow Step 1 and Step 2 in these excellent [Windows installation instructions](https://shift.infinite.red/getting-started-with-react-native-development-on-windows-90d85a72ae65) 37 | 38 | Note that we've run into problems running watchman on Windows, so the auto-reload functionality won't be available. Also note that iOS building/running is only possible on a Mac. We do almost all of our mobile development using Macs. 39 | 40 | 41 | ## Download Modules 42 | From the `Mobile_App_Bootstrap` directory, run `npm install` 43 | * This installs the various modules needed into a `node_modules` directory. 44 | 45 | ## Starting the sample app 46 | 47 | iOS 48 | * `cd ios`, `pod install`, `cd ..` will install the native iOS cocoapods libraries needed by the libraries included in `node_modules`. 49 | * `react-native run-ios` runs the iOS build in the default simulator. 50 | * `react-native run-ios --simulator="MySimulatorName"` will run the iOS build using the simulator you specify. 51 | * More details on [specifying simulators](https://facebook.github.io/react-native/docs/running-on-simulator-ios.html) 52 | * List of available simulators: `xcrun simctl list` 53 | * Example to create your own named simulator for an iPad Air 2 running iOS 11.3: `xcrun simctl create MySimulatorName com.apple.CoreSimulator.SimDeviceType.iPad-Air-2 com.apple.CoreSimulator.SimRuntime.iOS-11-3` 54 | * ⌘-d in the iOS simulator brings up the [React Native debug menu](https://facebook.github.io/react-native/docs/debugging.html). 55 | 56 | Android 57 | * Run an AVD (Android Virtual Device) emulator. This could be started via Android Studio (Tools -> AVD Manager) or [the command line](https://developer.android.com/studio/run/emulator-commandline) 58 | * `react-native run-android` runs the Android build 59 | * ⌘-m in the Android emulator brings up the [React Native debug menu](https://facebook.github.io/react-native/docs/debugging.html). 60 | 61 | 62 | For running on a physical iOS/Android device, [take a look at the docs for the subtleties involved](https://facebook.github.io/react-native/docs/running-on-device). 63 | 64 | ## Debugging 65 | 66 | React Native has some great [debugging documentation](https://facebook.github.io/react-native/docs/debugging.html), it's well worth reading through. A common setup for us is to have the standalone [React Developer Tools](https://github.com/facebook/react-devtools/tree/master/packages/react-devtools) running and the simulator with Live Reload and Hot Reloading turned on. 67 | 68 | # Project Layout 69 | 70 | The main app files you'll want to edit are in `src`. The app uses [React Navigation](https://reactnavigation.org/) to provide the bottom tab navigation. 71 | 72 | The core of this project was created using `create-react-native-app`, as outlined in the [React Native Getting Started docs](https://facebook.github.io/react-native/docs/getting-started.html). After the app was made, it was "[ejected](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/README.md#ejecting-from-create-react-native-app)" and modified. 73 | 74 | ## Customization Points 75 | 76 | * `Home.js` shows the Home tab. A tap on one of the cards opens a CardDetails object, displaying the provided URL in a webview. 77 | * `Viz1.js`, `Viz2.js`, `Viz3.js` show the three viz tabs. They open the hard-coded URLs provided. Note that WKWebView is used behind the scenes on iOS, while the default WebView is used on Android. You'll want to change these URLs to point to your own vizzes. 78 | * `router.js` configures the bottom tabs using [React Navigation](https://reactnavigation.org/). 79 | 80 | ## URL parameters 81 | The sample URLs use several [query parameters](https://onlinehelp.tableau.com/current/pro/desktop/en-us/embed_list.htm) which are especially helpful for mobile embedded vizzes: 82 | * `:embed=y`: Requests the embedded version of the viz, without the server navigation UI. 83 | * `:tooltip=n`: Removes tooltips. Used in this demo to keep the user on the viz. 84 | * `:toolbar=n`: Removes the viz toolbar. 85 | * `:showVizHome=no`: Used in this demo to not show Tableau Public home information. Unnecessary when connecting to servers not named Tableau Public. 86 | * `:mobile=y`: Explicitly requests a touch-friendly UI, rather than relying on Tableau Server's User-Agent sniffing. 87 | * `:showAppBanner=n`: Removes the "Open in Tableau Public" banner at the top of the viz. 88 | 89 | # Support 90 | 91 | This collection is supported by the community and not officially 'blessed' by Tableau Engineering or Support. What does that mean? We didn't have a QA team test it. It's a tool for learning how to embed vizzes inside a mobile application. You should not expect that there are 0 bugs. 92 | 93 | If you have problems getting it to work, feel free to email us with questions, but we can't promise quick responses. The [Tableau Developer Community](developer.tableau.com) is also a great resource if you need help. 94 | 95 | A standard disclaimer: mobile-app-bootstrap-react-native is made available AS-IS with no support and no warranty whatsoever. Despite efforts to write good and useful code there may be bugs that cause unexpected and undesirable behavior. The software is strictly “use at your own risk.” 96 | 97 | The good news: This is intended to be a self-service tool. You are free to modify it in any way to meet your needs. 98 | 99 | --------------------------------------------------------------------------------