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