├── .babelrc ├── .buckconfig ├── .env.example ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── Gemfile ├── Gemfile.lock ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── reactnativeanimationexamples │ │ │ ├── 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 ├── fastlane ├── Appfile ├── Fastfile ├── README.md └── metadata │ └── android │ └── en-GB │ ├── changelogs │ ├── 1.txt │ ├── 10.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ ├── title.txt │ └── video.txt ├── index.js ├── ios ├── ReactNativeAnimationExamples-tvOS │ └── Info.plist ├── ReactNativeAnimationExamples-tvOSTests │ └── Info.plist ├── ReactNativeAnimationExamples.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ReactNativeAnimationExamples-tvOS.xcscheme │ │ └── ReactNativeAnimationExamples.xcscheme ├── ReactNativeAnimationExamples │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ReactNativeAnimationExamplesTests │ ├── Info.plist │ └── ReactNativeAnimationExamplesTests.m ├── package.json ├── src ├── AppNavigator.js ├── ExamplesList.js ├── components │ ├── HeaderLink.js │ ├── MonthYearPad.js │ ├── NumberPad.js │ └── README.md └── examples │ ├── CardPayment │ ├── App.js │ ├── Card.js │ ├── PaymentButton.js │ ├── README.md │ ├── images │ │ ├── hsbc.png │ │ └── visa.png │ └── index.js │ ├── MapLocationChange │ ├── App.js │ ├── README.md │ └── index.js │ ├── README.md │ └── TicketPrint │ ├── App.js │ ├── Printer.js │ ├── README.md │ ├── Ticket.js │ └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["module:metro-react-native-babel-preset"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | GOOGLE_MAPS_API_KEY=xxx -------------------------------------------------------------------------------- /.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.78.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/**/*/images 54 | 55 | google-play-android-developer-service-account.json 56 | .env -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | import { View } from "react-native"; 3 | 4 | import AppNavigator from "./src/AppNavigator"; 5 | 6 | const App = () => ( 7 | 8 | 9 | 10 | ); 11 | 12 | export default App; 13 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | CFPropertyList (3.0.0) 5 | addressable (2.5.2) 6 | public_suffix (>= 2.0.2, < 4.0) 7 | atomos (0.1.3) 8 | babosa (1.0.2) 9 | claide (1.0.2) 10 | colored (1.2) 11 | colored2 (3.1.2) 12 | commander-fastlane (4.4.6) 13 | highline (~> 1.7.2) 14 | declarative (0.0.10) 15 | declarative-option (0.1.0) 16 | domain_name (0.5.20180417) 17 | unf (>= 0.0.5, < 1.0.0) 18 | dotenv (2.5.0) 19 | emoji_regex (0.1.1) 20 | excon (0.62.0) 21 | faraday (0.15.2) 22 | multipart-post (>= 1.2, < 3) 23 | faraday-cookie_jar (0.0.6) 24 | faraday (>= 0.7.4) 25 | http-cookie (~> 1.0.0) 26 | faraday_middleware (0.12.2) 27 | faraday (>= 0.7.4, < 1.0) 28 | fastimage (2.1.4) 29 | fastlane (2.104.0) 30 | CFPropertyList (>= 2.3, < 4.0.0) 31 | addressable (>= 2.3, < 3.0.0) 32 | babosa (>= 1.0.2, < 2.0.0) 33 | bundler (>= 1.12.0, < 2.0.0) 34 | colored 35 | commander-fastlane (>= 4.4.6, < 5.0.0) 36 | dotenv (>= 2.1.1, < 3.0.0) 37 | emoji_regex (~> 0.1) 38 | excon (>= 0.45.0, < 1.0.0) 39 | faraday (~> 0.9) 40 | faraday-cookie_jar (~> 0.0.6) 41 | faraday_middleware (~> 0.9) 42 | fastimage (>= 2.1.0, < 3.0.0) 43 | gh_inspector (>= 1.1.2, < 2.0.0) 44 | google-api-client (>= 0.21.2, < 0.24.0) 45 | highline (>= 1.7.2, < 2.0.0) 46 | json (< 3.0.0) 47 | mini_magick (~> 4.5.1) 48 | multi_json 49 | multi_xml (~> 0.5) 50 | multipart-post (~> 2.0.0) 51 | plist (>= 3.1.0, < 4.0.0) 52 | public_suffix (~> 2.0.0) 53 | rubyzip (>= 1.2.2, < 2.0.0) 54 | security (= 0.1.3) 55 | simctl (~> 1.6.3) 56 | slack-notifier (>= 2.0.0, < 3.0.0) 57 | terminal-notifier (>= 1.6.2, < 2.0.0) 58 | terminal-table (>= 1.4.5, < 2.0.0) 59 | tty-screen (>= 0.6.3, < 1.0.0) 60 | tty-spinner (>= 0.8.0, < 1.0.0) 61 | word_wrap (~> 1.0.0) 62 | xcodeproj (>= 1.6.0, < 2.0.0) 63 | xcpretty (~> 0.3.0) 64 | xcpretty-travis-formatter (>= 0.0.3) 65 | gh_inspector (1.1.3) 66 | google-api-client (0.23.9) 67 | addressable (~> 2.5, >= 2.5.1) 68 | googleauth (>= 0.5, < 0.7.0) 69 | httpclient (>= 2.8.1, < 3.0) 70 | mime-types (~> 3.0) 71 | representable (~> 3.0) 72 | retriable (>= 2.0, < 4.0) 73 | signet (~> 0.9) 74 | googleauth (0.6.6) 75 | faraday (~> 0.12) 76 | jwt (>= 1.4, < 3.0) 77 | memoist (~> 0.12) 78 | multi_json (~> 1.11) 79 | os (>= 0.9, < 2.0) 80 | signet (~> 0.7) 81 | highline (1.7.10) 82 | http-cookie (1.0.3) 83 | domain_name (~> 0.5) 84 | httpclient (2.8.3) 85 | json (2.1.0) 86 | jwt (2.1.0) 87 | memoist (0.16.0) 88 | mime-types (3.2.2) 89 | mime-types-data (~> 3.2015) 90 | mime-types-data (3.2018.0812) 91 | mini_magick (4.5.1) 92 | multi_json (1.13.1) 93 | multi_xml (0.6.0) 94 | multipart-post (2.0.0) 95 | nanaimo (0.2.6) 96 | naturally (2.2.0) 97 | os (1.0.0) 98 | plist (3.4.0) 99 | public_suffix (2.0.5) 100 | representable (3.0.4) 101 | declarative (< 0.1.0) 102 | declarative-option (< 0.2.0) 103 | uber (< 0.2.0) 104 | retriable (3.1.2) 105 | rouge (2.0.7) 106 | rubyzip (1.2.2) 107 | security (0.1.3) 108 | signet (0.9.1) 109 | addressable (~> 2.3) 110 | faraday (~> 0.9) 111 | jwt (>= 1.5, < 3.0) 112 | multi_json (~> 1.10) 113 | simctl (1.6.5) 114 | CFPropertyList 115 | naturally 116 | slack-notifier (2.3.2) 117 | terminal-notifier (1.8.0) 118 | terminal-table (1.8.0) 119 | unicode-display_width (~> 1.1, >= 1.1.1) 120 | tty-cursor (0.6.0) 121 | tty-screen (0.6.5) 122 | tty-spinner (0.8.0) 123 | tty-cursor (>= 0.5.0) 124 | uber (0.1.0) 125 | unf (0.1.4) 126 | unf_ext 127 | unf_ext (0.0.7.5) 128 | unicode-display_width (1.4.0) 129 | word_wrap (1.0.0) 130 | xcodeproj (1.6.0) 131 | CFPropertyList (>= 2.3.3, < 4.0) 132 | atomos (~> 0.1.3) 133 | claide (>= 1.0.2, < 2.0) 134 | colored2 (~> 3.1) 135 | nanaimo (~> 0.2.6) 136 | xcpretty (0.3.0) 137 | rouge (~> 2.0.7) 138 | xcpretty-travis-formatter (1.0.0) 139 | xcpretty (~> 0.2, >= 0.0.7) 140 | 141 | PLATFORMS 142 | ruby 143 | 144 | DEPENDENCIES 145 | fastlane 146 | 147 | BUNDLED WITH 148 | 1.16.4 149 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Native Animation Examples 2 | 3 | A collection of animations rendered with React Native, using only JavaScript. 4 | 5 | This repo will mostly be examples taken from sites like [Dribbble](https://dribbble.com/), and brought to life using React Native. 6 | 7 | ## Deployment 8 | 9 | This app uses [fastlane](https://docs.fastlane.tools/) for deployment, it allows us to perform easy and reproducable deployments straight from the command line. 10 | 11 | To deploy the app use `yarn run android:deploy:[channel]` where `channel` is one of `alpha`, `beta`, or `release`. To deploy the app you'll need to `Google Play` store developer account and will also need a service account. Instructions for this can be found [here](https://docs.fastlane.tools/getting-started/android/setup/). When you download the `.json` file for your service account rename it to `google-play-android-developer-service-account.json` to place it in the project root directory. 12 | 13 | When deploying the Android app you'll need to first increment the `versionCode` and the `versionName`. 14 | -------------------------------------------------------------------------------- /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 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] 15 | lib_deps.append(':' + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.reactnativeanimationexamples", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.reactnativeanimationexamples", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle" 3 | 4 | import com.android.build.OutputFile 5 | 6 | /** 7 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 8 | * and bundleReleaseJsAndAssets). 9 | * These basically call `react-native bundle` with the correct arguments during the Android build 10 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 11 | * bundle directly from the development server. Below you can see all the possible configurations 12 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 13 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 14 | * 15 | * project.ext.react = [ 16 | * // the name of the generated asset file containing your JS bundle 17 | * bundleAssetName: "index.android.bundle", 18 | * 19 | * // the entry file for bundle generation 20 | * entryFile: "index.android.js", 21 | * 22 | * // whether to bundle JS and assets in debug mode 23 | * bundleInDebug: false, 24 | * 25 | * // whether to bundle JS and assets in release mode 26 | * bundleInRelease: true, 27 | * 28 | * // whether to bundle JS and assets in another build variant (if configured). 29 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 30 | * // The configuration property can be in the following formats 31 | * // 'bundleIn${productFlavor}${buildType}' 32 | * // 'bundleIn${buildType}' 33 | * // bundleInFreeDebug: true, 34 | * // bundleInPaidRelease: true, 35 | * // bundleInBeta: true, 36 | * 37 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 38 | * // for example: to disable dev mode in the staging build type (if configured) 39 | * devDisabledInStaging: true, 40 | * // The configuration property can be in the following formats 41 | * // 'devDisabledIn${productFlavor}${buildType}' 42 | * // 'devDisabledIn${buildType}' 43 | * 44 | * // the root of your project, i.e. where "package.json" lives 45 | * root: "../../", 46 | * 47 | * // where to put the JS bundle asset in debug mode 48 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 49 | * 50 | * // where to put the JS bundle asset in release mode 51 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 52 | * 53 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 54 | * // require('./image.png')), in debug mode 55 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 56 | * 57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 58 | * // require('./image.png')), in release mode 59 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 60 | * 61 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 62 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 63 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 64 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 65 | * // for example, you might want to remove it from here. 66 | * inputExcludes: ["android/**", "ios/**"], 67 | * 68 | * // override which node gets called and with what additional arguments 69 | * nodeExecutableAndArgs: ["node"], 70 | * 71 | * // supply additional arguments to the packager 72 | * extraPackagerArgs: [] 73 | * ] 74 | */ 75 | 76 | project.ext.react = [ 77 | entryFile: "index.js" 78 | ] 79 | 80 | apply from: "../../node_modules/react-native/react.gradle" 81 | 82 | /** 83 | * Set this to true to create two separate APKs instead of one: 84 | * - An APK that only works on ARM devices 85 | * - An APK that only works on x86 devices 86 | * The advantage is the size of the APK is reduced by about 4MB. 87 | * Upload all the APKs to the Play Store and people will download 88 | * the correct one based on the CPU architecture of their device. 89 | */ 90 | def enableSeparateBuildPerCPUArchitecture = false 91 | 92 | /** 93 | * Run Proguard to shrink the Java bytecode in release builds. 94 | */ 95 | def enableProguardInReleaseBuilds = false 96 | 97 | android { 98 | compileSdkVersion rootProject.ext.compileSdkVersion 99 | buildToolsVersion rootProject.ext.buildToolsVersion 100 | 101 | defaultConfig { 102 | applicationId "com.reactnativeanimationexamples" 103 | minSdkVersion rootProject.ext.minSdkVersion 104 | targetSdkVersion rootProject.ext.targetSdkVersion 105 | versionCode 14 106 | versionName "1.0.13" 107 | ndk { 108 | abiFilters "armeabi-v7a", "x86" 109 | } 110 | } 111 | signingConfigs { 112 | release { 113 | Properties properties = new Properties() 114 | properties.load(project.rootProject.file('local.properties').newDataInputStream()) 115 | 116 | storeFile file(properties.getProperty('RN_ANIMATIONS_EXAMPLE_RELEASE_STORE_FILE')) 117 | keyAlias properties.getProperty('RN_ANIMATIONS_EXAMPLE_RELEASE_KEY_ALIAS') 118 | storePassword properties.getProperty('RN_ANIMATIONS_EXAMPLE_RELEASE_STORE_PASSWORD') 119 | keyPassword properties.getProperty('RN_ANIMATIONS_EXAMPLE_RELEASE_KEY_PASSWORD') 120 | } 121 | } 122 | splits { 123 | abi { 124 | reset() 125 | enable enableSeparateBuildPerCPUArchitecture 126 | universalApk false // If true, also generate a universal APK 127 | include "armeabi-v7a", "x86" 128 | } 129 | } 130 | buildTypes { 131 | release { 132 | minifyEnabled enableProguardInReleaseBuilds 133 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 134 | signingConfig signingConfigs.release 135 | } 136 | } 137 | // applicationVariants are e.g. debug, release 138 | applicationVariants.all { variant -> 139 | variant.outputs.each { output -> 140 | // For each separate APK per architecture, set a unique version code as described here: 141 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 142 | def versionCodes = ["armeabi-v7a":1, "x86":2] 143 | def abi = output.getFilter(OutputFile.ABI) 144 | if (abi != null) { // null for the universal-debug, universal-release variants 145 | output.versionCodeOverride = 146 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 147 | } 148 | } 149 | } 150 | } 151 | 152 | dependencies { 153 | implementation project(':react-native-vector-icons') 154 | implementation project(':react-native-maps') 155 | implementation project(':react-native-config') 156 | implementation fileTree(dir: "libs", include: ["*.jar"]) 157 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 158 | implementation "com.facebook.react:react-native:+" // From node_modules 159 | } 160 | 161 | // Run this once to be able to run the application with BUCK 162 | // puts all compile dependencies into folder libs for BUCK to use 163 | task copyDownloadableDepsToLibs(type: Copy) { 164 | from configurations.compile 165 | into 'libs' 166 | } 167 | -------------------------------------------------------------------------------- /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/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeanimationexamples/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.reactnativeanimationexamples; 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 "ReactNativeAnimationExamples"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeanimationexamples/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.reactnativeanimationexamples; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.oblador.vectoricons.VectorIconsPackage; 7 | import com.airbnb.android.react.maps.MapsPackage; 8 | import com.lugg.ReactNativeConfig.ReactNativeConfigPackage; 9 | import com.lugg.ReactNativeConfig.ReactNativeConfigPackage; 10 | import com.airbnb.android.react.maps.MapsPackage; 11 | import com.oblador.vectoricons.VectorIconsPackage; 12 | import com.facebook.react.ReactNativeHost; 13 | import com.facebook.react.ReactPackage; 14 | import com.facebook.react.shell.MainReactPackage; 15 | import com.facebook.soloader.SoLoader; 16 | 17 | import java.util.Arrays; 18 | import java.util.List; 19 | 20 | public class MainApplication extends Application implements ReactApplication { 21 | 22 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 23 | @Override 24 | public boolean getUseDeveloperSupport() { 25 | return BuildConfig.DEBUG; 26 | } 27 | 28 | @Override 29 | protected List getPackages() { 30 | return Arrays.asList( 31 | new MainReactPackage(), 32 | new ReactNativeConfigPackage(), 33 | new VectorIconsPackage(), 34 | new MapsPackage() 35 | ); 36 | } 37 | 38 | @Override 39 | protected String getJSMainModuleName() { 40 | return "index"; 41 | } 42 | }; 43 | 44 | @Override 45 | public ReactNativeHost getReactNativeHost() { 46 | return mReactNativeHost; 47 | } 48 | 49 | @Override 50 | public void onCreate() { 51 | super.onCreate(); 52 | SoLoader.init(this, /* native exopackage */ false); 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/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/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/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/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/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/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/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/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/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/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/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/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/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/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/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/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/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/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | React Native Animation Examples 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 = "27.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 27 8 | targetSdkVersion = 26 9 | supportLibVersion = "27.1.1" 10 | googlePlayServicesVersion = "11.8.0" 11 | androidMapsUtilsVersion = "0.5+" 12 | } 13 | repositories { 14 | jcenter() 15 | google() 16 | } 17 | dependencies { 18 | classpath 'com.android.tools.build:gradle:3.1.4' 19 | 20 | // NOTE: Do not place your application dependencies here; they belong 21 | // in the individual module build.gradle files 22 | } 23 | } 24 | 25 | allprojects { 26 | repositories { 27 | mavenLocal() 28 | jcenter() 29 | maven { 30 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 31 | url "$rootDir/../node_modules/react-native/android" 32 | } 33 | google() 34 | } 35 | } 36 | 37 | 38 | task wrapper(type: Wrapper) { 39 | gradleVersion = '4.4' 40 | distributionUrl = distributionUrl.replace("bin", "all") 41 | } 42 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /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 = 'ReactNativeAnimationExamples' 2 | include ':react-native-maps' 3 | project(':react-native-maps').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-maps/lib/android') 4 | include ':react-native-config' 5 | project(':react-native-config').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-config/android') 6 | include ':react-native-vector-icons' 7 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 8 | include ':app' 9 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ReactNativeAnimationExamples", 3 | "displayName": "ReactNativeAnimationExamples" 4 | } -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | json_key_file "./google-play-android-developer-service-account.json" 2 | package_name "com.reactnativeanimationexamples" -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- 1 | platform :android do 2 | lane :alpha do 3 | desc "Submit a new Alpha Build to Play Store" 4 | gradle(task: 'clean', project_dir: "android/") # Clean the Gradle project 5 | gradle(task: "assemble", build_type: "Release", project_dir: "android/") # Build the Release APK 6 | supply(track: "alpha", apk: "android/app/build/outputs/apk/release/app-release.apk") # Deploy to alpha! 7 | end 8 | 9 | lane :beta do 10 | desc "Submit a new Beta Build to Play Store" 11 | gradle(task: 'clean', project_dir: "android/") # Clean the Gradle project 12 | gradle(task: "assemble", build_type: "Release", project_dir: "android/") # Build the Release APK 13 | supply(track: "beta", apk: "android/app/build/outputs/apk/release/app-release.apk") # Deploy to alpha! 14 | end 15 | 16 | lane :production do 17 | desc "Submit a new Production Build to Play Store" 18 | gradle(task: 'clean', project_dir: "android/") # Clean the Gradle project 19 | gradle(task: "assemble", build_type: "Release", project_dir: "android/") # Build the Release APK 20 | supply(track: "production", apk: "android/app/build/outputs/apk/release/app-release.apk") # Deploy to alpha! 21 | end 22 | end -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- 1 | fastlane documentation 2 | ================ 3 | # Installation 4 | 5 | Make sure you have the latest version of the Xcode command line tools installed: 6 | 7 | ``` 8 | xcode-select --install 9 | ``` 10 | 11 | Install _fastlane_ using 12 | ``` 13 | [sudo] gem install fastlane -NV 14 | ``` 15 | or alternatively using `brew cask install fastlane` 16 | 17 | # Available Actions 18 | ## Android 19 | ### android alpha 20 | ``` 21 | fastlane android alpha 22 | ``` 23 | 24 | ### android beta 25 | ``` 26 | fastlane android beta 27 | ``` 28 | 29 | ### android production 30 | ``` 31 | fastlane android production 32 | ``` 33 | 34 | 35 | ---- 36 | 37 | This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run. 38 | More information about fastlane can be found on [fastlane.tools](https://fastlane.tools). 39 | The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools). 40 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | First release -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/changelogs/10.txt: -------------------------------------------------------------------------------- 1 | Added a ticket printing machine example. -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | Fastlane changelog test -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/changelogs/5.txt: -------------------------------------------------------------------------------- 1 | Fixed incorrectly passing through a colour prop in the CardPayment example -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | Deployed production version! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/changelogs/7.txt: -------------------------------------------------------------------------------- 1 | Added a source code link to the CardPayment example -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/changelogs/9.txt: -------------------------------------------------------------------------------- 1 | Added Map Location Change example with a source code link -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/full_description.txt: -------------------------------------------------------------------------------- 1 | Animation examples using react-native. 2 | 3 | Source: https://github.com/alexdunne/ReactNativeAnimationExamples 4 | 5 | For design and image attribution please see the repository. -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/short_description.txt: -------------------------------------------------------------------------------- 1 | Animation examples using react-native -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/title.txt: -------------------------------------------------------------------------------- 1 | React Native Animation Examples -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/video.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdunne/ReactNativeAnimationExamples/2e6545f8de7ee4a5976cbeccc0f67f3208a3c2cb/fastlane/metadata/android/en-GB/video.txt -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native'; 2 | import App from './App'; 3 | 4 | AppRegistry.registerComponent('ReactNativeAnimationExamples', () => App); 5 | -------------------------------------------------------------------------------- /ios/ReactNativeAnimationExamples-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/ReactNativeAnimationExamples-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/ReactNativeAnimationExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | /* Begin PBXBuildFile section */ 9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 14 | 00E356F31AD99517003FC87E /* ReactNativeAnimationExamplesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeAnimationExamplesTests.m */; }; 15 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* ReactNativeAnimationExamplesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeAnimationExamplesTests.m */; }; 37 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 38 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 39 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 40 | 7E49EC29EE81483D9C5C5BAF /* libReactNativeConfig.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 545258D38D914387A863C209 /* libReactNativeConfig.a */; }; 41 | 21A12C9E08F8401CB96A02EF /* libAirMaps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 156C879C41A24E5DBD9C5A9F /* libAirMaps.a */; }; 42 | EBA3724808CD4006BF0F9482 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3BD2141A465D414095AADEB0 /* libRNVectorIcons.a */; }; 43 | F1011DAB3C554AA1AC0561D4 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1D2A52E4BACC4C369037A3EB /* Entypo.ttf */; }; 44 | 54AA49D50529452CA3E3B1C4 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6959DA943F0E4E26A9C32CE0 /* EvilIcons.ttf */; }; 45 | 66A18B990E154F00A731AE8E /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = AD96FAB2FFAC43D4866EB757 /* Feather.ttf */; }; 46 | 7C7AB9F9286541A9AF029284 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 35E7256B99CE45DC91D4FBE5 /* FontAwesome.ttf */; }; 47 | B63B271214AF4C6F8882D3F3 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 16355CA918B549C995A5DDE8 /* FontAwesome5_Brands.ttf */; }; 48 | 4F8333A2EEF64D7FB31D6CFC /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 782BF412C44F4B06A0ED7C35 /* FontAwesome5_Regular.ttf */; }; 49 | E2D6C11F3EFA4C349D6D515F /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 194CB963194F48DEA8A47945 /* FontAwesome5_Solid.ttf */; }; 50 | 0C49C1F9478741818F7F9C4A /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1F3948EFB8F74CAD8A2938B8 /* Foundation.ttf */; }; 51 | 557AB81D39E2406398DEC0CF /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 42632CBD4EC94CA99705F73C /* Ionicons.ttf */; }; 52 | 6439DD95C2E84561BF0D292E /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 07546BF24D014D6E8A795E41 /* MaterialCommunityIcons.ttf */; }; 53 | 864871C4D06E4D01A542E3AC /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1C070303D7AE4742A2D938BC /* MaterialIcons.ttf */; }; 54 | 687027A7F6454B9291C3B4B2 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6A8455FFA60D4CC29C9AE6F9 /* Octicons.ttf */; }; 55 | E18295B31FDB479590A1D327 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3793E195976A4004BF3F828D /* SimpleLineIcons.ttf */; }; 56 | 44A3B825B6D6457EB94FD029 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F541830D632D456A935A5D79 /* Zocial.ttf */; }; 57 | /* End PBXBuildFile section */ 58 | 59 | /* Begin PBXContainerItemProxy section */ 60 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 61 | isa = PBXContainerItemProxy; 62 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 63 | proxyType = 2; 64 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 65 | remoteInfo = RCTActionSheet; 66 | }; 67 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 68 | isa = PBXContainerItemProxy; 69 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 70 | proxyType = 2; 71 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 72 | remoteInfo = RCTGeolocation; 73 | }; 74 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 75 | isa = PBXContainerItemProxy; 76 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 77 | proxyType = 2; 78 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 79 | remoteInfo = RCTImage; 80 | }; 81 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 82 | isa = PBXContainerItemProxy; 83 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 84 | proxyType = 2; 85 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 86 | remoteInfo = RCTNetwork; 87 | }; 88 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 89 | isa = PBXContainerItemProxy; 90 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 91 | proxyType = 2; 92 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 93 | remoteInfo = RCTVibration; 94 | }; 95 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 96 | isa = PBXContainerItemProxy; 97 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 98 | proxyType = 1; 99 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 100 | remoteInfo = ReactNativeAnimationExamples; 101 | }; 102 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 103 | isa = PBXContainerItemProxy; 104 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 105 | proxyType = 2; 106 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 107 | remoteInfo = RCTSettings; 108 | }; 109 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 110 | isa = PBXContainerItemProxy; 111 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 112 | proxyType = 2; 113 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 114 | remoteInfo = RCTWebSocket; 115 | }; 116 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 117 | isa = PBXContainerItemProxy; 118 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 119 | proxyType = 2; 120 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 121 | remoteInfo = React; 122 | }; 123 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 124 | isa = PBXContainerItemProxy; 125 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 126 | proxyType = 1; 127 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 128 | remoteInfo = "ReactNativeAnimationExamples-tvOS"; 129 | }; 130 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 131 | isa = PBXContainerItemProxy; 132 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 133 | proxyType = 2; 134 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 135 | remoteInfo = "RCTBlob-tvOS"; 136 | }; 137 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 138 | isa = PBXContainerItemProxy; 139 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 140 | proxyType = 2; 141 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 142 | remoteInfo = fishhook; 143 | }; 144 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 145 | isa = PBXContainerItemProxy; 146 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 147 | proxyType = 2; 148 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 149 | remoteInfo = "fishhook-tvOS"; 150 | }; 151 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 152 | isa = PBXContainerItemProxy; 153 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 154 | proxyType = 2; 155 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 156 | remoteInfo = jsinspector; 157 | }; 158 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 159 | isa = PBXContainerItemProxy; 160 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 161 | proxyType = 2; 162 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 163 | remoteInfo = "jsinspector-tvOS"; 164 | }; 165 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 166 | isa = PBXContainerItemProxy; 167 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 168 | proxyType = 2; 169 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 170 | remoteInfo = "third-party"; 171 | }; 172 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 173 | isa = PBXContainerItemProxy; 174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 175 | proxyType = 2; 176 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 177 | remoteInfo = "third-party-tvOS"; 178 | }; 179 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 180 | isa = PBXContainerItemProxy; 181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 182 | proxyType = 2; 183 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 184 | remoteInfo = "double-conversion"; 185 | }; 186 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 187 | isa = PBXContainerItemProxy; 188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 189 | proxyType = 2; 190 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 191 | remoteInfo = "double-conversion-tvOS"; 192 | }; 193 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 194 | isa = PBXContainerItemProxy; 195 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 196 | proxyType = 2; 197 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 198 | remoteInfo = privatedata; 199 | }; 200 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 201 | isa = PBXContainerItemProxy; 202 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 203 | proxyType = 2; 204 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 205 | remoteInfo = "privatedata-tvOS"; 206 | }; 207 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 208 | isa = PBXContainerItemProxy; 209 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 210 | proxyType = 2; 211 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 212 | remoteInfo = "RCTImage-tvOS"; 213 | }; 214 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 215 | isa = PBXContainerItemProxy; 216 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 217 | proxyType = 2; 218 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 219 | remoteInfo = "RCTLinking-tvOS"; 220 | }; 221 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 222 | isa = PBXContainerItemProxy; 223 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 224 | proxyType = 2; 225 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 226 | remoteInfo = "RCTNetwork-tvOS"; 227 | }; 228 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 229 | isa = PBXContainerItemProxy; 230 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 231 | proxyType = 2; 232 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 233 | remoteInfo = "RCTSettings-tvOS"; 234 | }; 235 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 236 | isa = PBXContainerItemProxy; 237 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 238 | proxyType = 2; 239 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 240 | remoteInfo = "RCTText-tvOS"; 241 | }; 242 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 243 | isa = PBXContainerItemProxy; 244 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 245 | proxyType = 2; 246 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 247 | remoteInfo = "RCTWebSocket-tvOS"; 248 | }; 249 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 250 | isa = PBXContainerItemProxy; 251 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 252 | proxyType = 2; 253 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 254 | remoteInfo = "React-tvOS"; 255 | }; 256 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 257 | isa = PBXContainerItemProxy; 258 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 259 | proxyType = 2; 260 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 261 | remoteInfo = yoga; 262 | }; 263 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 264 | isa = PBXContainerItemProxy; 265 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 266 | proxyType = 2; 267 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 268 | remoteInfo = "yoga-tvOS"; 269 | }; 270 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 271 | isa = PBXContainerItemProxy; 272 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 273 | proxyType = 2; 274 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 275 | remoteInfo = cxxreact; 276 | }; 277 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 278 | isa = PBXContainerItemProxy; 279 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 280 | proxyType = 2; 281 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 282 | remoteInfo = "cxxreact-tvOS"; 283 | }; 284 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 285 | isa = PBXContainerItemProxy; 286 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 287 | proxyType = 2; 288 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 289 | remoteInfo = jschelpers; 290 | }; 291 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 292 | isa = PBXContainerItemProxy; 293 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 294 | proxyType = 2; 295 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 296 | remoteInfo = "jschelpers-tvOS"; 297 | }; 298 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 299 | isa = PBXContainerItemProxy; 300 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 301 | proxyType = 2; 302 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 303 | remoteInfo = RCTAnimation; 304 | }; 305 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 306 | isa = PBXContainerItemProxy; 307 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 308 | proxyType = 2; 309 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 310 | remoteInfo = "RCTAnimation-tvOS"; 311 | }; 312 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 313 | isa = PBXContainerItemProxy; 314 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 315 | proxyType = 2; 316 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 317 | remoteInfo = RCTLinking; 318 | }; 319 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 320 | isa = PBXContainerItemProxy; 321 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 322 | proxyType = 2; 323 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 324 | remoteInfo = RCTText; 325 | }; 326 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 327 | isa = PBXContainerItemProxy; 328 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 329 | proxyType = 2; 330 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 331 | remoteInfo = RCTBlob; 332 | }; 333 | /* End PBXContainerItemProxy section */ 334 | 335 | /* Begin PBXFileReference section */ 336 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 337 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 338 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 339 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 340 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 341 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 342 | 00E356EE1AD99517003FC87E /* ReactNativeAnimationExamplesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactNativeAnimationExamplesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 343 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 344 | 00E356F21AD99517003FC87E /* ReactNativeAnimationExamplesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactNativeAnimationExamplesTests.m; sourceTree = ""; }; 345 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 346 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 347 | 13B07F961A680F5B00A75B9A /* ReactNativeAnimationExamples.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactNativeAnimationExamples.app; sourceTree = BUILT_PRODUCTS_DIR; }; 348 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ReactNativeAnimationExamples/AppDelegate.h; sourceTree = ""; }; 349 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ReactNativeAnimationExamples/AppDelegate.m; sourceTree = ""; }; 350 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 351 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReactNativeAnimationExamples/Images.xcassets; sourceTree = ""; }; 352 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReactNativeAnimationExamples/Info.plist; sourceTree = ""; }; 353 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ReactNativeAnimationExamples/main.m; sourceTree = ""; }; 354 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 355 | 2D02E47B1E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ReactNativeAnimationExamples-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 356 | 2D02E4901E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ReactNativeAnimationExamples-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 357 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 358 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 359 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 360 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 361 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 362 | 31CED7ECC1D243A08F8D7EF8 /* ReactNativeConfig.xcodeproj */ = {isa = PBXFileReference; name = "ReactNativeConfig.xcodeproj"; path = "../node_modules/react-native-config/ios/ReactNativeConfig.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 363 | 545258D38D914387A863C209 /* libReactNativeConfig.a */ = {isa = PBXFileReference; name = "libReactNativeConfig.a"; path = "libReactNativeConfig.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 364 | 71A17C1006E14E85B7F44498 /* AirMaps.xcodeproj */ = {isa = PBXFileReference; name = "AirMaps.xcodeproj"; path = "../node_modules/react-native-maps/lib/ios/AirMaps.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 365 | 156C879C41A24E5DBD9C5A9F /* libAirMaps.a */ = {isa = PBXFileReference; name = "libAirMaps.a"; path = "libAirMaps.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 366 | 4E88F76B17E243DA96961865 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; name = "RNVectorIcons.xcodeproj"; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 367 | 3BD2141A465D414095AADEB0 /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 368 | 1D2A52E4BACC4C369037A3EB /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 369 | 6959DA943F0E4E26A9C32CE0 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 370 | AD96FAB2FFAC43D4866EB757 /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 371 | 35E7256B99CE45DC91D4FBE5 /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 372 | 16355CA918B549C995A5DDE8 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Brands.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 373 | 782BF412C44F4B06A0ED7C35 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Regular.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 374 | 194CB963194F48DEA8A47945 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Solid.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 375 | 1F3948EFB8F74CAD8A2938B8 /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 376 | 42632CBD4EC94CA99705F73C /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 377 | 07546BF24D014D6E8A795E41 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 378 | 1C070303D7AE4742A2D938BC /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 379 | 6A8455FFA60D4CC29C9AE6F9 /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 380 | 3793E195976A4004BF3F828D /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 381 | F541830D632D456A935A5D79 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 382 | /* End PBXFileReference section */ 383 | 384 | /* Begin PBXFrameworksBuildPhase section */ 385 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 386 | isa = PBXFrameworksBuildPhase; 387 | buildActionMask = 2147483647; 388 | files = ( 389 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 390 | ); 391 | runOnlyForDeploymentPostprocessing = 0; 392 | }; 393 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 394 | isa = PBXFrameworksBuildPhase; 395 | buildActionMask = 2147483647; 396 | files = ( 397 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 398 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 399 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 400 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 401 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 402 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 403 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 404 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 405 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 406 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 407 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 408 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 409 | 7E49EC29EE81483D9C5C5BAF /* libReactNativeConfig.a in Frameworks */, 410 | 21A12C9E08F8401CB96A02EF /* libAirMaps.a in Frameworks */, 411 | EBA3724808CD4006BF0F9482 /* libRNVectorIcons.a in Frameworks */, 412 | ); 413 | runOnlyForDeploymentPostprocessing = 0; 414 | }; 415 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 416 | isa = PBXFrameworksBuildPhase; 417 | buildActionMask = 2147483647; 418 | files = ( 419 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 420 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 421 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 422 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 423 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 424 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 425 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 426 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 427 | ); 428 | runOnlyForDeploymentPostprocessing = 0; 429 | }; 430 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 431 | isa = PBXFrameworksBuildPhase; 432 | buildActionMask = 2147483647; 433 | files = ( 434 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 435 | ); 436 | runOnlyForDeploymentPostprocessing = 0; 437 | }; 438 | /* End PBXFrameworksBuildPhase section */ 439 | 440 | /* Begin PBXGroup section */ 441 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 442 | isa = PBXGroup; 443 | children = ( 444 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 445 | ); 446 | name = Products; 447 | sourceTree = ""; 448 | }; 449 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 450 | isa = PBXGroup; 451 | children = ( 452 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 453 | ); 454 | name = Products; 455 | sourceTree = ""; 456 | }; 457 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 458 | isa = PBXGroup; 459 | children = ( 460 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 461 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 462 | ); 463 | name = Products; 464 | sourceTree = ""; 465 | }; 466 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 467 | isa = PBXGroup; 468 | children = ( 469 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 470 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 471 | ); 472 | name = Products; 473 | sourceTree = ""; 474 | }; 475 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 476 | isa = PBXGroup; 477 | children = ( 478 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 479 | ); 480 | name = Products; 481 | sourceTree = ""; 482 | }; 483 | 00E356EF1AD99517003FC87E /* ReactNativeAnimationExamplesTests */ = { 484 | isa = PBXGroup; 485 | children = ( 486 | 00E356F21AD99517003FC87E /* ReactNativeAnimationExamplesTests.m */, 487 | 00E356F01AD99517003FC87E /* Supporting Files */, 488 | ); 489 | path = ReactNativeAnimationExamplesTests; 490 | sourceTree = ""; 491 | }; 492 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 493 | isa = PBXGroup; 494 | children = ( 495 | 00E356F11AD99517003FC87E /* Info.plist */, 496 | ); 497 | name = "Supporting Files"; 498 | sourceTree = ""; 499 | }; 500 | 139105B71AF99BAD00B5F7CC /* Products */ = { 501 | isa = PBXGroup; 502 | children = ( 503 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 504 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 505 | ); 506 | name = Products; 507 | sourceTree = ""; 508 | }; 509 | 139FDEE71B06529A00C62182 /* Products */ = { 510 | isa = PBXGroup; 511 | children = ( 512 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 513 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 514 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 515 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 516 | ); 517 | name = Products; 518 | sourceTree = ""; 519 | }; 520 | 13B07FAE1A68108700A75B9A /* ReactNativeAnimationExamples */ = { 521 | isa = PBXGroup; 522 | children = ( 523 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 524 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 525 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 526 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 527 | 13B07FB61A68108700A75B9A /* Info.plist */, 528 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 529 | 13B07FB71A68108700A75B9A /* main.m */, 530 | ); 531 | name = ReactNativeAnimationExamples; 532 | sourceTree = ""; 533 | }; 534 | 146834001AC3E56700842450 /* Products */ = { 535 | isa = PBXGroup; 536 | children = ( 537 | 146834041AC3E56700842450 /* libReact.a */, 538 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 539 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 540 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 541 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 542 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 543 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 544 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 545 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 546 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 547 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 548 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 549 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 550 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 551 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 552 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 553 | ); 554 | name = Products; 555 | sourceTree = ""; 556 | }; 557 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 558 | isa = PBXGroup; 559 | children = ( 560 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 561 | ); 562 | name = Frameworks; 563 | sourceTree = ""; 564 | }; 565 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 566 | isa = PBXGroup; 567 | children = ( 568 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 569 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 570 | ); 571 | name = Products; 572 | sourceTree = ""; 573 | }; 574 | 78C398B11ACF4ADC00677621 /* Products */ = { 575 | isa = PBXGroup; 576 | children = ( 577 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 578 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 579 | ); 580 | name = Products; 581 | sourceTree = ""; 582 | }; 583 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 584 | isa = PBXGroup; 585 | children = ( 586 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 587 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 588 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 589 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 590 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 591 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 592 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 593 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 594 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 595 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 596 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 597 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 598 | 31CED7ECC1D243A08F8D7EF8 /* ReactNativeConfig.xcodeproj */, 599 | 71A17C1006E14E85B7F44498 /* AirMaps.xcodeproj */, 600 | 4E88F76B17E243DA96961865 /* RNVectorIcons.xcodeproj */, 601 | ); 602 | name = Libraries; 603 | sourceTree = ""; 604 | }; 605 | 832341B11AAA6A8300B99B32 /* Products */ = { 606 | isa = PBXGroup; 607 | children = ( 608 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 609 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 610 | ); 611 | name = Products; 612 | sourceTree = ""; 613 | }; 614 | 83CBB9F61A601CBA00E9B192 = { 615 | isa = PBXGroup; 616 | children = ( 617 | 13B07FAE1A68108700A75B9A /* ReactNativeAnimationExamples */, 618 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 619 | 00E356EF1AD99517003FC87E /* ReactNativeAnimationExamplesTests */, 620 | 83CBBA001A601CBA00E9B192 /* Products */, 621 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 622 | C6A625EC21724A20851DD8AC /* Resources */, 623 | ); 624 | indentWidth = 2; 625 | sourceTree = ""; 626 | tabWidth = 2; 627 | usesTabs = 0; 628 | }; 629 | 83CBBA001A601CBA00E9B192 /* Products */ = { 630 | isa = PBXGroup; 631 | children = ( 632 | 13B07F961A680F5B00A75B9A /* ReactNativeAnimationExamples.app */, 633 | 00E356EE1AD99517003FC87E /* ReactNativeAnimationExamplesTests.xctest */, 634 | 2D02E47B1E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOS.app */, 635 | 2D02E4901E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOSTests.xctest */, 636 | ); 637 | name = Products; 638 | sourceTree = ""; 639 | }; 640 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 641 | isa = PBXGroup; 642 | children = ( 643 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 644 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 645 | ); 646 | name = Products; 647 | sourceTree = ""; 648 | }; 649 | C6A625EC21724A20851DD8AC /* Resources */ = { 650 | isa = "PBXGroup"; 651 | children = ( 652 | 1D2A52E4BACC4C369037A3EB /* Entypo.ttf */, 653 | 6959DA943F0E4E26A9C32CE0 /* EvilIcons.ttf */, 654 | AD96FAB2FFAC43D4866EB757 /* Feather.ttf */, 655 | 35E7256B99CE45DC91D4FBE5 /* FontAwesome.ttf */, 656 | 16355CA918B549C995A5DDE8 /* FontAwesome5_Brands.ttf */, 657 | 782BF412C44F4B06A0ED7C35 /* FontAwesome5_Regular.ttf */, 658 | 194CB963194F48DEA8A47945 /* FontAwesome5_Solid.ttf */, 659 | 1F3948EFB8F74CAD8A2938B8 /* Foundation.ttf */, 660 | 42632CBD4EC94CA99705F73C /* Ionicons.ttf */, 661 | 07546BF24D014D6E8A795E41 /* MaterialCommunityIcons.ttf */, 662 | 1C070303D7AE4742A2D938BC /* MaterialIcons.ttf */, 663 | 6A8455FFA60D4CC29C9AE6F9 /* Octicons.ttf */, 664 | 3793E195976A4004BF3F828D /* SimpleLineIcons.ttf */, 665 | F541830D632D456A935A5D79 /* Zocial.ttf */, 666 | ); 667 | name = Resources; 668 | sourceTree = ""; 669 | path = ""; 670 | }; 671 | /* End PBXGroup section */ 672 | 673 | /* Begin PBXNativeTarget section */ 674 | 00E356ED1AD99517003FC87E /* ReactNativeAnimationExamplesTests */ = { 675 | isa = PBXNativeTarget; 676 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactNativeAnimationExamplesTests" */; 677 | buildPhases = ( 678 | 00E356EA1AD99517003FC87E /* Sources */, 679 | 00E356EB1AD99517003FC87E /* Frameworks */, 680 | 00E356EC1AD99517003FC87E /* Resources */, 681 | ); 682 | buildRules = ( 683 | ); 684 | dependencies = ( 685 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 686 | ); 687 | name = ReactNativeAnimationExamplesTests; 688 | productName = ReactNativeAnimationExamplesTests; 689 | productReference = 00E356EE1AD99517003FC87E /* ReactNativeAnimationExamplesTests.xctest */; 690 | productType = "com.apple.product-type.bundle.unit-test"; 691 | }; 692 | 13B07F861A680F5B00A75B9A /* ReactNativeAnimationExamples */ = { 693 | isa = PBXNativeTarget; 694 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNativeAnimationExamples" */; 695 | buildPhases = ( 696 | 13B07F871A680F5B00A75B9A /* Sources */, 697 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 698 | 13B07F8E1A680F5B00A75B9A /* Resources */, 699 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 700 | ); 701 | buildRules = ( 702 | ); 703 | dependencies = ( 704 | ); 705 | name = ReactNativeAnimationExamples; 706 | productName = "Hello World"; 707 | productReference = 13B07F961A680F5B00A75B9A /* ReactNativeAnimationExamples.app */; 708 | productType = "com.apple.product-type.application"; 709 | }; 710 | 2D02E47A1E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOS */ = { 711 | isa = PBXNativeTarget; 712 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeAnimationExamples-tvOS" */; 713 | buildPhases = ( 714 | 2D02E4771E0B4A5D006451C7 /* Sources */, 715 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 716 | 2D02E4791E0B4A5D006451C7 /* Resources */, 717 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 718 | ); 719 | buildRules = ( 720 | ); 721 | dependencies = ( 722 | ); 723 | name = "ReactNativeAnimationExamples-tvOS"; 724 | productName = "ReactNativeAnimationExamples-tvOS"; 725 | productReference = 2D02E47B1E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOS.app */; 726 | productType = "com.apple.product-type.application"; 727 | }; 728 | 2D02E48F1E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOSTests */ = { 729 | isa = PBXNativeTarget; 730 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeAnimationExamples-tvOSTests" */; 731 | buildPhases = ( 732 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 733 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 734 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 735 | ); 736 | buildRules = ( 737 | ); 738 | dependencies = ( 739 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 740 | ); 741 | name = "ReactNativeAnimationExamples-tvOSTests"; 742 | productName = "ReactNativeAnimationExamples-tvOSTests"; 743 | productReference = 2D02E4901E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOSTests.xctest */; 744 | productType = "com.apple.product-type.bundle.unit-test"; 745 | }; 746 | /* End PBXNativeTarget section */ 747 | 748 | /* Begin PBXProject section */ 749 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 750 | isa = PBXProject; 751 | attributes = { 752 | LastUpgradeCheck = 940; 753 | ORGANIZATIONNAME = Facebook; 754 | TargetAttributes = { 755 | 00E356ED1AD99517003FC87E = { 756 | CreatedOnToolsVersion = 6.2; 757 | TestTargetID = 13B07F861A680F5B00A75B9A; 758 | }; 759 | 2D02E47A1E0B4A5D006451C7 = { 760 | CreatedOnToolsVersion = 8.2.1; 761 | ProvisioningStyle = Automatic; 762 | }; 763 | 2D02E48F1E0B4A5D006451C7 = { 764 | CreatedOnToolsVersion = 8.2.1; 765 | ProvisioningStyle = Automatic; 766 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 767 | }; 768 | }; 769 | }; 770 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeAnimationExamples" */; 771 | compatibilityVersion = "Xcode 3.2"; 772 | developmentRegion = English; 773 | hasScannedForEncodings = 0; 774 | knownRegions = ( 775 | en, 776 | Base, 777 | ); 778 | mainGroup = 83CBB9F61A601CBA00E9B192; 779 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 780 | projectDirPath = ""; 781 | projectReferences = ( 782 | { 783 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 784 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 785 | }, 786 | { 787 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 788 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 789 | }, 790 | { 791 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 792 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 793 | }, 794 | { 795 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 796 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 797 | }, 798 | { 799 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 800 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 801 | }, 802 | { 803 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 804 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 805 | }, 806 | { 807 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 808 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 809 | }, 810 | { 811 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 812 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 813 | }, 814 | { 815 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 816 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 817 | }, 818 | { 819 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 820 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 821 | }, 822 | { 823 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 824 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 825 | }, 826 | { 827 | ProductGroup = 146834001AC3E56700842450 /* Products */; 828 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 829 | }, 830 | ); 831 | projectRoot = ""; 832 | targets = ( 833 | 13B07F861A680F5B00A75B9A /* ReactNativeAnimationExamples */, 834 | 00E356ED1AD99517003FC87E /* ReactNativeAnimationExamplesTests */, 835 | 2D02E47A1E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOS */, 836 | 2D02E48F1E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOSTests */, 837 | ); 838 | }; 839 | /* End PBXProject section */ 840 | 841 | /* Begin PBXReferenceProxy section */ 842 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 843 | isa = PBXReferenceProxy; 844 | fileType = archive.ar; 845 | path = libRCTActionSheet.a; 846 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 847 | sourceTree = BUILT_PRODUCTS_DIR; 848 | }; 849 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 850 | isa = PBXReferenceProxy; 851 | fileType = archive.ar; 852 | path = libRCTGeolocation.a; 853 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 854 | sourceTree = BUILT_PRODUCTS_DIR; 855 | }; 856 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 857 | isa = PBXReferenceProxy; 858 | fileType = archive.ar; 859 | path = libRCTImage.a; 860 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 861 | sourceTree = BUILT_PRODUCTS_DIR; 862 | }; 863 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 864 | isa = PBXReferenceProxy; 865 | fileType = archive.ar; 866 | path = libRCTNetwork.a; 867 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 868 | sourceTree = BUILT_PRODUCTS_DIR; 869 | }; 870 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 871 | isa = PBXReferenceProxy; 872 | fileType = archive.ar; 873 | path = libRCTVibration.a; 874 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 875 | sourceTree = BUILT_PRODUCTS_DIR; 876 | }; 877 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 878 | isa = PBXReferenceProxy; 879 | fileType = archive.ar; 880 | path = libRCTSettings.a; 881 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 882 | sourceTree = BUILT_PRODUCTS_DIR; 883 | }; 884 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 885 | isa = PBXReferenceProxy; 886 | fileType = archive.ar; 887 | path = libRCTWebSocket.a; 888 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 889 | sourceTree = BUILT_PRODUCTS_DIR; 890 | }; 891 | 146834041AC3E56700842450 /* libReact.a */ = { 892 | isa = PBXReferenceProxy; 893 | fileType = archive.ar; 894 | path = libReact.a; 895 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 896 | sourceTree = BUILT_PRODUCTS_DIR; 897 | }; 898 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 899 | isa = PBXReferenceProxy; 900 | fileType = archive.ar; 901 | path = "libRCTBlob-tvOS.a"; 902 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 903 | sourceTree = BUILT_PRODUCTS_DIR; 904 | }; 905 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 906 | isa = PBXReferenceProxy; 907 | fileType = archive.ar; 908 | path = libfishhook.a; 909 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 910 | sourceTree = BUILT_PRODUCTS_DIR; 911 | }; 912 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 913 | isa = PBXReferenceProxy; 914 | fileType = archive.ar; 915 | path = "libfishhook-tvOS.a"; 916 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 917 | sourceTree = BUILT_PRODUCTS_DIR; 918 | }; 919 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 920 | isa = PBXReferenceProxy; 921 | fileType = archive.ar; 922 | path = libjsinspector.a; 923 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 924 | sourceTree = BUILT_PRODUCTS_DIR; 925 | }; 926 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 927 | isa = PBXReferenceProxy; 928 | fileType = archive.ar; 929 | path = "libjsinspector-tvOS.a"; 930 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 931 | sourceTree = BUILT_PRODUCTS_DIR; 932 | }; 933 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 934 | isa = PBXReferenceProxy; 935 | fileType = archive.ar; 936 | path = "libthird-party.a"; 937 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 938 | sourceTree = BUILT_PRODUCTS_DIR; 939 | }; 940 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 941 | isa = PBXReferenceProxy; 942 | fileType = archive.ar; 943 | path = "libthird-party.a"; 944 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 945 | sourceTree = BUILT_PRODUCTS_DIR; 946 | }; 947 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 948 | isa = PBXReferenceProxy; 949 | fileType = archive.ar; 950 | path = "libdouble-conversion.a"; 951 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 952 | sourceTree = BUILT_PRODUCTS_DIR; 953 | }; 954 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 955 | isa = PBXReferenceProxy; 956 | fileType = archive.ar; 957 | path = "libdouble-conversion.a"; 958 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 959 | sourceTree = BUILT_PRODUCTS_DIR; 960 | }; 961 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 962 | isa = PBXReferenceProxy; 963 | fileType = archive.ar; 964 | path = libprivatedata.a; 965 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 966 | sourceTree = BUILT_PRODUCTS_DIR; 967 | }; 968 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 969 | isa = PBXReferenceProxy; 970 | fileType = archive.ar; 971 | path = "libprivatedata-tvOS.a"; 972 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 973 | sourceTree = BUILT_PRODUCTS_DIR; 974 | }; 975 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 976 | isa = PBXReferenceProxy; 977 | fileType = archive.ar; 978 | path = "libRCTImage-tvOS.a"; 979 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 980 | sourceTree = BUILT_PRODUCTS_DIR; 981 | }; 982 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 983 | isa = PBXReferenceProxy; 984 | fileType = archive.ar; 985 | path = "libRCTLinking-tvOS.a"; 986 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 987 | sourceTree = BUILT_PRODUCTS_DIR; 988 | }; 989 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 990 | isa = PBXReferenceProxy; 991 | fileType = archive.ar; 992 | path = "libRCTNetwork-tvOS.a"; 993 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 994 | sourceTree = BUILT_PRODUCTS_DIR; 995 | }; 996 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 997 | isa = PBXReferenceProxy; 998 | fileType = archive.ar; 999 | path = "libRCTSettings-tvOS.a"; 1000 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1001 | sourceTree = BUILT_PRODUCTS_DIR; 1002 | }; 1003 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1004 | isa = PBXReferenceProxy; 1005 | fileType = archive.ar; 1006 | path = "libRCTText-tvOS.a"; 1007 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1008 | sourceTree = BUILT_PRODUCTS_DIR; 1009 | }; 1010 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1011 | isa = PBXReferenceProxy; 1012 | fileType = archive.ar; 1013 | path = "libRCTWebSocket-tvOS.a"; 1014 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1015 | sourceTree = BUILT_PRODUCTS_DIR; 1016 | }; 1017 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1018 | isa = PBXReferenceProxy; 1019 | fileType = archive.ar; 1020 | path = libReact.a; 1021 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1022 | sourceTree = BUILT_PRODUCTS_DIR; 1023 | }; 1024 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1025 | isa = PBXReferenceProxy; 1026 | fileType = archive.ar; 1027 | path = libyoga.a; 1028 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1029 | sourceTree = BUILT_PRODUCTS_DIR; 1030 | }; 1031 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1032 | isa = PBXReferenceProxy; 1033 | fileType = archive.ar; 1034 | path = libyoga.a; 1035 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1036 | sourceTree = BUILT_PRODUCTS_DIR; 1037 | }; 1038 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1039 | isa = PBXReferenceProxy; 1040 | fileType = archive.ar; 1041 | path = libcxxreact.a; 1042 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1043 | sourceTree = BUILT_PRODUCTS_DIR; 1044 | }; 1045 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1046 | isa = PBXReferenceProxy; 1047 | fileType = archive.ar; 1048 | path = libcxxreact.a; 1049 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1050 | sourceTree = BUILT_PRODUCTS_DIR; 1051 | }; 1052 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1053 | isa = PBXReferenceProxy; 1054 | fileType = archive.ar; 1055 | path = libjschelpers.a; 1056 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1057 | sourceTree = BUILT_PRODUCTS_DIR; 1058 | }; 1059 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1060 | isa = PBXReferenceProxy; 1061 | fileType = archive.ar; 1062 | path = libjschelpers.a; 1063 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1064 | sourceTree = BUILT_PRODUCTS_DIR; 1065 | }; 1066 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1067 | isa = PBXReferenceProxy; 1068 | fileType = archive.ar; 1069 | path = libRCTAnimation.a; 1070 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1071 | sourceTree = BUILT_PRODUCTS_DIR; 1072 | }; 1073 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1074 | isa = PBXReferenceProxy; 1075 | fileType = archive.ar; 1076 | path = libRCTAnimation.a; 1077 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1078 | sourceTree = BUILT_PRODUCTS_DIR; 1079 | }; 1080 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1081 | isa = PBXReferenceProxy; 1082 | fileType = archive.ar; 1083 | path = libRCTLinking.a; 1084 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1085 | sourceTree = BUILT_PRODUCTS_DIR; 1086 | }; 1087 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1088 | isa = PBXReferenceProxy; 1089 | fileType = archive.ar; 1090 | path = libRCTText.a; 1091 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1092 | sourceTree = BUILT_PRODUCTS_DIR; 1093 | }; 1094 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1095 | isa = PBXReferenceProxy; 1096 | fileType = archive.ar; 1097 | path = libRCTBlob.a; 1098 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1099 | sourceTree = BUILT_PRODUCTS_DIR; 1100 | }; 1101 | /* End PBXReferenceProxy section */ 1102 | 1103 | /* Begin PBXResourcesBuildPhase section */ 1104 | 00E356EC1AD99517003FC87E /* Resources */ = { 1105 | isa = PBXResourcesBuildPhase; 1106 | buildActionMask = 2147483647; 1107 | files = ( 1108 | ); 1109 | runOnlyForDeploymentPostprocessing = 0; 1110 | }; 1111 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1112 | isa = PBXResourcesBuildPhase; 1113 | buildActionMask = 2147483647; 1114 | files = ( 1115 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1116 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1117 | F1011DAB3C554AA1AC0561D4 /* Entypo.ttf in Resources */, 1118 | 54AA49D50529452CA3E3B1C4 /* EvilIcons.ttf in Resources */, 1119 | 66A18B990E154F00A731AE8E /* Feather.ttf in Resources */, 1120 | 7C7AB9F9286541A9AF029284 /* FontAwesome.ttf in Resources */, 1121 | B63B271214AF4C6F8882D3F3 /* FontAwesome5_Brands.ttf in Resources */, 1122 | 4F8333A2EEF64D7FB31D6CFC /* FontAwesome5_Regular.ttf in Resources */, 1123 | E2D6C11F3EFA4C349D6D515F /* FontAwesome5_Solid.ttf in Resources */, 1124 | 0C49C1F9478741818F7F9C4A /* Foundation.ttf in Resources */, 1125 | 557AB81D39E2406398DEC0CF /* Ionicons.ttf in Resources */, 1126 | 6439DD95C2E84561BF0D292E /* MaterialCommunityIcons.ttf in Resources */, 1127 | 864871C4D06E4D01A542E3AC /* MaterialIcons.ttf in Resources */, 1128 | 687027A7F6454B9291C3B4B2 /* Octicons.ttf in Resources */, 1129 | E18295B31FDB479590A1D327 /* SimpleLineIcons.ttf in Resources */, 1130 | 44A3B825B6D6457EB94FD029 /* Zocial.ttf in Resources */, 1131 | ); 1132 | runOnlyForDeploymentPostprocessing = 0; 1133 | }; 1134 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1135 | isa = PBXResourcesBuildPhase; 1136 | buildActionMask = 2147483647; 1137 | files = ( 1138 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1139 | ); 1140 | runOnlyForDeploymentPostprocessing = 0; 1141 | }; 1142 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1143 | isa = PBXResourcesBuildPhase; 1144 | buildActionMask = 2147483647; 1145 | files = ( 1146 | ); 1147 | runOnlyForDeploymentPostprocessing = 0; 1148 | }; 1149 | /* End PBXResourcesBuildPhase section */ 1150 | 1151 | /* Begin PBXShellScriptBuildPhase section */ 1152 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1153 | isa = PBXShellScriptBuildPhase; 1154 | buildActionMask = 2147483647; 1155 | files = ( 1156 | ); 1157 | inputPaths = ( 1158 | ); 1159 | name = "Bundle React Native code and images"; 1160 | outputPaths = ( 1161 | ); 1162 | runOnlyForDeploymentPostprocessing = 0; 1163 | shellPath = /bin/sh; 1164 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1165 | }; 1166 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1167 | isa = PBXShellScriptBuildPhase; 1168 | buildActionMask = 2147483647; 1169 | files = ( 1170 | ); 1171 | inputPaths = ( 1172 | ); 1173 | name = "Bundle React Native Code And Images"; 1174 | outputPaths = ( 1175 | ); 1176 | runOnlyForDeploymentPostprocessing = 0; 1177 | shellPath = /bin/sh; 1178 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1179 | }; 1180 | /* End PBXShellScriptBuildPhase section */ 1181 | 1182 | /* Begin PBXSourcesBuildPhase section */ 1183 | 00E356EA1AD99517003FC87E /* Sources */ = { 1184 | isa = PBXSourcesBuildPhase; 1185 | buildActionMask = 2147483647; 1186 | files = ( 1187 | 00E356F31AD99517003FC87E /* ReactNativeAnimationExamplesTests.m in Sources */, 1188 | ); 1189 | runOnlyForDeploymentPostprocessing = 0; 1190 | }; 1191 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1192 | isa = PBXSourcesBuildPhase; 1193 | buildActionMask = 2147483647; 1194 | files = ( 1195 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1196 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1197 | ); 1198 | runOnlyForDeploymentPostprocessing = 0; 1199 | }; 1200 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1201 | isa = PBXSourcesBuildPhase; 1202 | buildActionMask = 2147483647; 1203 | files = ( 1204 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1205 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1206 | ); 1207 | runOnlyForDeploymentPostprocessing = 0; 1208 | }; 1209 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1210 | isa = PBXSourcesBuildPhase; 1211 | buildActionMask = 2147483647; 1212 | files = ( 1213 | 2DCD954D1E0B4F2C00145EB5 /* ReactNativeAnimationExamplesTests.m in Sources */, 1214 | ); 1215 | runOnlyForDeploymentPostprocessing = 0; 1216 | }; 1217 | /* End PBXSourcesBuildPhase section */ 1218 | 1219 | /* Begin PBXTargetDependency section */ 1220 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1221 | isa = PBXTargetDependency; 1222 | target = 13B07F861A680F5B00A75B9A /* ReactNativeAnimationExamples */; 1223 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1224 | }; 1225 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1226 | isa = PBXTargetDependency; 1227 | target = 2D02E47A1E0B4A5D006451C7 /* ReactNativeAnimationExamples-tvOS */; 1228 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1229 | }; 1230 | /* End PBXTargetDependency section */ 1231 | 1232 | /* Begin PBXVariantGroup section */ 1233 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1234 | isa = PBXVariantGroup; 1235 | children = ( 1236 | 13B07FB21A68108700A75B9A /* Base */, 1237 | ); 1238 | name = LaunchScreen.xib; 1239 | path = ReactNativeAnimationExamples; 1240 | sourceTree = ""; 1241 | }; 1242 | /* End PBXVariantGroup section */ 1243 | 1244 | /* Begin XCBuildConfiguration section */ 1245 | 00E356F61AD99517003FC87E /* Debug */ = { 1246 | isa = XCBuildConfiguration; 1247 | buildSettings = { 1248 | BUNDLE_LOADER = "$(TEST_HOST)"; 1249 | GCC_PREPROCESSOR_DEFINITIONS = ( 1250 | "DEBUG=1", 1251 | "$(inherited)", 1252 | ); 1253 | INFOPLIST_FILE = ReactNativeAnimationExamplesTests/Info.plist; 1254 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1255 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1256 | OTHER_LDFLAGS = ( 1257 | "-ObjC", 1258 | "-lc++", 1259 | ); 1260 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1261 | PRODUCT_NAME = "$(TARGET_NAME)"; 1262 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeAnimationExamples.app/ReactNativeAnimationExamples"; 1263 | LIBRARY_SEARCH_PATHS = ( 1264 | "$(inherited)", 1265 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1266 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1267 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1268 | ); 1269 | HEADER_SEARCH_PATHS = ( 1270 | "$(inherited)", 1271 | "$(SRCROOT)/../node_modules/react-native-config/ios/ReactNativeConfig", 1272 | "$(SRCROOT)/../node_modules/react-native-maps/lib/ios/**", 1273 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1274 | ); 1275 | }; 1276 | name = Debug; 1277 | }; 1278 | 00E356F71AD99517003FC87E /* Release */ = { 1279 | isa = XCBuildConfiguration; 1280 | buildSettings = { 1281 | BUNDLE_LOADER = "$(TEST_HOST)"; 1282 | COPY_PHASE_STRIP = NO; 1283 | INFOPLIST_FILE = ReactNativeAnimationExamplesTests/Info.plist; 1284 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1285 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1286 | OTHER_LDFLAGS = ( 1287 | "-ObjC", 1288 | "-lc++", 1289 | ); 1290 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1291 | PRODUCT_NAME = "$(TARGET_NAME)"; 1292 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeAnimationExamples.app/ReactNativeAnimationExamples"; 1293 | LIBRARY_SEARCH_PATHS = ( 1294 | "$(inherited)", 1295 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1296 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1297 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1298 | ); 1299 | HEADER_SEARCH_PATHS = ( 1300 | "$(inherited)", 1301 | "$(SRCROOT)/../node_modules/react-native-config/ios/ReactNativeConfig", 1302 | "$(SRCROOT)/../node_modules/react-native-maps/lib/ios/**", 1303 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1304 | ); 1305 | }; 1306 | name = Release; 1307 | }; 1308 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1309 | isa = XCBuildConfiguration; 1310 | buildSettings = { 1311 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1312 | CURRENT_PROJECT_VERSION = 1; 1313 | DEAD_CODE_STRIPPING = NO; 1314 | INFOPLIST_FILE = ReactNativeAnimationExamples/Info.plist; 1315 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1316 | OTHER_LDFLAGS = ( 1317 | "$(inherited)", 1318 | "-ObjC", 1319 | "-lc++", 1320 | ); 1321 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1322 | PRODUCT_NAME = ReactNativeAnimationExamples; 1323 | VERSIONING_SYSTEM = "apple-generic"; 1324 | HEADER_SEARCH_PATHS = ( 1325 | "$(inherited)", 1326 | "$(SRCROOT)/../node_modules/react-native-config/ios/ReactNativeConfig", 1327 | "$(SRCROOT)/../node_modules/react-native-maps/lib/ios/**", 1328 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1329 | ); 1330 | }; 1331 | name = Debug; 1332 | }; 1333 | 13B07F951A680F5B00A75B9A /* Release */ = { 1334 | isa = XCBuildConfiguration; 1335 | buildSettings = { 1336 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1337 | CURRENT_PROJECT_VERSION = 1; 1338 | INFOPLIST_FILE = ReactNativeAnimationExamples/Info.plist; 1339 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1340 | OTHER_LDFLAGS = ( 1341 | "$(inherited)", 1342 | "-ObjC", 1343 | "-lc++", 1344 | ); 1345 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1346 | PRODUCT_NAME = ReactNativeAnimationExamples; 1347 | VERSIONING_SYSTEM = "apple-generic"; 1348 | HEADER_SEARCH_PATHS = ( 1349 | "$(inherited)", 1350 | "$(SRCROOT)/../node_modules/react-native-config/ios/ReactNativeConfig", 1351 | "$(SRCROOT)/../node_modules/react-native-maps/lib/ios/**", 1352 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1353 | ); 1354 | }; 1355 | name = Release; 1356 | }; 1357 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1358 | isa = XCBuildConfiguration; 1359 | buildSettings = { 1360 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1361 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1362 | CLANG_ANALYZER_NONNULL = YES; 1363 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1364 | CLANG_WARN_INFINITE_RECURSION = YES; 1365 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1366 | DEBUG_INFORMATION_FORMAT = dwarf; 1367 | ENABLE_TESTABILITY = YES; 1368 | GCC_NO_COMMON_BLOCKS = YES; 1369 | INFOPLIST_FILE = "ReactNativeAnimationExamples-tvOS/Info.plist"; 1370 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1371 | OTHER_LDFLAGS = ( 1372 | "-ObjC", 1373 | "-lc++", 1374 | ); 1375 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactNativeAnimationExamples-tvOS"; 1376 | PRODUCT_NAME = "$(TARGET_NAME)"; 1377 | SDKROOT = appletvos; 1378 | TARGETED_DEVICE_FAMILY = 3; 1379 | TVOS_DEPLOYMENT_TARGET = 9.2; 1380 | LIBRARY_SEARCH_PATHS = ( 1381 | "$(inherited)", 1382 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1383 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1384 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1385 | ); 1386 | HEADER_SEARCH_PATHS = ( 1387 | "$(inherited)", 1388 | "$(SRCROOT)/../node_modules/react-native-config/ios/ReactNativeConfig", 1389 | "$(SRCROOT)/../node_modules/react-native-maps/lib/ios/**", 1390 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1391 | ); 1392 | }; 1393 | name = Debug; 1394 | }; 1395 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1396 | isa = XCBuildConfiguration; 1397 | buildSettings = { 1398 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1399 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1400 | CLANG_ANALYZER_NONNULL = YES; 1401 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1402 | CLANG_WARN_INFINITE_RECURSION = YES; 1403 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1404 | COPY_PHASE_STRIP = NO; 1405 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1406 | GCC_NO_COMMON_BLOCKS = YES; 1407 | INFOPLIST_FILE = "ReactNativeAnimationExamples-tvOS/Info.plist"; 1408 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1409 | OTHER_LDFLAGS = ( 1410 | "-ObjC", 1411 | "-lc++", 1412 | ); 1413 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactNativeAnimationExamples-tvOS"; 1414 | PRODUCT_NAME = "$(TARGET_NAME)"; 1415 | SDKROOT = appletvos; 1416 | TARGETED_DEVICE_FAMILY = 3; 1417 | TVOS_DEPLOYMENT_TARGET = 9.2; 1418 | LIBRARY_SEARCH_PATHS = ( 1419 | "$(inherited)", 1420 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1421 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1422 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1423 | ); 1424 | HEADER_SEARCH_PATHS = ( 1425 | "$(inherited)", 1426 | "$(SRCROOT)/../node_modules/react-native-config/ios/ReactNativeConfig", 1427 | "$(SRCROOT)/../node_modules/react-native-maps/lib/ios/**", 1428 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1429 | ); 1430 | }; 1431 | name = Release; 1432 | }; 1433 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1434 | isa = XCBuildConfiguration; 1435 | buildSettings = { 1436 | BUNDLE_LOADER = "$(TEST_HOST)"; 1437 | CLANG_ANALYZER_NONNULL = YES; 1438 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1439 | CLANG_WARN_INFINITE_RECURSION = YES; 1440 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1441 | DEBUG_INFORMATION_FORMAT = dwarf; 1442 | ENABLE_TESTABILITY = YES; 1443 | GCC_NO_COMMON_BLOCKS = YES; 1444 | INFOPLIST_FILE = "ReactNativeAnimationExamples-tvOSTests/Info.plist"; 1445 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1446 | OTHER_LDFLAGS = ( 1447 | "-ObjC", 1448 | "-lc++", 1449 | ); 1450 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactNativeAnimationExamples-tvOSTests"; 1451 | PRODUCT_NAME = "$(TARGET_NAME)"; 1452 | SDKROOT = appletvos; 1453 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeAnimationExamples-tvOS.app/ReactNativeAnimationExamples-tvOS"; 1454 | TVOS_DEPLOYMENT_TARGET = 10.1; 1455 | LIBRARY_SEARCH_PATHS = ( 1456 | "$(inherited)", 1457 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1458 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1459 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1460 | ); 1461 | HEADER_SEARCH_PATHS = ( 1462 | "$(inherited)", 1463 | "$(SRCROOT)/../node_modules/react-native-config/ios/ReactNativeConfig", 1464 | "$(SRCROOT)/../node_modules/react-native-maps/lib/ios/**", 1465 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1466 | ); 1467 | }; 1468 | name = Debug; 1469 | }; 1470 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1471 | isa = XCBuildConfiguration; 1472 | buildSettings = { 1473 | BUNDLE_LOADER = "$(TEST_HOST)"; 1474 | CLANG_ANALYZER_NONNULL = YES; 1475 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1476 | CLANG_WARN_INFINITE_RECURSION = YES; 1477 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1478 | COPY_PHASE_STRIP = NO; 1479 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1480 | GCC_NO_COMMON_BLOCKS = YES; 1481 | INFOPLIST_FILE = "ReactNativeAnimationExamples-tvOSTests/Info.plist"; 1482 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1483 | OTHER_LDFLAGS = ( 1484 | "-ObjC", 1485 | "-lc++", 1486 | ); 1487 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactNativeAnimationExamples-tvOSTests"; 1488 | PRODUCT_NAME = "$(TARGET_NAME)"; 1489 | SDKROOT = appletvos; 1490 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeAnimationExamples-tvOS.app/ReactNativeAnimationExamples-tvOS"; 1491 | TVOS_DEPLOYMENT_TARGET = 10.1; 1492 | LIBRARY_SEARCH_PATHS = ( 1493 | "$(inherited)", 1494 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1495 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1496 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1497 | ); 1498 | HEADER_SEARCH_PATHS = ( 1499 | "$(inherited)", 1500 | "$(SRCROOT)/../node_modules/react-native-config/ios/ReactNativeConfig", 1501 | "$(SRCROOT)/../node_modules/react-native-maps/lib/ios/**", 1502 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1503 | ); 1504 | }; 1505 | name = Release; 1506 | }; 1507 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1508 | isa = XCBuildConfiguration; 1509 | buildSettings = { 1510 | ALWAYS_SEARCH_USER_PATHS = NO; 1511 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1512 | CLANG_CXX_LIBRARY = "libc++"; 1513 | CLANG_ENABLE_MODULES = YES; 1514 | CLANG_ENABLE_OBJC_ARC = YES; 1515 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1516 | CLANG_WARN_BOOL_CONVERSION = YES; 1517 | CLANG_WARN_COMMA = YES; 1518 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1519 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1520 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1521 | CLANG_WARN_EMPTY_BODY = YES; 1522 | CLANG_WARN_ENUM_CONVERSION = YES; 1523 | CLANG_WARN_INFINITE_RECURSION = YES; 1524 | CLANG_WARN_INT_CONVERSION = YES; 1525 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1526 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1527 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1528 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1529 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1530 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1531 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1532 | CLANG_WARN_UNREACHABLE_CODE = YES; 1533 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1534 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1535 | COPY_PHASE_STRIP = NO; 1536 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1537 | ENABLE_TESTABILITY = YES; 1538 | GCC_C_LANGUAGE_STANDARD = gnu99; 1539 | GCC_DYNAMIC_NO_PIC = NO; 1540 | GCC_NO_COMMON_BLOCKS = YES; 1541 | GCC_OPTIMIZATION_LEVEL = 0; 1542 | GCC_PREPROCESSOR_DEFINITIONS = ( 1543 | "DEBUG=1", 1544 | "$(inherited)", 1545 | ); 1546 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1547 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1548 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1549 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1550 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1551 | GCC_WARN_UNUSED_FUNCTION = YES; 1552 | GCC_WARN_UNUSED_VARIABLE = YES; 1553 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1554 | MTL_ENABLE_DEBUG_INFO = YES; 1555 | ONLY_ACTIVE_ARCH = YES; 1556 | SDKROOT = iphoneos; 1557 | }; 1558 | name = Debug; 1559 | }; 1560 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1561 | isa = XCBuildConfiguration; 1562 | buildSettings = { 1563 | ALWAYS_SEARCH_USER_PATHS = NO; 1564 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1565 | CLANG_CXX_LIBRARY = "libc++"; 1566 | CLANG_ENABLE_MODULES = YES; 1567 | CLANG_ENABLE_OBJC_ARC = YES; 1568 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1569 | CLANG_WARN_BOOL_CONVERSION = YES; 1570 | CLANG_WARN_COMMA = YES; 1571 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1572 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1573 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1574 | CLANG_WARN_EMPTY_BODY = YES; 1575 | CLANG_WARN_ENUM_CONVERSION = YES; 1576 | CLANG_WARN_INFINITE_RECURSION = YES; 1577 | CLANG_WARN_INT_CONVERSION = YES; 1578 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1579 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1580 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1581 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1582 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1583 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1584 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1585 | CLANG_WARN_UNREACHABLE_CODE = YES; 1586 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1587 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1588 | COPY_PHASE_STRIP = YES; 1589 | ENABLE_NS_ASSERTIONS = NO; 1590 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1591 | GCC_C_LANGUAGE_STANDARD = gnu99; 1592 | GCC_NO_COMMON_BLOCKS = YES; 1593 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1594 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1595 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1596 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1597 | GCC_WARN_UNUSED_FUNCTION = YES; 1598 | GCC_WARN_UNUSED_VARIABLE = YES; 1599 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1600 | MTL_ENABLE_DEBUG_INFO = NO; 1601 | SDKROOT = iphoneos; 1602 | VALIDATE_PRODUCT = YES; 1603 | }; 1604 | name = Release; 1605 | }; 1606 | /* End XCBuildConfiguration section */ 1607 | 1608 | /* Begin XCConfigurationList section */ 1609 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactNativeAnimationExamplesTests" */ = { 1610 | isa = XCConfigurationList; 1611 | buildConfigurations = ( 1612 | 00E356F61AD99517003FC87E /* Debug */, 1613 | 00E356F71AD99517003FC87E /* Release */, 1614 | ); 1615 | defaultConfigurationIsVisible = 0; 1616 | defaultConfigurationName = Release; 1617 | }; 1618 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNativeAnimationExamples" */ = { 1619 | isa = XCConfigurationList; 1620 | buildConfigurations = ( 1621 | 13B07F941A680F5B00A75B9A /* Debug */, 1622 | 13B07F951A680F5B00A75B9A /* Release */, 1623 | ); 1624 | defaultConfigurationIsVisible = 0; 1625 | defaultConfigurationName = Release; 1626 | }; 1627 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeAnimationExamples-tvOS" */ = { 1628 | isa = XCConfigurationList; 1629 | buildConfigurations = ( 1630 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1631 | 2D02E4981E0B4A5E006451C7 /* Release */, 1632 | ); 1633 | defaultConfigurationIsVisible = 0; 1634 | defaultConfigurationName = Release; 1635 | }; 1636 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeAnimationExamples-tvOSTests" */ = { 1637 | isa = XCConfigurationList; 1638 | buildConfigurations = ( 1639 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1640 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1641 | ); 1642 | defaultConfigurationIsVisible = 0; 1643 | defaultConfigurationName = Release; 1644 | }; 1645 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeAnimationExamples" */ = { 1646 | isa = XCConfigurationList; 1647 | buildConfigurations = ( 1648 | 83CBBA201A601CBA00E9B192 /* Debug */, 1649 | 83CBBA211A601CBA00E9B192 /* Release */, 1650 | ); 1651 | defaultConfigurationIsVisible = 0; 1652 | defaultConfigurationName = Release; 1653 | }; 1654 | /* End XCConfigurationList section */ 1655 | }; 1656 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1657 | } 1658 | -------------------------------------------------------------------------------- /ios/ReactNativeAnimationExamples.xcodeproj/xcshareddata/xcschemes/ReactNativeAnimationExamples-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/ReactNativeAnimationExamples.xcodeproj/xcshareddata/xcschemes/ReactNativeAnimationExamples.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/ReactNativeAnimationExamples/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios/ReactNativeAnimationExamples/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 16 | { 17 | NSURL *jsCodeLocation; 18 | 19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 20 | 21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 22 | moduleName:@"ReactNativeAnimationExamples" 23 | initialProperties:nil 24 | launchOptions:launchOptions]; 25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 26 | 27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 28 | UIViewController *rootViewController = [UIViewController new]; 29 | rootViewController.view = rootView; 30 | self.window.rootViewController = rootViewController; 31 | [self.window makeKeyAndVisible]; 32 | return YES; 33 | } 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /ios/ReactNativeAnimationExamples/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/ReactNativeAnimationExamples/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/ReactNativeAnimationExamples/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/ReactNativeAnimationExamples/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ReactNativeAnimationExamples 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 | NSAppTransportSecurity 44 | 45 | NSAllowsArbitraryLoads 46 | 47 | NSExceptionDomains 48 | 49 | localhost 50 | 51 | NSExceptionAllowsInsecureHTTPLoads 52 | 53 | 54 | 55 | 56 | UIAppFonts 57 | 58 | Entypo.ttf 59 | EvilIcons.ttf 60 | Feather.ttf 61 | FontAwesome.ttf 62 | FontAwesome5_Brands.ttf 63 | FontAwesome5_Regular.ttf 64 | FontAwesome5_Solid.ttf 65 | Foundation.ttf 66 | Ionicons.ttf 67 | MaterialCommunityIcons.ttf 68 | MaterialIcons.ttf 69 | Octicons.ttf 70 | SimpleLineIcons.ttf 71 | Zocial.ttf 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /ios/ReactNativeAnimationExamples/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/ReactNativeAnimationExamplesTests/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/ReactNativeAnimationExamplesTests/ReactNativeAnimationExamplesTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface ReactNativeAnimationExamplesTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation ReactNativeAnimationExamplesTests 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ReactNativeAnimationExamples", 3 | "version": "0.0.1", 4 | "license": "MIT", 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "android": "react-native run-android", 8 | "android:deploy:alpha": "bundle exec fastlane android alpha", 9 | "android:deploy:beta": "bundle exec fastlane android beta", 10 | "android:deploy:release": "bundle exec fastlane android production", 11 | "test": "jest" 12 | }, 13 | "dependencies": { 14 | "prop-types": "^15.6.2", 15 | "react": "^16.5.0", 16 | "react-native": "0.57.0", 17 | "react-native-config": "^0.11.5", 18 | "react-native-elements": "^0.19.1", 19 | "react-native-maps": "^0.21.0", 20 | "react-native-vector-icons": "^5.0.0", 21 | "react-navigation": "^2.14.2", 22 | "rn-viewpager": "^1.2.9" 23 | }, 24 | "devDependencies": { 25 | "metro-react-native-babel-preset": "^0.45.0" 26 | }, 27 | "jest": { 28 | "preset": "react-native" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/AppNavigator.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { View } from "react-native"; 3 | import { StackNavigator } from "react-navigation"; 4 | 5 | import ExamplesList from "./ExamplesList"; 6 | import HeaderLink from "./components/HeaderLink"; 7 | import CardPayment from "./examples/CardPayment"; 8 | import MapLocationChange from "./examples/MapLocationChange"; 9 | import TicketPrint from "./examples/TicketPrint"; 10 | 11 | export default StackNavigator( 12 | { 13 | ExamplesList: { 14 | screen: ExamplesList, 15 | navigationOptions: { 16 | title: "Examples" 17 | } 18 | }, 19 | // Examples 20 | CardPayment: { 21 | screen: CardPayment, 22 | navigationOptions: { 23 | title: "Checkout", 24 | headerTintColor: "#FFFFFF", 25 | headerTitleStyle: { 26 | textAlign: "center", 27 | flex: 1 28 | }, 29 | headerStyle: { 30 | backgroundColor: "#EC5E95", 31 | borderBottomWidth: 0, 32 | elevation: 0 33 | }, 34 | // Workaround for centered headerTitle on android 35 | headerRight: ( 36 | 40 | ) 41 | } 42 | }, 43 | MapLocationChange: { 44 | screen: MapLocationChange, 45 | navigationOptions: { 46 | headerTintColor: "#FFFFFF", 47 | headerStyle: { 48 | backgroundColor: "transparent", 49 | borderBottomWidth: 0, 50 | elevation: 0 51 | }, 52 | headerRight: ( 53 | 57 | ) 58 | } 59 | }, 60 | TicketPrint: { 61 | screen: TicketPrint, 62 | navigationOptions: { 63 | headerTintColor: "#FFFFFF", 64 | headerStyle: { 65 | backgroundColor: "#00B9F1", 66 | borderBottomWidth: 0, 67 | elevation: 0 68 | }, 69 | headerRight: ( 70 | 74 | ) 75 | } 76 | } 77 | }, 78 | { 79 | initialRouteName: "ExamplesList" 80 | } 81 | ); 82 | -------------------------------------------------------------------------------- /src/ExamplesList.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { FlatList, Text, TouchableOpacity, View } from "react-native"; 3 | import { Card, Icon } from "react-native-elements"; 4 | import PropTypes from "prop-types"; 5 | 6 | const examples = [ 7 | { 8 | title: "Card payment", 9 | icon: { 10 | name: "credit-card", 11 | color: "#FF8A65" 12 | }, 13 | screen: "CardPayment" 14 | }, 15 | { 16 | title: "Map location change", 17 | icon: { 18 | name: "map", 19 | color: "#4FC3F7" 20 | }, 21 | screen: "MapLocationChange" 22 | }, 23 | { 24 | title: "Ticket print", 25 | icon: { 26 | name: "print", 27 | color: "#81C784" 28 | }, 29 | screen: "TicketPrint" 30 | } 31 | ]; 32 | 33 | const ExamplesList = ({ navigation }) => ( 34 | 35 | index.toString()} 38 | renderItem={({ item }) => ( 39 | 40 | navigation.navigate(item.screen)}> 41 | 48 | 49 | 50 | 51 | 52 | {item.title} 53 | 54 | 55 | 56 | 57 | )} 58 | /> 59 | 60 | ); 61 | 62 | ExamplesList.propTypes = { 63 | navigation: PropTypes.shape({ 64 | navigate: PropTypes.func.isRequired 65 | }).isRequired 66 | }; 67 | 68 | export default ExamplesList; 69 | -------------------------------------------------------------------------------- /src/components/HeaderLink.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Linking, Platform, View } from "react-native"; 3 | import Icon from "react-native-vector-icons/Ionicons"; 4 | import PropTypes from "prop-types"; 5 | 6 | const HeaderLink = ({ color, url }) => ( 7 | 8 | { 13 | Linking.canOpenURL(url) 14 | .then(supported => { 15 | if (!supported) { 16 | console.log("Can't handle url: " + url); 17 | } else { 18 | return Linking.openURL(url); 19 | } 20 | }) 21 | .catch(err => console.error("An error occurred", err)); 22 | }} 23 | /> 24 | 25 | ); 26 | 27 | HeaderLink.propTypes = { 28 | color: PropTypes.string.isRequired, 29 | url: PropTypes.string.isRequired 30 | }; 31 | 32 | export default HeaderLink; 33 | -------------------------------------------------------------------------------- /src/components/MonthYearPad.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { View, Text, StyleSheet, TouchableHighlight } from "react-native"; 3 | import PropTypes from "prop-types"; 4 | 5 | const styles = StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | flexDirection: "row", 9 | justifyContent: "space-between" 10 | }, 11 | inputContainer: { 12 | flex: 1 13 | }, 14 | group: { 15 | flexDirection: "row", 16 | justifyContent: "space-between", 17 | marginBottom: 24 18 | }, 19 | title: { 20 | fontSize: 14, 21 | color: "#777777", 22 | marginBottom: 16 23 | }, 24 | button: { 25 | fontSize: 22, 26 | color: "#FFFFFF" 27 | } 28 | }); 29 | 30 | const monthGroups = [ 31 | [ 32 | { label: "01", value: "01" }, 33 | { label: "02", value: "02" }, 34 | { label: "03", value: "03" } 35 | ], 36 | [ 37 | { label: "04", value: "04" }, 38 | { label: "05", value: "05" }, 39 | { label: "06", value: "06" } 40 | ], 41 | [ 42 | { label: "07", value: "07" }, 43 | { label: "08", value: "08" }, 44 | { label: "09", value: "09" } 45 | ], 46 | [ 47 | { label: "10", value: "10" }, 48 | { label: "11", value: "11" }, 49 | { label: "12", value: "12" } 50 | ] 51 | ]; 52 | 53 | const yearGroups = [ 54 | [{ label: "2018", value: "18" }, { label: "2019", value: "19" }], 55 | [{ label: "2020", value: "20" }, { label: "2021", value: "21" }], 56 | [{ label: "2022", value: "22" }, { label: "2023", value: "23" }], 57 | [{ label: "2024", value: "24" }, { label: "2025", value: "25" }] 58 | ]; 59 | 60 | const InputGroup = ({ 61 | title, 62 | groups, 63 | highlightColour, 64 | onPress, 65 | isLast = false 66 | }) => ( 67 | 68 | {title.toUpperCase()} 69 | 70 | {groups.map((group, index) => ( 71 | 72 | {group.map(({ label, value }, index) => ( 73 | onPress(value)} 76 | underlayColor={highlightColour} 77 | > 78 | {label} 79 | 80 | ))} 81 | 82 | ))} 83 | 84 | 85 | ); 86 | 87 | class MonthYearPad extends React.PureComponent { 88 | render() { 89 | return ( 90 | 91 | 97 | 104 | 105 | ); 106 | } 107 | } 108 | 109 | MonthYearPad.propTypes = { 110 | highlightColour: PropTypes.string.isRequired, 111 | onMonthPress: PropTypes.func.isRequired, 112 | onYearPress: PropTypes.func.isRequired 113 | }; 114 | 115 | export default MonthYearPad; 116 | -------------------------------------------------------------------------------- /src/components/NumberPad.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { View, Text, StyleSheet, TouchableHighlight } from "react-native"; 3 | import PropTypes from "prop-types"; 4 | 5 | const styles = StyleSheet.create({ 6 | container: { 7 | flex: 1 8 | }, 9 | row: { 10 | flex: 1, 11 | flexDirection: "row", 12 | justifyContent: "space-around" 13 | }, 14 | button: { 15 | flex: 1, 16 | justifyContent: "center", 17 | alignItems: "center" 18 | }, 19 | buttonLabel: { 20 | flex: 1, 21 | fontSize: 28, 22 | marginTop: 20, 23 | color: "#FFFFFF" 24 | } 25 | }); 26 | 27 | const inputs = [ 28 | [ 29 | { label: "1", value: 1 }, 30 | { label: "2", value: 2 }, 31 | { label: "3", value: 3 } 32 | ], 33 | [ 34 | { label: "4", value: 4 }, 35 | { label: "5", value: 5 }, 36 | { label: "6", value: 6 } 37 | ], 38 | [ 39 | { label: "7", value: 7 }, 40 | { label: "8", value: 8 }, 41 | { label: "9", value: 9 } 42 | ], 43 | [ 44 | { label: "", value: null }, 45 | { label: "0", value: 0 }, 46 | { label: "", value: null } 47 | ] 48 | ]; 49 | 50 | const Button = ({ label, value, highlightColour, onPress }) => ( 51 | onPress(value)} 54 | underlayColor={highlightColour} 55 | > 56 | {label} 57 | 58 | ); 59 | 60 | const Row = ({ buttons, highlightColour, onPress }) => ( 61 | 62 | {buttons.map((button, index) => ( 63 |