├── .babelrc ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── imagination │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── components ├── AboutView.js ├── BasicArt.js ├── InfoView.js ├── LottieAnimation.js ├── Start.js └── Welcome.js ├── images ├── abbey_road.png ├── city.png ├── logo.png ├── matzielab_logo.png ├── opacity_dots.png ├── peace_circut.png ├── sky.png └── smalltalk.png ├── index.android.js ├── index.ios.js ├── ios ├── Imagination-tvOS │ └── Info.plist ├── Imagination-tvOSTests │ └── Info.plist ├── Imagination.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Imagination-tvOS.xcscheme │ │ └── Imagination.xcscheme ├── Imagination │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ └── Icon-App-60x60@3x.png │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-Portrait-736h@3x.png │ │ │ └── Default@2x.png │ ├── Info.plist │ └── main.m └── ImaginationTests │ ├── ImaginationTests.m │ └── Info.plist ├── libs ├── Artworks.js ├── Common.js ├── Images.js └── LottieAnimations.js ├── lottie ├── summergirl.json └── test_square.json ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "env": { 4 | "browser": true 5 | }, 6 | "plugins": [ 7 | "react" 8 | ], 9 | "extends": [ 10 | "eslint:recommended", 11 | "plugin:react/recommended" 12 | ], 13 | "rules": { 14 | // overrides 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.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 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | emoji=true 26 | 27 | module.system=haste 28 | 29 | experimental.strict_type_args=true 30 | 31 | munge_underscores=true 32 | 33 | 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' 34 | 35 | suppress_type=$FlowIssue 36 | suppress_type=$FlowFixMe 37 | suppress_type=$FixMe 38 | 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-8]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-8]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 41 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 42 | 43 | unsafe.enable_getters_and_setters=true 44 | 45 | [version] 46 | ^0.38.0 47 | -------------------------------------------------------------------------------- /.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://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Mathias Eriksson 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # imagination made with React Native 2 | This is a new way of programming art. This app will serve as a display of different artworks made with the imagination library. 3 | 4 | ## What is imagination? 5 | Imagination for devices takes your accelerometer and turns it into a color. It was created by Matzie for Matzielab as an experimental way of interaction response. 6 | 7 | ![precis movement](https://user-images.githubusercontent.com/8973386/28459140-9b38d2c8-6e0c-11e7-9875-da3c4a93fadc.gif) 8 | ![preview shake](https://user-images.githubusercontent.com/8973386/28459173-bd14d4a0-6e0c-11e7-827f-b758e50ba738.gif) 9 | 10 | ## What is it good for? 11 | Nothing and everything! It's basically just a visual response to movement or orientation. This app displays the usage of it in combination with visual art. 12 | 13 | ## How to use the package 14 | Simply install the package with 15 | ``` 16 | npm install imagination-react-native --save 17 | ``` 18 | ### Imagination itself 19 | You can retrieve the color by passing a function that'll recieve a rgb string whenever the acceleromter updates. It's also good to stop the accelerometer listener when unmounting or so. 20 | ```javascript 21 | import {Imagination} from 'imagination-react-native' 22 | 23 | componentDidMount() { 24 | Imagination.onColorChange( (color) => this.setState({color}) ) 25 | } 26 | 27 | componentWillUnmount() { 28 | Imagination.stop() 29 | } 30 | ``` 31 | ### ImaginationWrapper component 32 | You can also use the ImaginationWrapper component. It automatically takes care of color changes and stopping. The background color of the component is updated to whatever color the accelerometer represents 33 | ```javascript 34 | import {ImaginationWrapper} from 'imagination-react-native' 35 | 36 | render ():* { 37 | return( 38 | 39 | Such colors, amaze, wow 40 | 41 | ) 42 | } 43 | ``` 44 | 45 | ## How can i help out? 46 | Imagination is always in the need of artists. If you're into making visual art, illustrations or animations or have any other idea of how to make artworks with this, hit me up and you'll be part of this universe. 47 | If you're a developer and like to help out, message me and we'll make a footprint on the art world together! 48 | 49 | ## Todo 50 | - [ ] Store artorks in DynamoDB and S3 bucket on AWS 51 | - [ ] Load artworks via Lambda function from DB 52 | - [ ] Create contact form on InfoView 53 | - [ ] Fix perfectly looping Lottie animations 54 | - [ ] Deploy to Play Store 55 | - [ ] Deploy to AppStore 56 | - [ ] Baffle the art world forever 57 | 58 | ## Credits 59 | Imagination is an idea by Mathias Eriksson created for [Matzielab](https://Matzielab.com) 60 | 61 | ## License 62 | MIT License 63 | 64 | Copyright (c) 2017 Mathias Eriksson 65 | 66 | Permission is hereby granted, free of charge, to any person obtaining a copy 67 | of this software and associated documentation files (the "Software"), to deal 68 | in the Software without restriction, including without limitation the rights 69 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 70 | copies of the Software, and to permit persons to whom the Software is 71 | furnished to do so, subject to the following conditions: 72 | 73 | The above copyright notice and this permission notice shall be included in all 74 | copies or substantial portions of the Software. 75 | 76 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 77 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 78 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 79 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 80 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 81 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 82 | SOFTWARE. 83 | -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'com.imagination', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'com.imagination', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"] 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 25 87 | buildToolsVersion "25.0.3" 88 | 89 | defaultConfig { 90 | applicationId "com.imagination" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile project(':lottie-react-native') 130 | compile fileTree(dir: "libs", include: ["*.jar"]) 131 | compile "com.android.support:appcompat-v7:23.0.1" 132 | compile "com.facebook.react:react-native:+" // From node_modules 133 | compile project(':react-native-sensors') 134 | } 135 | 136 | // Run this once to be able to run the application with BUCK 137 | // puts all compile dependencies into folder libs for BUCK to use 138 | task copyDownloadableDepsToLibs(type: Copy) { 139 | from configurations.compile 140 | into 'libs' 141 | } 142 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # okhttp 54 | 55 | -keepattributes Signature 56 | -keepattributes *Annotation* 57 | -keep class okhttp3.** { *; } 58 | -keep interface okhttp3.** { *; } 59 | -dontwarn okhttp3.** 60 | 61 | # okio 62 | 63 | -keep class sun.misc.Unsafe { *; } 64 | -dontwarn java.nio.file.* 65 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 66 | -dontwarn okio.** 67 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/imagination/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.imagination; 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 "Imagination"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/imagination/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.imagination; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.airbnb.android.react.lottie.LottiePackage; 7 | import com.facebook.react.ReactNativeHost; 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.react.shell.MainReactPackage; 10 | import com.facebook.soloader.SoLoader; 11 | import com.sensors.RNSensorsPackage; 12 | 13 | import java.util.Arrays; 14 | import java.util.List; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 19 | @Override 20 | public boolean getUseDeveloperSupport() { 21 | return BuildConfig.DEBUG; 22 | } 23 | 24 | @Override 25 | protected List getPackages() { 26 | return Arrays.asList( 27 | new MainReactPackage(), 28 | new RNSensorsPackage(), 29 | new LottiePackage() 30 | ); 31 | } 32 | }; 33 | 34 | @Override 35 | public ReactNativeHost getReactNativeHost() { 36 | return mReactNativeHost; 37 | } 38 | 39 | @Override 40 | public void onCreate() { 41 | super.onCreate(); 42 | SoLoader.init(this, /* native exopackage */ false); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Imagination 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 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /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.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/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-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 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 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /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 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 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 Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 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 = 'Imagination' 2 | include ':react-native-sensors' 3 | project(':react-native-sensors').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sensors/android') 4 | include ':react-native-sensor-manager' 5 | project(':react-native-sensor-manager').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sensor-manager/android') 6 | include ':lottie-react-native' 7 | project(':lottie-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/lottie-react-native/lib/android') 8 | 9 | include ':app' 10 | -------------------------------------------------------------------------------- /components/AboutView.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import React, {PureComponent} from 'react' 3 | import {ScrollView, Text, StyleSheet, Linking, TouchableOpacity} from 'react-native' 4 | 5 | export default class AboutView extends PureComponent { 6 | 7 | render(): * { 8 | return ( 9 | 10 | About this app 11 | 12 | {'This app is a showroom for the imagination tool created by Matzie. This tool takes the values of the accelorometer from your phone and turns it into a color.\n\n'} 13 | {'The following screens will show examples of artworks that can be created with this tool.\n\n'} 14 | {'The imagination algorithm is created to show a different way of utilizing and experiencing programming. It\'s created to show the creative side of code and the possibilities of it.\n\n'} 15 | {'Imagination is created by Mathias "Matzie" Eriksson for Matzielab'} 16 | 17 | this.goToMatzielab()}> 18 | Visit Matzielab.com 19 | 20 | 21 | ) 22 | } 23 | 24 | goToMatzielab () { 25 | Linking.openURL('https://Matzielab.com') 26 | } 27 | } 28 | 29 | let styles = StyleSheet.create({ 30 | wrapper: { 31 | flexDirection: 'column', 32 | justifyContent: 'flex-start', 33 | alignItems: 'center', 34 | flexGrow: 1, 35 | padding: 20 36 | }, 37 | heading: { 38 | fontSize: 23, 39 | fontWeight: '700', 40 | marginBottom: 10, 41 | color: '#ffffff' 42 | }, 43 | breadText: { 44 | fontSize: 15, 45 | color: '#ffffff' 46 | }, 47 | button: { 48 | paddingTop: 15, 49 | paddingBottom: 15, 50 | paddingLeft: 50, 51 | paddingRight: 50, 52 | marginTop: 20, 53 | backgroundColor: '#ffffff', 54 | borderRadius: 5 55 | } 56 | }) 57 | -------------------------------------------------------------------------------- /components/BasicArt.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import React, {PureComponent} from 'react' 3 | import {ScrollView, Image, View, Text, StyleSheet} from 'react-native' 4 | import {deviceWidth} from '../libs/Common' 5 | import LottieAnimation from './LottieAnimation' 6 | 7 | export default class BasicArt extends PureComponent { 8 | props: {artwork: Object} 9 | 10 | render(): * { 11 | var {artwork} = this.props 12 | var {title, artist, description} = artwork 13 | return ( 14 | 15 | {this.renderMedia()} 16 | 17 | {title} 18 | {description} 19 | 20 | 21 | ) 22 | } 23 | 24 | renderMedia (): * { 25 | var {artwork} = this.props 26 | var {image, lottie} = artwork 27 | return lottie ? 28 | : 29 | } 30 | } 31 | 32 | let styles = StyleSheet.create({ 33 | wrapper: { 34 | flexDirection: 'column', 35 | justifyContent: 'flex-start', 36 | flexGrow: 1 37 | }, 38 | image: { 39 | width: deviceWidth(), 40 | height: deviceWidth(), 41 | resizeMode: 'contain' 42 | }, 43 | infoSection: { 44 | padding: 10, 45 | backgroundColor: '#ffffff', 46 | flexGrow: 1 47 | }, 48 | title: { 49 | fontSize: 23, 50 | fontWeight: '700', 51 | }, 52 | artist: { 53 | fontSize: 13, 54 | fontWeight: '200' 55 | }, 56 | description: { 57 | fontSize: 15 58 | } 59 | }) 60 | -------------------------------------------------------------------------------- /components/InfoView.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import React, {PureComponent} from 'react' 3 | import {ScrollView, Text, StyleSheet, Linking, TouchableOpacity} from 'react-native' 4 | 5 | export default class InfoView extends PureComponent { 6 | 7 | render(): * { 8 | return ( 9 | 10 | Artist or developer? 11 | 12 | {'I hope you feel inspired by this example. There is still a lot to do on this app. The plan is to roll this out as a full scale art app, a new way of making visual art.\n\nIf you\'re an artist or developer that\'d like to participate to make this app a greater experience. Contact Matzielab below.'} 13 | 14 | this.contactMatzielab()}> 15 | Mail Matzielab 16 | 17 | 18 | ) 19 | } 20 | 21 | contactMatzielab () { 22 | Linking.openURL('mailto:matzielicious@gmail.com') 23 | } 24 | } 25 | 26 | let styles = StyleSheet.create({ 27 | wrapper: { 28 | flexDirection: 'column', 29 | justifyContent: 'flex-start', 30 | alignItems: 'center', 31 | flexGrow: 1, 32 | padding: 20 33 | }, 34 | heading: { 35 | fontSize: 23, 36 | fontWeight: '700', 37 | marginBottom: 10, 38 | color: '#ffffff' 39 | }, 40 | breadText: { 41 | fontSize: 15, 42 | color: '#ffffff' 43 | }, 44 | button: { 45 | paddingTop: 15, 46 | paddingBottom: 15, 47 | paddingLeft: 50, 48 | paddingRight: 50, 49 | marginTop: 20, 50 | backgroundColor: '#ffffff', 51 | borderRadius: 5 52 | } 53 | }) 54 | -------------------------------------------------------------------------------- /components/LottieAnimation.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { Animated, View, StyleSheet } from 'react-native' 3 | import React, {PureComponent} from 'react' 4 | import Animation from 'lottie-react-native' 5 | 6 | export default class LottieAnimation extends PureComponent { 7 | props: {source: *, width: number, height: number, duration: number, startPoint?: number, endPoint?: number, loop?: boolean, style?: StyleSheet} 8 | state: {progress: Animated, stopAnimation: boolean} 9 | 10 | constructor (props: *) { 11 | super(props) 12 | this.state = { 13 | progress: new Animated.Value(props.startPoint || 0), 14 | stopAnimation: !props.loop 15 | } 16 | } 17 | 18 | componentDidMount () { 19 | this.startAnimation() 20 | } 21 | 22 | componentDidUpdate () { 23 | this.startAnimation() 24 | } 25 | 26 | componentWillUnmount () { 27 | this.stopAnimation() 28 | } 29 | 30 | startAnimation () { 31 | var {loop} = this.props 32 | loop ? this.loopAnimation() : this.animateOnce() 33 | } 34 | 35 | stopAnimation () { 36 | this.state.progress.stopAnimation(() => { 37 | this.setState({stopAnimation: true}) 38 | }) 39 | } 40 | 41 | animateOnce () { 42 | var {startPoint, endPoint, duration} = this.props 43 | this.state.progress.setValue(startPoint || 0) 44 | 45 | Animated.timing(this.state.progress, { 46 | toValue: endPoint || 1, 47 | duration: duration 48 | }).start() 49 | } 50 | 51 | loopAnimation () { 52 | var {startPoint, endPoint, duration, loop} = this.props 53 | var {progress, stopAnimation} = this.state 54 | 55 | Animated.sequence([ 56 | Animated.timing(progress, { 57 | toValue: endPoint || 1, 58 | duration: duration 59 | }), 60 | Animated.timing(progress, { 61 | toValue: startPoint || 0, 62 | duration: 0 63 | }) 64 | ]).start((endState) => { 65 | if (!stopAnimation && endState.finished && loop) { 66 | this.loopAnimation() 67 | } 68 | }) 69 | } 70 | 71 | render (): * { 72 | var {source, style, width, height} = this.props 73 | var {progress} = this.state 74 | return 75 | 79 | 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /components/Start.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import React, {Component} from 'react' 3 | import {StatusBar, StyleSheet, Platform} from 'react-native' 4 | import Swiper from 'react-native-swiper' 5 | import Welcome from './Welcome' 6 | import AboutView from './AboutView' 7 | import BasicArt from './BasicArt' 8 | import InfoView from './InfoView' 9 | import {ImaginationWrapper} from 'imagination-react-native' 10 | import Artworks from '../libs/Artworks' 11 | 12 | export default class Start extends Component { 13 | 14 | render(): * { 15 | return ( 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | ) 30 | } 31 | 32 | } 33 | 34 | let styles = StyleSheet.create({ 35 | wrapper: { 36 | flexGrow: 1 37 | }, 38 | swiper: { 39 | marginTop: (Platform.OS === 'ios') ? 10 : 0 40 | }, 41 | swiperPagination: { 42 | bottom: (Platform.OS === 'ios') ? '5%' : '10%' 43 | } 44 | }) 45 | -------------------------------------------------------------------------------- /components/Welcome.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import React, {PureComponent} from 'react' 3 | import {View, Image, Text, StyleSheet, TouchableOpacity, Linking, Platform} from 'react-native' 4 | import {logo, matzielabLogo} from '../libs/Images' 5 | 6 | export default class Welcome extends PureComponent { 7 | 8 | render(): * { 9 | return 10 | 11 | this.goToMatzielab()}> 12 | 13 | By Matzielab 14 | 15 | 16 | } 17 | 18 | goToMatzielab () { 19 | Linking.openURL('https://Matzielab.com') 20 | } 21 | 22 | } 23 | 24 | let styles = StyleSheet.create({ 25 | wrapper: { 26 | flexGrow: 1, 27 | flexDirection: 'column', 28 | alignItems: 'center' 29 | }, 30 | logo: { 31 | width: 200, 32 | height: 80, 33 | resizeMode: 'contain' 34 | }, 35 | button: { 36 | flexDirection: 'column', 37 | justifyContent: 'center', 38 | alignItems: 'center', 39 | position: 'absolute', 40 | bottom: (Platform.OS === 'ios') ? '20%' : '15%' 41 | }, 42 | credit: { 43 | fontSize: 12, 44 | color: '#ffffff' 45 | }, 46 | matzielabLogo: { 47 | width: 20, 48 | height: 20, 49 | marginLeft: 5, 50 | marginRight: 5 51 | } 52 | }) 53 | -------------------------------------------------------------------------------- /images/abbey_road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/images/abbey_road.png -------------------------------------------------------------------------------- /images/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/images/city.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/images/logo.png -------------------------------------------------------------------------------- /images/matzielab_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/images/matzielab_logo.png -------------------------------------------------------------------------------- /images/opacity_dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/images/opacity_dots.png -------------------------------------------------------------------------------- /images/peace_circut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/images/peace_circut.png -------------------------------------------------------------------------------- /images/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/images/sky.png -------------------------------------------------------------------------------- /images/smalltalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/images/smalltalk.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import React, { Component } from 'react'; 3 | import {AppRegistry} from 'react-native'; 4 | import Start from './components/Start' 5 | 6 | export default class Imagination extends Component { 7 | render() { 8 | return ( 9 | 10 | ); 11 | } 12 | } 13 | 14 | AppRegistry.registerComponent('Imagination', () => Imagination); 15 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import React, { Component } from 'react'; 3 | import {AppRegistry} from 'react-native'; 4 | import Start from './components/Start' 5 | 6 | export default class Imagination extends Component { 7 | render() { 8 | return ( 9 | 10 | ); 11 | } 12 | } 13 | 14 | AppRegistry.registerComponent('Imagination', () => Imagination); 15 | -------------------------------------------------------------------------------- /ios/Imagination-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/Imagination-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/Imagination.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* ImaginationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ImaginationTests.m */; }; 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-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.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 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* ImaginationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ImaginationTests.m */; }; 37 | 4E9808AB5CF2484D8129BC65 /* libRNSensors.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D25800F77EE042E8814FD2B5 /* libRNSensors.a */; }; 38 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 39 | 7EE9F381B2B745D297A0A707 /* libLottieReactNative.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 91F293BB33FE4597912A965B /* libLottieReactNative.a */; }; 40 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 41 | 94248D5F15F940588C7CF805 /* libLottie.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 74CE4749AC8142FDA9622779 /* libLottie.a */; }; 42 | /* End PBXBuildFile section */ 43 | 44 | /* Begin PBXContainerItemProxy section */ 45 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 46 | isa = PBXContainerItemProxy; 47 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 48 | proxyType = 2; 49 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 50 | remoteInfo = RCTActionSheet; 51 | }; 52 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 53 | isa = PBXContainerItemProxy; 54 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 55 | proxyType = 2; 56 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 57 | remoteInfo = RCTGeolocation; 58 | }; 59 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 60 | isa = PBXContainerItemProxy; 61 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 62 | proxyType = 2; 63 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 64 | remoteInfo = RCTImage; 65 | }; 66 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 67 | isa = PBXContainerItemProxy; 68 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 69 | proxyType = 2; 70 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 71 | remoteInfo = RCTNetwork; 72 | }; 73 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 74 | isa = PBXContainerItemProxy; 75 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 76 | proxyType = 2; 77 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 78 | remoteInfo = RCTVibration; 79 | }; 80 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 81 | isa = PBXContainerItemProxy; 82 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 83 | proxyType = 1; 84 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 85 | remoteInfo = Imagination; 86 | }; 87 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 88 | isa = PBXContainerItemProxy; 89 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 90 | proxyType = 2; 91 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 92 | remoteInfo = RCTSettings; 93 | }; 94 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 95 | isa = PBXContainerItemProxy; 96 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 97 | proxyType = 2; 98 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 99 | remoteInfo = RCTWebSocket; 100 | }; 101 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 102 | isa = PBXContainerItemProxy; 103 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 104 | proxyType = 2; 105 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 106 | remoteInfo = React; 107 | }; 108 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 109 | isa = PBXContainerItemProxy; 110 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 111 | proxyType = 1; 112 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 113 | remoteInfo = "Imagination-tvOS"; 114 | }; 115 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 116 | isa = PBXContainerItemProxy; 117 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 118 | proxyType = 2; 119 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 120 | remoteInfo = "RCTImage-tvOS"; 121 | }; 122 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 123 | isa = PBXContainerItemProxy; 124 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 125 | proxyType = 2; 126 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 127 | remoteInfo = "RCTLinking-tvOS"; 128 | }; 129 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 130 | isa = PBXContainerItemProxy; 131 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 132 | proxyType = 2; 133 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 134 | remoteInfo = "RCTNetwork-tvOS"; 135 | }; 136 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 137 | isa = PBXContainerItemProxy; 138 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 139 | proxyType = 2; 140 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 141 | remoteInfo = "RCTSettings-tvOS"; 142 | }; 143 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 144 | isa = PBXContainerItemProxy; 145 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 146 | proxyType = 2; 147 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 148 | remoteInfo = "RCTText-tvOS"; 149 | }; 150 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 151 | isa = PBXContainerItemProxy; 152 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 153 | proxyType = 2; 154 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 155 | remoteInfo = "RCTWebSocket-tvOS"; 156 | }; 157 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 158 | isa = PBXContainerItemProxy; 159 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 160 | proxyType = 2; 161 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 162 | remoteInfo = "React-tvOS"; 163 | }; 164 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 165 | isa = PBXContainerItemProxy; 166 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 167 | proxyType = 2; 168 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 169 | remoteInfo = yoga; 170 | }; 171 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 172 | isa = PBXContainerItemProxy; 173 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 174 | proxyType = 2; 175 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 176 | remoteInfo = "yoga-tvOS"; 177 | }; 178 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 179 | isa = PBXContainerItemProxy; 180 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 181 | proxyType = 2; 182 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 183 | remoteInfo = cxxreact; 184 | }; 185 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 186 | isa = PBXContainerItemProxy; 187 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 188 | proxyType = 2; 189 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 190 | remoteInfo = "cxxreact-tvOS"; 191 | }; 192 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 193 | isa = PBXContainerItemProxy; 194 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 195 | proxyType = 2; 196 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 197 | remoteInfo = jschelpers; 198 | }; 199 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 200 | isa = PBXContainerItemProxy; 201 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 202 | proxyType = 2; 203 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 204 | remoteInfo = "jschelpers-tvOS"; 205 | }; 206 | 4402B3491F1220D000D8B4A4 /* PBXContainerItemProxy */ = { 207 | isa = PBXContainerItemProxy; 208 | containerPortal = AE79632A3DC64924BFFCD16E /* RNSensors.xcodeproj */; 209 | proxyType = 2; 210 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 211 | remoteInfo = RNSensors; 212 | }; 213 | 442F9D671EB2808200452413 /* PBXContainerItemProxy */ = { 214 | isa = PBXContainerItemProxy; 215 | containerPortal = 19B185F38EB648A7A1AA74C7 /* Lottie.xcodeproj */; 216 | proxyType = 2; 217 | remoteGlobalIDString = 62CA59B81E3C173B002D7188; 218 | remoteInfo = Lottie_iOS; 219 | }; 220 | 442F9D691EB2808200452413 /* PBXContainerItemProxy */ = { 221 | isa = PBXContainerItemProxy; 222 | containerPortal = 19B185F38EB648A7A1AA74C7 /* Lottie.xcodeproj */; 223 | proxyType = 2; 224 | remoteGlobalIDString = FAE1F7E61E428CBE002E0974; 225 | remoteInfo = Lottie_macOS; 226 | }; 227 | 442F9D6B1EB2808200452413 /* PBXContainerItemProxy */ = { 228 | isa = PBXContainerItemProxy; 229 | containerPortal = 19B185F38EB648A7A1AA74C7 /* Lottie.xcodeproj */; 230 | proxyType = 2; 231 | remoteGlobalIDString = 84FE12EF1E4C1485009B157C; 232 | remoteInfo = LottieLibraryIOS; 233 | }; 234 | 442F9D981EB280B200452413 /* PBXContainerItemProxy */ = { 235 | isa = PBXContainerItemProxy; 236 | containerPortal = 59DDB8B509F74B97AED3E736 /* LottieReactNative.xcodeproj */; 237 | proxyType = 2; 238 | remoteGlobalIDString = 11FA5C511C4A1296003AC2EE; 239 | remoteInfo = LottieReactNative; 240 | }; 241 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 242 | isa = PBXContainerItemProxy; 243 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 244 | proxyType = 2; 245 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 246 | remoteInfo = RCTAnimation; 247 | }; 248 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 249 | isa = PBXContainerItemProxy; 250 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 251 | proxyType = 2; 252 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 253 | remoteInfo = "RCTAnimation-tvOS"; 254 | }; 255 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 256 | isa = PBXContainerItemProxy; 257 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 258 | proxyType = 2; 259 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 260 | remoteInfo = RCTLinking; 261 | }; 262 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 263 | isa = PBXContainerItemProxy; 264 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 265 | proxyType = 2; 266 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 267 | remoteInfo = RCTText; 268 | }; 269 | /* End PBXContainerItemProxy section */ 270 | 271 | /* Begin PBXFileReference section */ 272 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 273 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 274 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 275 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 276 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 277 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 278 | 00E356EE1AD99517003FC87E /* ImaginationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ImaginationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 279 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 280 | 00E356F21AD99517003FC87E /* ImaginationTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ImaginationTests.m; sourceTree = ""; }; 281 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 282 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 283 | 13B07F961A680F5B00A75B9A /* Imagination.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Imagination.app; sourceTree = BUILT_PRODUCTS_DIR; }; 284 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Imagination/AppDelegate.h; sourceTree = ""; }; 285 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Imagination/AppDelegate.m; sourceTree = ""; }; 286 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 287 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Imagination/Images.xcassets; sourceTree = ""; }; 288 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Imagination/Info.plist; sourceTree = ""; }; 289 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Imagination/main.m; sourceTree = ""; }; 290 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 291 | 19B185F38EB648A7A1AA74C7 /* Lottie.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = Lottie.xcodeproj; path = "../node_modules/lottie-ios/Lottie.xcodeproj"; sourceTree = ""; }; 292 | 2D02E47B1E0B4A5D006451C7 /* Imagination-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Imagination-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 293 | 2D02E4901E0B4A5D006451C7 /* Imagination-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Imagination-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 294 | 59DDB8B509F74B97AED3E736 /* LottieReactNative.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = LottieReactNative.xcodeproj; path = "../node_modules/lottie-react-native/lib/ios/LottieReactNative.xcodeproj"; sourceTree = ""; }; 295 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 296 | 74CE4749AC8142FDA9622779 /* libLottie.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libLottie.a; sourceTree = ""; }; 297 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 298 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 299 | 91F293BB33FE4597912A965B /* libLottieReactNative.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libLottieReactNative.a; sourceTree = ""; }; 300 | AE79632A3DC64924BFFCD16E /* RNSensors.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNSensors.xcodeproj; path = "../node_modules/react-native-sensors/ios/RNSensors.xcodeproj"; sourceTree = ""; }; 301 | D25800F77EE042E8814FD2B5 /* libRNSensors.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNSensors.a; sourceTree = ""; }; 302 | /* End PBXFileReference section */ 303 | 304 | /* Begin PBXFrameworksBuildPhase section */ 305 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 306 | isa = PBXFrameworksBuildPhase; 307 | buildActionMask = 2147483647; 308 | files = ( 309 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 310 | ); 311 | runOnlyForDeploymentPostprocessing = 0; 312 | }; 313 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 314 | isa = PBXFrameworksBuildPhase; 315 | buildActionMask = 2147483647; 316 | files = ( 317 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 318 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 319 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 320 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 321 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 322 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 323 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 324 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 325 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 326 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 327 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 328 | 94248D5F15F940588C7CF805 /* libLottie.a in Frameworks */, 329 | 7EE9F381B2B745D297A0A707 /* libLottieReactNative.a in Frameworks */, 330 | 4E9808AB5CF2484D8129BC65 /* libRNSensors.a in Frameworks */, 331 | ); 332 | runOnlyForDeploymentPostprocessing = 0; 333 | }; 334 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 335 | isa = PBXFrameworksBuildPhase; 336 | buildActionMask = 2147483647; 337 | files = ( 338 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 339 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */, 340 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 341 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 342 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 343 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 344 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 345 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 346 | ); 347 | runOnlyForDeploymentPostprocessing = 0; 348 | }; 349 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 350 | isa = PBXFrameworksBuildPhase; 351 | buildActionMask = 2147483647; 352 | files = ( 353 | ); 354 | runOnlyForDeploymentPostprocessing = 0; 355 | }; 356 | /* End PBXFrameworksBuildPhase section */ 357 | 358 | /* Begin PBXGroup section */ 359 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 360 | isa = PBXGroup; 361 | children = ( 362 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 363 | ); 364 | name = Products; 365 | sourceTree = ""; 366 | }; 367 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 368 | isa = PBXGroup; 369 | children = ( 370 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 371 | ); 372 | name = Products; 373 | sourceTree = ""; 374 | }; 375 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 376 | isa = PBXGroup; 377 | children = ( 378 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 379 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 380 | ); 381 | name = Products; 382 | sourceTree = ""; 383 | }; 384 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 385 | isa = PBXGroup; 386 | children = ( 387 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 388 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 389 | ); 390 | name = Products; 391 | sourceTree = ""; 392 | }; 393 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 394 | isa = PBXGroup; 395 | children = ( 396 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 397 | ); 398 | name = Products; 399 | sourceTree = ""; 400 | }; 401 | 00E356EF1AD99517003FC87E /* ImaginationTests */ = { 402 | isa = PBXGroup; 403 | children = ( 404 | 00E356F21AD99517003FC87E /* ImaginationTests.m */, 405 | 00E356F01AD99517003FC87E /* Supporting Files */, 406 | ); 407 | path = ImaginationTests; 408 | sourceTree = ""; 409 | }; 410 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 411 | isa = PBXGroup; 412 | children = ( 413 | 00E356F11AD99517003FC87E /* Info.plist */, 414 | ); 415 | name = "Supporting Files"; 416 | sourceTree = ""; 417 | }; 418 | 139105B71AF99BAD00B5F7CC /* Products */ = { 419 | isa = PBXGroup; 420 | children = ( 421 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 422 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 423 | ); 424 | name = Products; 425 | sourceTree = ""; 426 | }; 427 | 139FDEE71B06529A00C62182 /* Products */ = { 428 | isa = PBXGroup; 429 | children = ( 430 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 431 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 432 | ); 433 | name = Products; 434 | sourceTree = ""; 435 | }; 436 | 13B07FAE1A68108700A75B9A /* Imagination */ = { 437 | isa = PBXGroup; 438 | children = ( 439 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 440 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 441 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 442 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 443 | 13B07FB61A68108700A75B9A /* Info.plist */, 444 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 445 | 13B07FB71A68108700A75B9A /* main.m */, 446 | ); 447 | name = Imagination; 448 | sourceTree = ""; 449 | }; 450 | 146834001AC3E56700842450 /* Products */ = { 451 | isa = PBXGroup; 452 | children = ( 453 | 146834041AC3E56700842450 /* libReact.a */, 454 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 455 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 456 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 457 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 458 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 459 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 460 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 461 | ); 462 | name = Products; 463 | sourceTree = ""; 464 | }; 465 | 4402B3291F1220CF00D8B4A4 /* Products */ = { 466 | isa = PBXGroup; 467 | children = ( 468 | 4402B34A1F1220D000D8B4A4 /* libRNSensors.a */, 469 | ); 470 | name = Products; 471 | sourceTree = ""; 472 | }; 473 | 442F9D621EB2808200452413 /* Products */ = { 474 | isa = PBXGroup; 475 | children = ( 476 | 442F9D681EB2808200452413 /* Lottie.framework */, 477 | 442F9D6A1EB2808200452413 /* Lottie.framework */, 478 | 442F9D6C1EB2808200452413 /* libLottie.a */, 479 | ); 480 | name = Products; 481 | sourceTree = ""; 482 | }; 483 | 442F9D921EB280B200452413 /* Products */ = { 484 | isa = PBXGroup; 485 | children = ( 486 | 442F9D991EB280B200452413 /* libLottieReactNative.a */, 487 | ); 488 | name = Products; 489 | sourceTree = ""; 490 | }; 491 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 492 | isa = PBXGroup; 493 | children = ( 494 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 495 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 496 | ); 497 | name = Products; 498 | sourceTree = ""; 499 | }; 500 | 78C398B11ACF4ADC00677621 /* Products */ = { 501 | isa = PBXGroup; 502 | children = ( 503 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 504 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 505 | ); 506 | name = Products; 507 | sourceTree = ""; 508 | }; 509 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 510 | isa = PBXGroup; 511 | children = ( 512 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 513 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 514 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 515 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 516 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 517 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 518 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 519 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 520 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 521 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 522 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 523 | 19B185F38EB648A7A1AA74C7 /* Lottie.xcodeproj */, 524 | 59DDB8B509F74B97AED3E736 /* LottieReactNative.xcodeproj */, 525 | AE79632A3DC64924BFFCD16E /* RNSensors.xcodeproj */, 526 | ); 527 | name = Libraries; 528 | sourceTree = ""; 529 | }; 530 | 832341B11AAA6A8300B99B32 /* Products */ = { 531 | isa = PBXGroup; 532 | children = ( 533 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 534 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 535 | ); 536 | name = Products; 537 | sourceTree = ""; 538 | }; 539 | 83CBB9F61A601CBA00E9B192 = { 540 | isa = PBXGroup; 541 | children = ( 542 | 13B07FAE1A68108700A75B9A /* Imagination */, 543 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 544 | 00E356EF1AD99517003FC87E /* ImaginationTests */, 545 | 83CBBA001A601CBA00E9B192 /* Products */, 546 | ); 547 | indentWidth = 2; 548 | sourceTree = ""; 549 | tabWidth = 2; 550 | }; 551 | 83CBBA001A601CBA00E9B192 /* Products */ = { 552 | isa = PBXGroup; 553 | children = ( 554 | 13B07F961A680F5B00A75B9A /* Imagination.app */, 555 | 00E356EE1AD99517003FC87E /* ImaginationTests.xctest */, 556 | 2D02E47B1E0B4A5D006451C7 /* Imagination-tvOS.app */, 557 | 2D02E4901E0B4A5D006451C7 /* Imagination-tvOSTests.xctest */, 558 | ); 559 | name = Products; 560 | sourceTree = ""; 561 | }; 562 | /* End PBXGroup section */ 563 | 564 | /* Begin PBXNativeTarget section */ 565 | 00E356ED1AD99517003FC87E /* ImaginationTests */ = { 566 | isa = PBXNativeTarget; 567 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ImaginationTests" */; 568 | buildPhases = ( 569 | 00E356EA1AD99517003FC87E /* Sources */, 570 | 00E356EB1AD99517003FC87E /* Frameworks */, 571 | 00E356EC1AD99517003FC87E /* Resources */, 572 | ); 573 | buildRules = ( 574 | ); 575 | dependencies = ( 576 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 577 | ); 578 | name = ImaginationTests; 579 | productName = ImaginationTests; 580 | productReference = 00E356EE1AD99517003FC87E /* ImaginationTests.xctest */; 581 | productType = "com.apple.product-type.bundle.unit-test"; 582 | }; 583 | 13B07F861A680F5B00A75B9A /* Imagination */ = { 584 | isa = PBXNativeTarget; 585 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Imagination" */; 586 | buildPhases = ( 587 | 13B07F871A680F5B00A75B9A /* Sources */, 588 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 589 | 13B07F8E1A680F5B00A75B9A /* Resources */, 590 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 591 | ); 592 | buildRules = ( 593 | ); 594 | dependencies = ( 595 | ); 596 | name = Imagination; 597 | productName = "Hello World"; 598 | productReference = 13B07F961A680F5B00A75B9A /* Imagination.app */; 599 | productType = "com.apple.product-type.application"; 600 | }; 601 | 2D02E47A1E0B4A5D006451C7 /* Imagination-tvOS */ = { 602 | isa = PBXNativeTarget; 603 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Imagination-tvOS" */; 604 | buildPhases = ( 605 | 2D02E4771E0B4A5D006451C7 /* Sources */, 606 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 607 | 2D02E4791E0B4A5D006451C7 /* Resources */, 608 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 609 | ); 610 | buildRules = ( 611 | ); 612 | dependencies = ( 613 | ); 614 | name = "Imagination-tvOS"; 615 | productName = "Imagination-tvOS"; 616 | productReference = 2D02E47B1E0B4A5D006451C7 /* Imagination-tvOS.app */; 617 | productType = "com.apple.product-type.application"; 618 | }; 619 | 2D02E48F1E0B4A5D006451C7 /* Imagination-tvOSTests */ = { 620 | isa = PBXNativeTarget; 621 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Imagination-tvOSTests" */; 622 | buildPhases = ( 623 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 624 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 625 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 626 | ); 627 | buildRules = ( 628 | ); 629 | dependencies = ( 630 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 631 | ); 632 | name = "Imagination-tvOSTests"; 633 | productName = "Imagination-tvOSTests"; 634 | productReference = 2D02E4901E0B4A5D006451C7 /* Imagination-tvOSTests.xctest */; 635 | productType = "com.apple.product-type.bundle.unit-test"; 636 | }; 637 | /* End PBXNativeTarget section */ 638 | 639 | /* Begin PBXProject section */ 640 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 641 | isa = PBXProject; 642 | attributes = { 643 | LastUpgradeCheck = 610; 644 | ORGANIZATIONNAME = Facebook; 645 | TargetAttributes = { 646 | 00E356ED1AD99517003FC87E = { 647 | CreatedOnToolsVersion = 6.2; 648 | TestTargetID = 13B07F861A680F5B00A75B9A; 649 | }; 650 | 13B07F861A680F5B00A75B9A = { 651 | DevelopmentTeam = B6XG722CSY; 652 | }; 653 | 2D02E47A1E0B4A5D006451C7 = { 654 | CreatedOnToolsVersion = 8.2.1; 655 | ProvisioningStyle = Automatic; 656 | }; 657 | 2D02E48F1E0B4A5D006451C7 = { 658 | CreatedOnToolsVersion = 8.2.1; 659 | ProvisioningStyle = Automatic; 660 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 661 | }; 662 | }; 663 | }; 664 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Imagination" */; 665 | compatibilityVersion = "Xcode 3.2"; 666 | developmentRegion = English; 667 | hasScannedForEncodings = 0; 668 | knownRegions = ( 669 | en, 670 | Base, 671 | ); 672 | mainGroup = 83CBB9F61A601CBA00E9B192; 673 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 674 | projectDirPath = ""; 675 | projectReferences = ( 676 | { 677 | ProductGroup = 442F9D621EB2808200452413 /* Products */; 678 | ProjectRef = 19B185F38EB648A7A1AA74C7 /* Lottie.xcodeproj */; 679 | }, 680 | { 681 | ProductGroup = 442F9D921EB280B200452413 /* Products */; 682 | ProjectRef = 59DDB8B509F74B97AED3E736 /* LottieReactNative.xcodeproj */; 683 | }, 684 | { 685 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 686 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 687 | }, 688 | { 689 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 690 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 691 | }, 692 | { 693 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 694 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 695 | }, 696 | { 697 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 698 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 699 | }, 700 | { 701 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 702 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 703 | }, 704 | { 705 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 706 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 707 | }, 708 | { 709 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 710 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 711 | }, 712 | { 713 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 714 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 715 | }, 716 | { 717 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 718 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 719 | }, 720 | { 721 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 722 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 723 | }, 724 | { 725 | ProductGroup = 146834001AC3E56700842450 /* Products */; 726 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 727 | }, 728 | { 729 | ProductGroup = 4402B3291F1220CF00D8B4A4 /* Products */; 730 | ProjectRef = AE79632A3DC64924BFFCD16E /* RNSensors.xcodeproj */; 731 | }, 732 | ); 733 | projectRoot = ""; 734 | targets = ( 735 | 13B07F861A680F5B00A75B9A /* Imagination */, 736 | 00E356ED1AD99517003FC87E /* ImaginationTests */, 737 | 2D02E47A1E0B4A5D006451C7 /* Imagination-tvOS */, 738 | 2D02E48F1E0B4A5D006451C7 /* Imagination-tvOSTests */, 739 | ); 740 | }; 741 | /* End PBXProject section */ 742 | 743 | /* Begin PBXReferenceProxy section */ 744 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 745 | isa = PBXReferenceProxy; 746 | fileType = archive.ar; 747 | path = libRCTActionSheet.a; 748 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 749 | sourceTree = BUILT_PRODUCTS_DIR; 750 | }; 751 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 752 | isa = PBXReferenceProxy; 753 | fileType = archive.ar; 754 | path = libRCTGeolocation.a; 755 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 756 | sourceTree = BUILT_PRODUCTS_DIR; 757 | }; 758 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 759 | isa = PBXReferenceProxy; 760 | fileType = archive.ar; 761 | path = libRCTImage.a; 762 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 763 | sourceTree = BUILT_PRODUCTS_DIR; 764 | }; 765 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 766 | isa = PBXReferenceProxy; 767 | fileType = archive.ar; 768 | path = libRCTNetwork.a; 769 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 770 | sourceTree = BUILT_PRODUCTS_DIR; 771 | }; 772 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 773 | isa = PBXReferenceProxy; 774 | fileType = archive.ar; 775 | path = libRCTVibration.a; 776 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 777 | sourceTree = BUILT_PRODUCTS_DIR; 778 | }; 779 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 780 | isa = PBXReferenceProxy; 781 | fileType = archive.ar; 782 | path = libRCTSettings.a; 783 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 784 | sourceTree = BUILT_PRODUCTS_DIR; 785 | }; 786 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 787 | isa = PBXReferenceProxy; 788 | fileType = archive.ar; 789 | path = libRCTWebSocket.a; 790 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 791 | sourceTree = BUILT_PRODUCTS_DIR; 792 | }; 793 | 146834041AC3E56700842450 /* libReact.a */ = { 794 | isa = PBXReferenceProxy; 795 | fileType = archive.ar; 796 | path = libReact.a; 797 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 798 | sourceTree = BUILT_PRODUCTS_DIR; 799 | }; 800 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 801 | isa = PBXReferenceProxy; 802 | fileType = archive.ar; 803 | path = "libRCTImage-tvOS.a"; 804 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 805 | sourceTree = BUILT_PRODUCTS_DIR; 806 | }; 807 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 808 | isa = PBXReferenceProxy; 809 | fileType = archive.ar; 810 | path = "libRCTLinking-tvOS.a"; 811 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 812 | sourceTree = BUILT_PRODUCTS_DIR; 813 | }; 814 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 815 | isa = PBXReferenceProxy; 816 | fileType = archive.ar; 817 | path = "libRCTNetwork-tvOS.a"; 818 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 819 | sourceTree = BUILT_PRODUCTS_DIR; 820 | }; 821 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 822 | isa = PBXReferenceProxy; 823 | fileType = archive.ar; 824 | path = "libRCTSettings-tvOS.a"; 825 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 826 | sourceTree = BUILT_PRODUCTS_DIR; 827 | }; 828 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 829 | isa = PBXReferenceProxy; 830 | fileType = archive.ar; 831 | path = "libRCTText-tvOS.a"; 832 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 833 | sourceTree = BUILT_PRODUCTS_DIR; 834 | }; 835 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 836 | isa = PBXReferenceProxy; 837 | fileType = archive.ar; 838 | path = "libRCTWebSocket-tvOS.a"; 839 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 840 | sourceTree = BUILT_PRODUCTS_DIR; 841 | }; 842 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 843 | isa = PBXReferenceProxy; 844 | fileType = archive.ar; 845 | path = libReact.a; 846 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 847 | sourceTree = BUILT_PRODUCTS_DIR; 848 | }; 849 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 850 | isa = PBXReferenceProxy; 851 | fileType = archive.ar; 852 | path = libyoga.a; 853 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 854 | sourceTree = BUILT_PRODUCTS_DIR; 855 | }; 856 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 857 | isa = PBXReferenceProxy; 858 | fileType = archive.ar; 859 | path = libyoga.a; 860 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 861 | sourceTree = BUILT_PRODUCTS_DIR; 862 | }; 863 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 864 | isa = PBXReferenceProxy; 865 | fileType = archive.ar; 866 | path = libcxxreact.a; 867 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 868 | sourceTree = BUILT_PRODUCTS_DIR; 869 | }; 870 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 871 | isa = PBXReferenceProxy; 872 | fileType = archive.ar; 873 | path = libcxxreact.a; 874 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 875 | sourceTree = BUILT_PRODUCTS_DIR; 876 | }; 877 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 878 | isa = PBXReferenceProxy; 879 | fileType = archive.ar; 880 | path = libjschelpers.a; 881 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 882 | sourceTree = BUILT_PRODUCTS_DIR; 883 | }; 884 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 885 | isa = PBXReferenceProxy; 886 | fileType = archive.ar; 887 | path = libjschelpers.a; 888 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 889 | sourceTree = BUILT_PRODUCTS_DIR; 890 | }; 891 | 4402B34A1F1220D000D8B4A4 /* libRNSensors.a */ = { 892 | isa = PBXReferenceProxy; 893 | fileType = archive.ar; 894 | path = libRNSensors.a; 895 | remoteRef = 4402B3491F1220D000D8B4A4 /* PBXContainerItemProxy */; 896 | sourceTree = BUILT_PRODUCTS_DIR; 897 | }; 898 | 442F9D681EB2808200452413 /* Lottie.framework */ = { 899 | isa = PBXReferenceProxy; 900 | fileType = wrapper.framework; 901 | path = Lottie.framework; 902 | remoteRef = 442F9D671EB2808200452413 /* PBXContainerItemProxy */; 903 | sourceTree = BUILT_PRODUCTS_DIR; 904 | }; 905 | 442F9D6A1EB2808200452413 /* Lottie.framework */ = { 906 | isa = PBXReferenceProxy; 907 | fileType = wrapper.framework; 908 | path = Lottie.framework; 909 | remoteRef = 442F9D691EB2808200452413 /* PBXContainerItemProxy */; 910 | sourceTree = BUILT_PRODUCTS_DIR; 911 | }; 912 | 442F9D6C1EB2808200452413 /* libLottie.a */ = { 913 | isa = PBXReferenceProxy; 914 | fileType = archive.ar; 915 | path = libLottie.a; 916 | remoteRef = 442F9D6B1EB2808200452413 /* PBXContainerItemProxy */; 917 | sourceTree = BUILT_PRODUCTS_DIR; 918 | }; 919 | 442F9D991EB280B200452413 /* libLottieReactNative.a */ = { 920 | isa = PBXReferenceProxy; 921 | fileType = archive.ar; 922 | path = libLottieReactNative.a; 923 | remoteRef = 442F9D981EB280B200452413 /* PBXContainerItemProxy */; 924 | sourceTree = BUILT_PRODUCTS_DIR; 925 | }; 926 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 927 | isa = PBXReferenceProxy; 928 | fileType = archive.ar; 929 | path = libRCTAnimation.a; 930 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 931 | sourceTree = BUILT_PRODUCTS_DIR; 932 | }; 933 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 934 | isa = PBXReferenceProxy; 935 | fileType = archive.ar; 936 | path = "libRCTAnimation-tvOS.a"; 937 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 938 | sourceTree = BUILT_PRODUCTS_DIR; 939 | }; 940 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 941 | isa = PBXReferenceProxy; 942 | fileType = archive.ar; 943 | path = libRCTLinking.a; 944 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 945 | sourceTree = BUILT_PRODUCTS_DIR; 946 | }; 947 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 948 | isa = PBXReferenceProxy; 949 | fileType = archive.ar; 950 | path = libRCTText.a; 951 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 952 | sourceTree = BUILT_PRODUCTS_DIR; 953 | }; 954 | /* End PBXReferenceProxy section */ 955 | 956 | /* Begin PBXResourcesBuildPhase section */ 957 | 00E356EC1AD99517003FC87E /* Resources */ = { 958 | isa = PBXResourcesBuildPhase; 959 | buildActionMask = 2147483647; 960 | files = ( 961 | ); 962 | runOnlyForDeploymentPostprocessing = 0; 963 | }; 964 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 965 | isa = PBXResourcesBuildPhase; 966 | buildActionMask = 2147483647; 967 | files = ( 968 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 969 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 970 | ); 971 | runOnlyForDeploymentPostprocessing = 0; 972 | }; 973 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 974 | isa = PBXResourcesBuildPhase; 975 | buildActionMask = 2147483647; 976 | files = ( 977 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 978 | ); 979 | runOnlyForDeploymentPostprocessing = 0; 980 | }; 981 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 982 | isa = PBXResourcesBuildPhase; 983 | buildActionMask = 2147483647; 984 | files = ( 985 | ); 986 | runOnlyForDeploymentPostprocessing = 0; 987 | }; 988 | /* End PBXResourcesBuildPhase section */ 989 | 990 | /* Begin PBXShellScriptBuildPhase section */ 991 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 992 | isa = PBXShellScriptBuildPhase; 993 | buildActionMask = 2147483647; 994 | files = ( 995 | ); 996 | inputPaths = ( 997 | ); 998 | name = "Bundle React Native code and images"; 999 | outputPaths = ( 1000 | ); 1001 | runOnlyForDeploymentPostprocessing = 0; 1002 | shellPath = /bin/sh; 1003 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 1004 | }; 1005 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1006 | isa = PBXShellScriptBuildPhase; 1007 | buildActionMask = 2147483647; 1008 | files = ( 1009 | ); 1010 | inputPaths = ( 1011 | ); 1012 | name = "Bundle React Native Code And Images"; 1013 | outputPaths = ( 1014 | ); 1015 | runOnlyForDeploymentPostprocessing = 0; 1016 | shellPath = /bin/sh; 1017 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 1018 | }; 1019 | /* End PBXShellScriptBuildPhase section */ 1020 | 1021 | /* Begin PBXSourcesBuildPhase section */ 1022 | 00E356EA1AD99517003FC87E /* Sources */ = { 1023 | isa = PBXSourcesBuildPhase; 1024 | buildActionMask = 2147483647; 1025 | files = ( 1026 | 00E356F31AD99517003FC87E /* ImaginationTests.m in Sources */, 1027 | ); 1028 | runOnlyForDeploymentPostprocessing = 0; 1029 | }; 1030 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1031 | isa = PBXSourcesBuildPhase; 1032 | buildActionMask = 2147483647; 1033 | files = ( 1034 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1035 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1036 | ); 1037 | runOnlyForDeploymentPostprocessing = 0; 1038 | }; 1039 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1040 | isa = PBXSourcesBuildPhase; 1041 | buildActionMask = 2147483647; 1042 | files = ( 1043 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1044 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1045 | ); 1046 | runOnlyForDeploymentPostprocessing = 0; 1047 | }; 1048 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1049 | isa = PBXSourcesBuildPhase; 1050 | buildActionMask = 2147483647; 1051 | files = ( 1052 | 2DCD954D1E0B4F2C00145EB5 /* ImaginationTests.m in Sources */, 1053 | ); 1054 | runOnlyForDeploymentPostprocessing = 0; 1055 | }; 1056 | /* End PBXSourcesBuildPhase section */ 1057 | 1058 | /* Begin PBXTargetDependency section */ 1059 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1060 | isa = PBXTargetDependency; 1061 | target = 13B07F861A680F5B00A75B9A /* Imagination */; 1062 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1063 | }; 1064 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1065 | isa = PBXTargetDependency; 1066 | target = 2D02E47A1E0B4A5D006451C7 /* Imagination-tvOS */; 1067 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1068 | }; 1069 | /* End PBXTargetDependency section */ 1070 | 1071 | /* Begin PBXVariantGroup section */ 1072 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1073 | isa = PBXVariantGroup; 1074 | children = ( 1075 | 13B07FB21A68108700A75B9A /* Base */, 1076 | ); 1077 | name = LaunchScreen.xib; 1078 | path = Imagination; 1079 | sourceTree = ""; 1080 | }; 1081 | /* End PBXVariantGroup section */ 1082 | 1083 | /* Begin XCBuildConfiguration section */ 1084 | 00E356F61AD99517003FC87E /* Debug */ = { 1085 | isa = XCBuildConfiguration; 1086 | buildSettings = { 1087 | BUNDLE_LOADER = "$(TEST_HOST)"; 1088 | GCC_PREPROCESSOR_DEFINITIONS = ( 1089 | "DEBUG=1", 1090 | "$(inherited)", 1091 | ); 1092 | HEADER_SEARCH_PATHS = ( 1093 | "$(inherited)", 1094 | "$(SRCROOT)/../node_modules/lottie-ios/Lottie-Screenshot/**", 1095 | "$(SRCROOT)/../node_modules/lottie-react-native/lib/ios/LottieReactNative", 1096 | "$(SRCROOT)/../node_modules/react-native-sensors/ios", 1097 | ); 1098 | INFOPLIST_FILE = ImaginationTests/Info.plist; 1099 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1100 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1101 | LIBRARY_SEARCH_PATHS = ( 1102 | "$(inherited)", 1103 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1104 | ); 1105 | OTHER_LDFLAGS = ( 1106 | "-ObjC", 1107 | "-lc++", 1108 | ); 1109 | PRODUCT_NAME = "$(TARGET_NAME)"; 1110 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Imagination.app/Imagination"; 1111 | }; 1112 | name = Debug; 1113 | }; 1114 | 00E356F71AD99517003FC87E /* Release */ = { 1115 | isa = XCBuildConfiguration; 1116 | buildSettings = { 1117 | BUNDLE_LOADER = "$(TEST_HOST)"; 1118 | COPY_PHASE_STRIP = NO; 1119 | HEADER_SEARCH_PATHS = ( 1120 | "$(inherited)", 1121 | "$(SRCROOT)/../node_modules/lottie-ios/Lottie-Screenshot/**", 1122 | "$(SRCROOT)/../node_modules/lottie-react-native/lib/ios/LottieReactNative", 1123 | "$(SRCROOT)/../node_modules/react-native-sensors/ios", 1124 | ); 1125 | INFOPLIST_FILE = ImaginationTests/Info.plist; 1126 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1127 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1128 | LIBRARY_SEARCH_PATHS = ( 1129 | "$(inherited)", 1130 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1131 | ); 1132 | OTHER_LDFLAGS = ( 1133 | "-ObjC", 1134 | "-lc++", 1135 | ); 1136 | PRODUCT_NAME = "$(TARGET_NAME)"; 1137 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Imagination.app/Imagination"; 1138 | }; 1139 | name = Release; 1140 | }; 1141 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1142 | isa = XCBuildConfiguration; 1143 | buildSettings = { 1144 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1145 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1146 | CURRENT_PROJECT_VERSION = 1; 1147 | DEAD_CODE_STRIPPING = NO; 1148 | DEVELOPMENT_TEAM = B6XG722CSY; 1149 | HEADER_SEARCH_PATHS = ( 1150 | "$(inherited)", 1151 | "$(SRCROOT)/../node_modules/lottie-ios/Lottie-Screenshot/**", 1152 | "$(SRCROOT)/../node_modules/lottie-react-native/lib/ios/LottieReactNative", 1153 | "$(SRCROOT)/../node_modules/react-native-sensors/ios", 1154 | ); 1155 | INFOPLIST_FILE = Imagination/Info.plist; 1156 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1157 | OTHER_LDFLAGS = ( 1158 | "$(inherited)", 1159 | "-ObjC", 1160 | "-lc++", 1161 | ); 1162 | PRODUCT_BUNDLE_IDENTIFIER = com.matzielab.Imagination; 1163 | PRODUCT_NAME = Imagination; 1164 | VERSIONING_SYSTEM = "apple-generic"; 1165 | }; 1166 | name = Debug; 1167 | }; 1168 | 13B07F951A680F5B00A75B9A /* Release */ = { 1169 | isa = XCBuildConfiguration; 1170 | buildSettings = { 1171 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1172 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1173 | CURRENT_PROJECT_VERSION = 1; 1174 | DEVELOPMENT_TEAM = B6XG722CSY; 1175 | HEADER_SEARCH_PATHS = ( 1176 | "$(inherited)", 1177 | "$(SRCROOT)/../node_modules/lottie-ios/Lottie-Screenshot/**", 1178 | "$(SRCROOT)/../node_modules/lottie-react-native/lib/ios/LottieReactNative", 1179 | "$(SRCROOT)/../node_modules/react-native-sensors/ios", 1180 | ); 1181 | INFOPLIST_FILE = Imagination/Info.plist; 1182 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1183 | OTHER_LDFLAGS = ( 1184 | "$(inherited)", 1185 | "-ObjC", 1186 | "-lc++", 1187 | ); 1188 | PRODUCT_BUNDLE_IDENTIFIER = com.matzielab.Imagination; 1189 | PRODUCT_NAME = Imagination; 1190 | VERSIONING_SYSTEM = "apple-generic"; 1191 | }; 1192 | name = Release; 1193 | }; 1194 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1195 | isa = XCBuildConfiguration; 1196 | buildSettings = { 1197 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1198 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1199 | CLANG_ANALYZER_NONNULL = YES; 1200 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1201 | CLANG_WARN_INFINITE_RECURSION = YES; 1202 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1203 | DEBUG_INFORMATION_FORMAT = dwarf; 1204 | ENABLE_TESTABILITY = YES; 1205 | GCC_NO_COMMON_BLOCKS = YES; 1206 | HEADER_SEARCH_PATHS = ( 1207 | "$(inherited)", 1208 | "$(SRCROOT)/../node_modules/lottie-ios/Lottie-Screenshot/**", 1209 | "$(SRCROOT)/../node_modules/lottie-react-native/lib/ios/LottieReactNative", 1210 | "$(SRCROOT)/../node_modules/react-native-sensors/ios", 1211 | ); 1212 | INFOPLIST_FILE = "Imagination-tvOS/Info.plist"; 1213 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1214 | LIBRARY_SEARCH_PATHS = ( 1215 | "$(inherited)", 1216 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1217 | ); 1218 | OTHER_LDFLAGS = ( 1219 | "-ObjC", 1220 | "-lc++", 1221 | ); 1222 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Imagination-tvOS"; 1223 | PRODUCT_NAME = "$(TARGET_NAME)"; 1224 | SDKROOT = appletvos; 1225 | TARGETED_DEVICE_FAMILY = 3; 1226 | TVOS_DEPLOYMENT_TARGET = 9.2; 1227 | }; 1228 | name = Debug; 1229 | }; 1230 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1231 | isa = XCBuildConfiguration; 1232 | buildSettings = { 1233 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1234 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1235 | CLANG_ANALYZER_NONNULL = YES; 1236 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1237 | CLANG_WARN_INFINITE_RECURSION = YES; 1238 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1239 | COPY_PHASE_STRIP = NO; 1240 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1241 | GCC_NO_COMMON_BLOCKS = YES; 1242 | HEADER_SEARCH_PATHS = ( 1243 | "$(inherited)", 1244 | "$(SRCROOT)/../node_modules/lottie-ios/Lottie-Screenshot/**", 1245 | "$(SRCROOT)/../node_modules/lottie-react-native/lib/ios/LottieReactNative", 1246 | "$(SRCROOT)/../node_modules/react-native-sensors/ios", 1247 | ); 1248 | INFOPLIST_FILE = "Imagination-tvOS/Info.plist"; 1249 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1250 | LIBRARY_SEARCH_PATHS = ( 1251 | "$(inherited)", 1252 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1253 | ); 1254 | OTHER_LDFLAGS = ( 1255 | "-ObjC", 1256 | "-lc++", 1257 | ); 1258 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Imagination-tvOS"; 1259 | PRODUCT_NAME = "$(TARGET_NAME)"; 1260 | SDKROOT = appletvos; 1261 | TARGETED_DEVICE_FAMILY = 3; 1262 | TVOS_DEPLOYMENT_TARGET = 9.2; 1263 | }; 1264 | name = Release; 1265 | }; 1266 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1267 | isa = XCBuildConfiguration; 1268 | buildSettings = { 1269 | BUNDLE_LOADER = "$(TEST_HOST)"; 1270 | CLANG_ANALYZER_NONNULL = YES; 1271 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1272 | CLANG_WARN_INFINITE_RECURSION = YES; 1273 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1274 | DEBUG_INFORMATION_FORMAT = dwarf; 1275 | ENABLE_TESTABILITY = YES; 1276 | GCC_NO_COMMON_BLOCKS = YES; 1277 | INFOPLIST_FILE = "Imagination-tvOSTests/Info.plist"; 1278 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1279 | LIBRARY_SEARCH_PATHS = ( 1280 | "$(inherited)", 1281 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1282 | ); 1283 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Imagination-tvOSTests"; 1284 | PRODUCT_NAME = "$(TARGET_NAME)"; 1285 | SDKROOT = appletvos; 1286 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Imagination-tvOS.app/Imagination-tvOS"; 1287 | TVOS_DEPLOYMENT_TARGET = 10.1; 1288 | }; 1289 | name = Debug; 1290 | }; 1291 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1292 | isa = XCBuildConfiguration; 1293 | buildSettings = { 1294 | BUNDLE_LOADER = "$(TEST_HOST)"; 1295 | CLANG_ANALYZER_NONNULL = YES; 1296 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1297 | CLANG_WARN_INFINITE_RECURSION = YES; 1298 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1299 | COPY_PHASE_STRIP = NO; 1300 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1301 | GCC_NO_COMMON_BLOCKS = YES; 1302 | INFOPLIST_FILE = "Imagination-tvOSTests/Info.plist"; 1303 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1304 | LIBRARY_SEARCH_PATHS = ( 1305 | "$(inherited)", 1306 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1307 | ); 1308 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Imagination-tvOSTests"; 1309 | PRODUCT_NAME = "$(TARGET_NAME)"; 1310 | SDKROOT = appletvos; 1311 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Imagination-tvOS.app/Imagination-tvOS"; 1312 | TVOS_DEPLOYMENT_TARGET = 10.1; 1313 | }; 1314 | name = Release; 1315 | }; 1316 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1317 | isa = XCBuildConfiguration; 1318 | buildSettings = { 1319 | ALWAYS_SEARCH_USER_PATHS = NO; 1320 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1321 | CLANG_CXX_LIBRARY = "libc++"; 1322 | CLANG_ENABLE_MODULES = YES; 1323 | CLANG_ENABLE_OBJC_ARC = YES; 1324 | CLANG_WARN_BOOL_CONVERSION = YES; 1325 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1326 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1327 | CLANG_WARN_EMPTY_BODY = YES; 1328 | CLANG_WARN_ENUM_CONVERSION = YES; 1329 | CLANG_WARN_INT_CONVERSION = YES; 1330 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1331 | CLANG_WARN_UNREACHABLE_CODE = YES; 1332 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1333 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1334 | COPY_PHASE_STRIP = NO; 1335 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1336 | GCC_C_LANGUAGE_STANDARD = gnu99; 1337 | GCC_DYNAMIC_NO_PIC = NO; 1338 | GCC_OPTIMIZATION_LEVEL = 0; 1339 | GCC_PREPROCESSOR_DEFINITIONS = ( 1340 | "DEBUG=1", 1341 | "$(inherited)", 1342 | ); 1343 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1344 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1345 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1346 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1347 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1348 | GCC_WARN_UNUSED_FUNCTION = YES; 1349 | GCC_WARN_UNUSED_VARIABLE = YES; 1350 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1351 | MTL_ENABLE_DEBUG_INFO = YES; 1352 | ONLY_ACTIVE_ARCH = YES; 1353 | SDKROOT = iphoneos; 1354 | }; 1355 | name = Debug; 1356 | }; 1357 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1358 | isa = XCBuildConfiguration; 1359 | buildSettings = { 1360 | ALWAYS_SEARCH_USER_PATHS = NO; 1361 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1362 | CLANG_CXX_LIBRARY = "libc++"; 1363 | CLANG_ENABLE_MODULES = YES; 1364 | CLANG_ENABLE_OBJC_ARC = YES; 1365 | CLANG_WARN_BOOL_CONVERSION = YES; 1366 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1367 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1368 | CLANG_WARN_EMPTY_BODY = YES; 1369 | CLANG_WARN_ENUM_CONVERSION = YES; 1370 | CLANG_WARN_INT_CONVERSION = YES; 1371 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1372 | CLANG_WARN_UNREACHABLE_CODE = YES; 1373 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1374 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1375 | COPY_PHASE_STRIP = YES; 1376 | ENABLE_NS_ASSERTIONS = NO; 1377 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1378 | GCC_C_LANGUAGE_STANDARD = gnu99; 1379 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1380 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1381 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1382 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1383 | GCC_WARN_UNUSED_FUNCTION = YES; 1384 | GCC_WARN_UNUSED_VARIABLE = YES; 1385 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1386 | MTL_ENABLE_DEBUG_INFO = NO; 1387 | SDKROOT = iphoneos; 1388 | VALIDATE_PRODUCT = YES; 1389 | }; 1390 | name = Release; 1391 | }; 1392 | /* End XCBuildConfiguration section */ 1393 | 1394 | /* Begin XCConfigurationList section */ 1395 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ImaginationTests" */ = { 1396 | isa = XCConfigurationList; 1397 | buildConfigurations = ( 1398 | 00E356F61AD99517003FC87E /* Debug */, 1399 | 00E356F71AD99517003FC87E /* Release */, 1400 | ); 1401 | defaultConfigurationIsVisible = 0; 1402 | defaultConfigurationName = Release; 1403 | }; 1404 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Imagination" */ = { 1405 | isa = XCConfigurationList; 1406 | buildConfigurations = ( 1407 | 13B07F941A680F5B00A75B9A /* Debug */, 1408 | 13B07F951A680F5B00A75B9A /* Release */, 1409 | ); 1410 | defaultConfigurationIsVisible = 0; 1411 | defaultConfigurationName = Release; 1412 | }; 1413 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Imagination-tvOS" */ = { 1414 | isa = XCConfigurationList; 1415 | buildConfigurations = ( 1416 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1417 | 2D02E4981E0B4A5E006451C7 /* Release */, 1418 | ); 1419 | defaultConfigurationIsVisible = 0; 1420 | defaultConfigurationName = Release; 1421 | }; 1422 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Imagination-tvOSTests" */ = { 1423 | isa = XCConfigurationList; 1424 | buildConfigurations = ( 1425 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1426 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1427 | ); 1428 | defaultConfigurationIsVisible = 0; 1429 | defaultConfigurationName = Release; 1430 | }; 1431 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Imagination" */ = { 1432 | isa = XCConfigurationList; 1433 | buildConfigurations = ( 1434 | 83CBBA201A601CBA00E9B192 /* Debug */, 1435 | 83CBBA211A601CBA00E9B192 /* Release */, 1436 | ); 1437 | defaultConfigurationIsVisible = 0; 1438 | defaultConfigurationName = Release; 1439 | }; 1440 | /* End XCConfigurationList section */ 1441 | }; 1442 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1443 | } 1444 | -------------------------------------------------------------------------------- /ios/Imagination.xcodeproj/xcshareddata/xcschemes/Imagination-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/Imagination.xcodeproj/xcshareddata/xcschemes/Imagination.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/Imagination/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/Imagination/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"Imagination" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /ios/Imagination/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/Imagination/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "size" : "29x29", 15 | "idiom" : "iphone", 16 | "filename" : "Icon-App-60x60@2x.png", 17 | "scale" : "2x" 18 | }, 19 | { 20 | "size" : "29x29", 21 | "idiom" : "iphone", 22 | "filename" : "Icon-App-60x60@3x.png", 23 | "scale" : "3x" 24 | }, 25 | { 26 | "size" : "40x40", 27 | "idiom" : "iphone", 28 | "filename" : "Icon-App-40x40@2x.png", 29 | "scale" : "2x" 30 | }, 31 | { 32 | "size" : "40x40", 33 | "idiom" : "iphone", 34 | "filename" : "Icon-App-40x40@3x.png", 35 | "scale" : "3x" 36 | }, 37 | { 38 | "idiom" : "iphone", 39 | "size" : "60x60", 40 | "scale" : "2x" 41 | }, 42 | { 43 | "idiom" : "iphone", 44 | "size" : "60x60", 45 | "scale" : "3x" 46 | } 47 | ], 48 | "info" : { 49 | "version" : 1, 50 | "author" : "xcode" 51 | } 52 | } -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/ios/Imagination/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/ios/Imagination/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/ios/Imagination/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/ios/Imagination/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "extent": "full-screen", 5 | "idiom": "iphone", 6 | "filename": "Default-568h@2x.png", 7 | "minimum-system-version": "7.0", 8 | "orientation": "portrait", 9 | "scale": "2x", 10 | "subtype": "retina4" 11 | }, 12 | { 13 | "extent": "full-screen", 14 | "idiom": "iphone", 15 | "filename": "Default-667h@2x.png", 16 | "minimum-system-version": "8.0", 17 | "orientation": "portrait", 18 | "scale": "2x", 19 | "subtype": "667h" 20 | }, 21 | { 22 | "extent": "full-screen", 23 | "idiom": "iphone", 24 | "filename": "Default-Portrait-736h@3x.png", 25 | "minimum-system-version": "8.0", 26 | "orientation": "portrait", 27 | "scale": "3x", 28 | "subtype": "736h" 29 | }, 30 | { 31 | "extent": "full-screen", 32 | "idiom": "iphone", 33 | "filename": "Default@2x.png", 34 | "minimum-system-version": "7.0", 35 | "orientation": "portrait", 36 | "scale": "2x" 37 | } 38 | ], 39 | "info": { 40 | "version": 1, 41 | "author": "xcode" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/ios/Imagination/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/ios/Imagination/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/LaunchImage.launchimage/Default-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/ios/Imagination/Images.xcassets/LaunchImage.launchimage/Default-Portrait-736h@3x.png -------------------------------------------------------------------------------- /ios/Imagination/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matzielab/imagination-react-native/00264cae5a1ae2f584cf2f73e4e21bc8d33d9914/ios/Imagination/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /ios/Imagination/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | NSAppTransportSecurity 26 | 27 | NSExceptionDomains 28 | 29 | localhost 30 | 31 | NSExceptionAllowsInsecureHTTPLoads 32 | 33 | 34 | 35 | 36 | NSLocationWhenInUseUsageDescription 37 | 38 | UILaunchStoryboardName 39 | LaunchScreen 40 | UIRequiredDeviceCapabilities 41 | 42 | armv7 43 | 44 | UISupportedInterfaceOrientations 45 | 46 | UIInterfaceOrientationPortrait 47 | 48 | UIViewControllerBasedStatusBarAppearance 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /ios/Imagination/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ios/ImaginationTests/ImaginationTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface ImaginationTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation ImaginationTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /ios/ImaginationTests/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 | -------------------------------------------------------------------------------- /libs/Artworks.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import {circut, abbeyRoad, smalltalk, opacityDots, sky} from '../libs/Images' 3 | 4 | let Artworks = [ 5 | { 6 | image: circut, 7 | title: 'Circutry', 8 | artist: 'Matzie', 9 | description: 'By cutting some parts of an image out, we can let the changing color shine through, adding to the visual aspects of graphics.\n\nThe illustration represents the good that may come out of technology.' 10 | }, 11 | { 12 | image: smalltalk, 13 | title: 'Small talk', 14 | artist: 'Matzie', 15 | description: 'Most times people have different views of the world and are equally excited to talk about their views. Often enough they are talking and feeling the same things about different subjects.\n\nWe all just want to do good.' 16 | }, 17 | { 18 | image: opacityDots, 19 | title: 'Dotpacity', 20 | artist: 'Matzie', 21 | description: 'Opacity is a perfect way to make the color changes only shine through just enough to affect the motive perfectly.\n\nThe illustration represents change.' 22 | }, 23 | { 24 | image: sky, 25 | title: 'Sky high', 26 | artist: 'Matzie', 27 | description: 'The smell in the air, the temperature of the wind, the color of the sun all affects us when walking round a city. Here the sky has a very subtle change but just enough to feel it.\n\nThe image represents the feeling of walking in a new city.' 28 | }, 29 | { 30 | image: abbeyRoad, 31 | title: 'Abbey Flow', 32 | artist: 'Matzie', 33 | description: 'The first thing i started doing with imagination was pop art. It mixes perfectly with real-world images and can add a perfect contrast to the ever so normal pictures.\n\nThe image represents forward thinking.' 34 | }, 35 | ] 36 | 37 | export default Artworks 38 | -------------------------------------------------------------------------------- /libs/Common.js: -------------------------------------------------------------------------------- 1 | import {Dimensions} from 'react-native' 2 | 3 | export let deviceWidth = () => { 4 | return Dimensions.get('window').width 5 | } 6 | -------------------------------------------------------------------------------- /libs/Images.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | export let logo = require('../images/logo.png') 3 | export let matzielabLogo = require('../images/matzielab_logo.png') 4 | export let circut = require('../images/peace_circut.png') 5 | export let abbeyRoad = require('../images/abbey_road.png') 6 | export let smalltalk = require('../images/smalltalk.png') 7 | export let opacityDots = require('../images/opacity_dots.png') 8 | export let sky = require('../images/sky.png') 9 | -------------------------------------------------------------------------------- /libs/LottieAnimations.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | export let square = require('../lottie/test_square.json') 3 | -------------------------------------------------------------------------------- /lottie/summergirl.json: -------------------------------------------------------------------------------- 1 | {"v":"4.6.7","fr":25,"ip":0,"op":125,"w":500,"h":500,"nm":"Comp 1","ddd":0,"assets":[{"id":"image_0","w":500,"h":500,"u":"images/","p":"img_0.png"},{"id":"image_1","w":500,"h":500,"u":"images/","p":"img_1.png"},{"id":"image_2","w":500,"h":500,"u":"images/","p":"img_2.png"}],"layers":[{"ddd":0,"ind":1,"ty":1,"nm":"Black Solid 1","ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":17,"s":[0],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":18,"s":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":37,"s":[100],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":38,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":39,"s":[0],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":40,"s":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":69,"s":[100],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":70,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":71,"s":[0],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":72,"s":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":90,"s":[100],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":91,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":92,"s":[0],"e":[100]},{"t":93}]},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[326,258.75,0],"e":[307,255.25,0],"to":[-3.16666674613953,-0.58333331346512,0],"ti":[3.16666674613953,0.58333331346512,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":28,"s":[307,255.25,0],"e":[307,255.25,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":46,"s":[307,255.25,0],"e":[332.75,259.25,0],"to":[4.29166650772095,0.66666668653488,0],"ti":[-7.16666650772095,-0.33333334326744,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":51,"s":[332.75,259.25,0],"e":[350,257.25,0],"to":[7.16666650772095,0.33333334326744,0],"ti":[-2.875,0.33333334326744,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":56,"s":[350,257.25,0],"e":[350,257.25,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":75,"s":[350,257.25,0],"e":[332.75,259.25,0],"to":[-2.875,0.33333334326744,0],"ti":[7.16666650772095,0.33333334326744,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":79,"s":[332.75,259.25,0],"e":[307,255.25,0],"to":[-7.16666650772095,-0.33333334326744,0],"ti":[4.29166650772095,0.66666668653488,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":85,"s":[307,255.25,0],"e":[307,255.25,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":99,"s":[307,255.25,0],"e":[326,258.75,0],"to":[3.16666674613953,0.58333331346512,0],"ti":[-3.16666674613953,-0.58333331346512,0]},{"t":104}]},"a":{"a":0,"k":[10,10,0]},"s":{"a":0,"k":[100,67.663,100]}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":106,"s":[{"i":[[3.904,0],[0,-3.904],[-3.904,0],[0,3.904]],"o":[[-3.904,0],[0,3.904],[3.904,0],[0,-3.904]],"v":[[7.069,0.5],[0,7.569],[6.069,16.117],[14.139,7.569]],"c":true}],"e":[{"i":[[3.904,0],[0,-3.904],[-3.904,0],[0,3.904]],"o":[[-3.904,0],[0,3.904],[3.904,0],[0,-3.904]],"v":[[7.069,0.5],[0.25,-2.776],[6.319,5.771],[14.389,-2.776]],"c":true}]},{"t":107}]},"o":{"a":0,"k":100},"x":{"a":0,"k":0},"nm":"Mask 1"}],"sw":20,"sh":20,"sc":"#000000","ip":0,"op":125,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":1,"nm":"Black Solid 1","ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":17,"s":[0],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":18,"s":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":37,"s":[100],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":38,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":39,"s":[0],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":40,"s":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":69,"s":[100],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":70,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":71,"s":[0],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":72,"s":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":90,"s":[100],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":91,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":92,"s":[0],"e":[100]},{"t":93}]},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[236.75,255.25,0],"e":[220.75,249,0],"to":[-2.66666674613953,-1.04166662693024,0],"ti":[2.66666674613953,1.04166662693024,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":28,"s":[220.75,249,0],"e":[220.75,249,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":46,"s":[220.75,249,0],"e":[247,257.25,0],"to":[4.375,1.375,0],"ti":[-6.125,-1.33333337306976,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":51,"s":[247,257.25,0],"e":[257.5,257,0],"to":[6.125,1.33333337306976,0],"ti":[-1.75,0.04166666790843,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":56,"s":[257.5,257,0],"e":[257.5,257,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":75,"s":[257.5,257,0],"e":[247,257.25,0],"to":[-1.75,0.04166666790843,0],"ti":[6.125,1.33333337306976,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":79,"s":[247,257.25,0],"e":[220.75,249,0],"to":[-6.125,-1.33333337306976,0],"ti":[4.375,1.375,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":85,"s":[220.75,249,0],"e":[220.75,249,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":99,"s":[220.75,249,0],"e":[236.75,255.25,0],"to":[2.66666674613953,1.04166662693024,0],"ti":[-2.66666674613953,-1.04166662693024,0]},{"t":104}]},"a":{"a":0,"k":[10,10,0]},"s":{"a":0,"k":[100,67.663,100]}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":106,"s":[{"i":[[3.904,0],[0,-3.904],[-3.904,0],[0,3.904]],"o":[[-3.904,0],[0,3.904],[3.904,0],[0,-3.904]],"v":[[7.069,0.5],[0,7.569],[6.069,16.117],[14.139,7.569]],"c":true}],"e":[{"i":[[3.904,0],[0,-3.904],[-3.904,0],[0,3.904]],"o":[[-3.904,0],[0,3.904],[3.904,0],[0,-3.904]],"v":[[7.069,0.5],[0,-0.19],[6.569,4.663],[14.139,-0.19]],"c":true}]},{"t":107}]},"o":{"a":0,"k":100},"x":{"a":0,"k":0},"nm":"Mask 1"}],"sw":20,"sh":20,"sc":"#000000","ip":0,"op":125,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":2,"nm":"flowers.png","cl":"png","refId":"image_0","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0]},"a":{"a":0,"k":[250,250,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":125,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":2,"nm":"face.png","cl":"png","refId":"image_1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0]},"a":{"a":0,"k":[250,250,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":125,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":2,"nm":"hair.png","cl":"png","refId":"image_2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0]},"a":{"a":0,"k":[250,250,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ef":[{"ty":5,"nm":"invert alpha","mn":"ADBE Pro Levels","ix":1,"en":1,"ef":[{"ty":7,"nm":"Channel:","mn":"ADBE Pro Levels-0001","ix":1,"v":{"a":0,"k":1}},{},{"ty":6,"nm":"RGB","mn":"ADBE Pro Levels-0003","ix":3,"v":0},{"ty":0,"nm":"Input Black","mn":"ADBE Pro Levels-0004","ix":4,"v":{"a":0,"k":0}},{"ty":0,"nm":"Input White","mn":"ADBE Pro Levels-0005","ix":5,"v":{"a":0,"k":1}},{"ty":0,"nm":"Gamma","mn":"ADBE Pro Levels-0006","ix":6,"v":{"a":0,"k":1}},{"ty":0,"nm":"Output Black","mn":"ADBE Pro Levels-0007","ix":7,"v":{"a":0,"k":2.86}},{"ty":0,"nm":"Output White","mn":"ADBE Pro Levels-0008","ix":8,"v":{"a":0,"k":1}},{"ty":6,"nm":"RGB","mn":"ADBE Pro Levels-0009","ix":9,"v":0},{"ty":6,"nm":"Red","mn":"ADBE Pro Levels-0010","ix":10,"v":0},{"ty":0,"nm":"Red Input Black","mn":"ADBE Pro Levels-0011","ix":11,"v":{"a":0,"k":0}},{"ty":0,"nm":"Red Input White","mn":"ADBE Pro Levels-0012","ix":12,"v":{"a":0,"k":1}},{"ty":0,"nm":"Red Gamma","mn":"ADBE Pro Levels-0013","ix":13,"v":{"a":0,"k":1}},{"ty":0,"nm":"Red Output Black","mn":"ADBE Pro Levels-0014","ix":14,"v":{"a":0,"k":0}},{"ty":0,"nm":"Red Output White","mn":"ADBE Pro Levels-0015","ix":15,"v":{"a":0,"k":1}},{"ty":6,"nm":"Red","mn":"ADBE Pro Levels-0016","ix":16,"v":0},{"ty":6,"nm":"Green","mn":"ADBE Pro Levels-0017","ix":17,"v":0},{"ty":0,"nm":"Green Input Black","mn":"ADBE Pro Levels-0018","ix":18,"v":{"a":0,"k":0}},{"ty":0,"nm":"Green Input White","mn":"ADBE Pro Levels-0019","ix":19,"v":{"a":0,"k":1}},{"ty":0,"nm":"Green Gamma","mn":"ADBE Pro Levels-0020","ix":20,"v":{"a":0,"k":1}},{"ty":0,"nm":"Green Output Black","mn":"ADBE Pro Levels-0021","ix":21,"v":{"a":0,"k":0}},{"ty":0,"nm":"Green Output White","mn":"ADBE Pro Levels-0022","ix":22,"v":{"a":0,"k":1}},{"ty":6,"nm":"Green","mn":"ADBE Pro Levels-0023","ix":23,"v":0},{"ty":6,"nm":"Blue","mn":"ADBE Pro Levels-0024","ix":24,"v":0},{"ty":0,"nm":"Blue Input Black","mn":"ADBE Pro Levels-0025","ix":25,"v":{"a":0,"k":0}},{"ty":0,"nm":"Blue Input White","mn":"ADBE Pro Levels-0026","ix":26,"v":{"a":0,"k":1}},{"ty":0,"nm":"Blue Gamma","mn":"ADBE Pro Levels-0027","ix":27,"v":{"a":0,"k":1}},{"ty":0,"nm":"Blue Output Black","mn":"ADBE Pro Levels-0028","ix":28,"v":{"a":0,"k":0}},{"ty":0,"nm":"Blue Output White","mn":"ADBE Pro Levels-0029","ix":29,"v":{"a":0,"k":1}},{"ty":6,"nm":"Blue","mn":"ADBE Pro Levels-0030","ix":30,"v":0},{"ty":6,"nm":"Alpha","mn":"ADBE Pro Levels-0031","ix":31,"v":0},{"ty":0,"nm":"Alpha Input Black","mn":"ADBE Pro Levels-0032","ix":32,"v":{"a":0,"k":0}},{"ty":0,"nm":"Alpha Input White","mn":"ADBE Pro Levels-0033","ix":33,"v":{"a":0,"k":1}},{"ty":0,"nm":"Alpha Gamma","mn":"ADBE Pro Levels-0034","ix":34,"v":{"a":0,"k":1}},{"ty":0,"nm":"Alpha Output Black","mn":"ADBE Pro Levels-0035","ix":35,"v":{"a":0,"k":1}},{"ty":0,"nm":"Alpha Output White","mn":"ADBE Pro Levels-0036","ix":36,"v":{"a":0,"k":0}},{"ty":6,"nm":"Alpha","mn":"ADBE Pro Levels-0037","ix":37,"v":0},{"ty":7,"nm":"Clip To Output Black","mn":"ADBE Pro Levels-0038","ix":38,"v":{"a":0,"k":1}},{"ty":7,"nm":"Clip To Output White","mn":"ADBE Pro Levels-0039","ix":39,"v":{"a":0,"k":1}}]},{"ty":5,"nm":"clip to object alpha","mn":"ADBE Set Matte2","ix":2,"en":1,"ef":[{"ty":10,"nm":"Take Matte From Layer","mn":"ADBE Set Matte2-0001","ix":1,"v":{"a":0,"k":5}},{"ty":7,"nm":"Use For Matte","mn":"ADBE Set Matte2-0002","ix":2,"v":{"a":0,"k":4}},{"ty":7,"nm":"Invert Matte","mn":"ADBE Set Matte2-0003","ix":3,"v":{"a":0,"k":1}},{"ty":7,"nm":"If Layer Sizes Differ","mn":"ADBE Set Matte2-0004","ix":4,"v":{"a":0,"k":1}},{"ty":7,"nm":"Composite Matte with Original","mn":"ADBE Set Matte2-0005","ix":5,"v":{"a":0,"k":1}},{"ty":7,"nm":"Premultiply Matte Layer","mn":"ADBE Set Matte2-0006","ix":6,"v":{"a":0,"k":1}}]},{"ty":5,"nm":"clean up edges","mn":"ADBE Pro Levels","ix":3,"en":1,"ef":[{"ty":7,"nm":"Channel:","mn":"ADBE Pro Levels-0001","ix":1,"v":{"a":0,"k":1}},{},{"ty":6,"nm":"RGB","mn":"ADBE Pro Levels-0003","ix":3,"v":0},{"ty":0,"nm":"Input Black","mn":"ADBE Pro Levels-0004","ix":4,"v":{"a":0,"k":0}},{"ty":0,"nm":"Input White","mn":"ADBE Pro Levels-0005","ix":5,"v":{"a":0,"k":1}},{"ty":0,"nm":"Gamma","mn":"ADBE Pro Levels-0006","ix":6,"v":{"a":0,"k":1}},{"ty":0,"nm":"Output Black","mn":"ADBE Pro Levels-0007","ix":7,"v":{"a":0,"k":0}},{"ty":0,"nm":"Output White","mn":"ADBE Pro Levels-0008","ix":8,"v":{"a":0,"k":1}},{"ty":6,"nm":"RGB","mn":"ADBE Pro Levels-0009","ix":9,"v":0},{"ty":6,"nm":"Red","mn":"ADBE Pro Levels-0010","ix":10,"v":0},{"ty":0,"nm":"Red Input Black","mn":"ADBE Pro Levels-0011","ix":11,"v":{"a":0,"k":0}},{"ty":0,"nm":"Red Input White","mn":"ADBE Pro Levels-0012","ix":12,"v":{"a":0,"k":1}},{"ty":0,"nm":"Red Gamma","mn":"ADBE Pro Levels-0013","ix":13,"v":{"a":0,"k":1}},{"ty":0,"nm":"Red Output Black","mn":"ADBE Pro Levels-0014","ix":14,"v":{"a":0,"k":0}},{"ty":0,"nm":"Red Output White","mn":"ADBE Pro Levels-0015","ix":15,"v":{"a":0,"k":1}},{"ty":6,"nm":"Red","mn":"ADBE Pro Levels-0016","ix":16,"v":0},{"ty":6,"nm":"Green","mn":"ADBE Pro Levels-0017","ix":17,"v":0},{"ty":0,"nm":"Green Input Black","mn":"ADBE Pro Levels-0018","ix":18,"v":{"a":0,"k":0}},{"ty":0,"nm":"Green Input White","mn":"ADBE Pro Levels-0019","ix":19,"v":{"a":0,"k":1}},{"ty":0,"nm":"Green Gamma","mn":"ADBE Pro Levels-0020","ix":20,"v":{"a":0,"k":1}},{"ty":0,"nm":"Green Output Black","mn":"ADBE Pro Levels-0021","ix":21,"v":{"a":0,"k":0}},{"ty":0,"nm":"Green Output White","mn":"ADBE Pro Levels-0022","ix":22,"v":{"a":0,"k":1}},{"ty":6,"nm":"Green","mn":"ADBE Pro Levels-0023","ix":23,"v":0},{"ty":6,"nm":"Blue","mn":"ADBE Pro Levels-0024","ix":24,"v":0},{"ty":0,"nm":"Blue Input Black","mn":"ADBE Pro Levels-0025","ix":25,"v":{"a":0,"k":0}},{"ty":0,"nm":"Blue Input White","mn":"ADBE Pro Levels-0026","ix":26,"v":{"a":0,"k":1}},{"ty":0,"nm":"Blue Gamma","mn":"ADBE Pro Levels-0027","ix":27,"v":{"a":0,"k":1}},{"ty":0,"nm":"Blue Output Black","mn":"ADBE Pro Levels-0028","ix":28,"v":{"a":0,"k":0}},{"ty":0,"nm":"Blue Output White","mn":"ADBE Pro Levels-0029","ix":29,"v":{"a":0,"k":1}},{"ty":6,"nm":"Blue","mn":"ADBE Pro Levels-0030","ix":30,"v":0},{"ty":6,"nm":"Alpha","mn":"ADBE Pro Levels-0031","ix":31,"v":0},{"ty":0,"nm":"Alpha Input Black","mn":"ADBE Pro Levels-0032","ix":32,"v":{"a":0,"k":0.255}},{"ty":0,"nm":"Alpha Input White","mn":"ADBE Pro Levels-0033","ix":33,"v":{"a":0,"k":1}},{"ty":0,"nm":"Alpha Gamma","mn":"ADBE Pro Levels-0034","ix":34,"v":{"a":0,"k":1}},{"ty":0,"nm":"Alpha Output Black","mn":"ADBE Pro Levels-0035","ix":35,"v":{"a":0,"k":0}},{"ty":0,"nm":"Alpha Output White","mn":"ADBE Pro Levels-0036","ix":36,"v":{"a":0,"k":1}},{"ty":6,"nm":"Alpha","mn":"ADBE Pro Levels-0037","ix":37,"v":0},{"ty":7,"nm":"Clip To Output Black","mn":"ADBE Pro Levels-0038","ix":38,"v":{"a":0,"k":1}},{"ty":7,"nm":"Clip To Output White","mn":"ADBE Pro Levels-0039","ix":39,"v":{"a":0,"k":1}}]}],"ip":0,"op":125,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":6,"ty":1,"nm":"White Solid 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0]},"a":{"a":0,"k":[250,250,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"n","pt":{"a":0,"k":{"i":[[0,-10],[-1,-4],[0,0],[0,0],[0,0],[8,1],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[5,-3],[0,0],[-0.5,-0.5],[0,0],[0,0],[-2,-6],[0,0],[1.5,-6.5],[4.5,-0.5],[0,0],[0,0],[0,0],[-0.5,10.5],[0,0],[0.5,6],[2,3],[3.5,-0.5],[0,-2.5],[-1,-3],[0,-2],[0,0],[0,0],[0,0],[1,-7.5],[3,-5],[5.5,-3],[0.5,0.5],[0,0],[-2.5,10],[-0.5,0],[0,0],[1.5,10],[0,0],[2.5,-3.25],[0,-0.25],[0,-2.5],[0,-0.25],[-4.25,-3.75],[-0.25,-1],[-0.25,-6],[1.25,-3.75],[0,0],[2,9.75],[0,0],[0,0],[0,0],[0,0],[0.5,3.25],[2.5,0.25],[0.75,-1.75],[-0.5,-3.25],[-8,-7],[0,0],[0,0],[1,-0.75],[5.25,-0.5],[0.75,5],[-2.75,5.25],[0,0],[0,0],[1,4],[1.75,0.25],[0.25,-5],[-3.25,-4],[-2,-3.5],[-0.647,-14.235],[0,-0.25],[0,-0.25],[0,0],[0,0],[3,-1.75],[2.25,0],[-0.25,18.5],[0,0],[0,0],[-0.75,7.5],[0.5,9.75],[3,4.75],[2,-1.75],[-1.5,-8.75],[-0.25,0],[0,0],[-0.5,-5.75],[1.5,-8.5],[10.25,3],[-0.5,7],[-5,4.25],[-4.25,7.75],[0,5.75],[1.25,0.5],[0,0]],"o":[[0,10],[1,4],[0,0],[0,0],[0,0],[-8,-1],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-5,3],[0,0],[0.5,0.5],[0,0],[0,0],[2,6],[0,0],[-1.5,6.5],[-4.5,0.5],[0,0],[0,0],[0,0],[0.5,-10.5],[0,0],[-0.5,-6],[-2,-3],[-3.5,0.5],[0,2.5],[1,3],[0,2],[0,0],[0,0],[0,0],[-1,7.5],[-3,5],[-5.5,3],[-0.5,-0.5],[0,0],[2.5,-10],[0.5,0],[0,0],[-1.5,-10],[0,0],[-2.5,3.25],[0,0.25],[0,2.5],[0,0.25],[4.25,3.75],[0.25,1],[0.25,6],[-1.25,3.75],[0,0],[-2,-9.75],[0,0],[0,0],[0,0],[0,0],[-0.5,-3.25],[-2.5,-0.25],[-0.75,1.75],[0.5,3.25],[8,7],[0,0],[0,0],[-1,0.75],[-5.25,0.5],[-0.75,-5],[2.75,-5.25],[0,0],[0,0],[-1,-4],[-1.75,-0.25],[-0.25,5],[3.25,4],[2,3.5],[1,22],[0,0.25],[0,0.25],[0,0],[0,0],[-3,1.75],[-2.25,0],[0.25,-18.5],[0,0],[0,0],[0.75,-7.5],[-0.5,-9.75],[-3,-4.75],[-2,1.75],[1.5,8.75],[0.25,0],[0,0],[0.5,5.75],[-1.5,8.5],[-10.25,-3],[0.5,-7],[5,-4.25],[4.25,-7.75],[0,-5.75],[-1.25,-0.5],[0,0]],"v":[[13,284],[14,310],[29.5,344.5],[45,377.5],[56,410],[48,453.5],[40.5,442.5],[42,423],[57,348.5],[83.5,267],[86.5,231],[82,218.5],[63,215.5],[54,229],[54,243],[65,261.5],[85.5,290.5],[98.5,321],[113.5,353.5],[118,400.5],[108,420],[97.5,408],[98,389],[105.5,354.5],[119,277],[128,213],[136.5,134],[126.5,93.5],[109.5,86],[98.5,102],[104,122],[113.5,143.5],[124,161.5],[150.5,207.5],[166.5,240],[182.5,297.5],[182,349.5],[170,374.5],[160.5,367.5],[160.5,344],[168.5,299],[186.5,230],[214,140.5],[218.75,65.75],[207,44.25],[194.5,46.25],[187.75,63],[185.75,75.5],[193.25,88.75],[225.75,119.75],[244.75,143.75],[256.75,171],[257.5,192.25],[241.75,200],[229.5,188],[233.25,165],[242.75,146.25],[263.25,112.5],[275.75,76],[279.25,51.75],[267.5,40.75],[259.5,46.75],[259.5,66],[279.25,99.5],[303.5,127.25],[313.75,147.75],[319,175.25],[306,186.75],[290.25,182.5],[296.25,159.5],[320.75,120],[341.75,84.75],[341.5,60],[329,51],[319.5,61.75],[327.5,87],[353,120],[373.75,182],[379.25,249.75],[382,305.75],[381,353.75],[376.25,376.5],[365.5,396.5],[357.75,403.5],[344,384.5],[361.25,320.75],[391.25,246.25],[409.25,193.25],[419.5,132.25],[414,95],[398,90.25],[393.25,109.75],[405,150],[423.5,201],[448.75,266.75],[451.75,305.5],[434,324],[423.5,299],[441,259.75],[462.25,217],[472.75,180.75],[465.25,168],[461.75,170.25]],"c":false}},"o":{"a":0,"k":100},"x":{"a":0,"k":0},"nm":"Mask 1"}],"ef":[{"ty":22,"nm":"Stroke","mn":"ADBE Stroke","ix":1,"en":1,"ef":[{"ty":10,"nm":"Path","mn":"ADBE Stroke-0001","ix":1,"v":{"a":0,"k":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Stroke-0010","ix":2,"v":{"a":0,"k":0}},{"ty":7,"nm":"Stroke Sequentially","mn":"ADBE Stroke-0011","ix":3,"v":{"a":0,"k":1}},{"ty":2,"nm":"Color","mn":"ADBE Stroke-0002","ix":4,"v":{"a":0,"k":[1,1,1,1]}},{"ty":0,"nm":"Brush Size","mn":"ADBE Stroke-0003","ix":5,"v":{"a":0,"k":13.4}},{"ty":0,"nm":"Brush Hardness","mn":"ADBE Stroke-0004","ix":6,"v":{"a":0,"k":0.75}},{"ty":0,"nm":"Opacity","mn":"ADBE Stroke-0005","ix":7,"v":{"a":0,"k":1}},{"ty":0,"nm":"Start","mn":"ADBE Stroke-0008","ix":8,"v":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[100]},{"t":124}]}},{"ty":0,"nm":"End","mn":"ADBE Stroke-0009","ix":9,"v":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[81]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":113,"s":[81],"e":[100]},{"t":124}]}},{"ty":7,"nm":"Spacing","mn":"ADBE Stroke-0006","ix":10,"v":{"a":0,"k":15}},{"ty":7,"nm":"Paint Style","mn":"ADBE Stroke-0007","ix":11,"v":{"a":0,"k":3}}]}],"sw":500,"sh":500,"sc":"#ffffff","ip":0,"op":125,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":7,"ty":1,"nm":"Royal Blue Solid 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0]},"a":{"a":0,"k":[250,250,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"sw":500,"sh":500,"sc":"#23b8f5","ip":0,"op":125,"st":0,"bm":0,"sr":1}]} -------------------------------------------------------------------------------- /lottie/test_square.json: -------------------------------------------------------------------------------- 1 | {"v":"4.6.7","fr":25,"ip":0,"op":25,"w":500,"h":500,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":1,"nm":"Orange Solid 1","ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[359]},{"t":25}]},"p":{"a":0,"k":[250,250,0]},"a":{"a":0,"k":[50,50,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[226,226,100],"e":[60,60,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":13,"s":[60,60,100],"e":[226,226,100]},{"t":25}]}},"ao":0,"sw":100,"sh":100,"sc":"#f58a36","ip":0,"op":25,"st":0,"bm":0,"sr":1}]} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Imagination", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest", 8 | "flow": "node_modules/.bin/flow" 9 | }, 10 | "dependencies": { 11 | "imagination-react-native": "1.1.6", 12 | "lottie-react-native": "1.1.1", 13 | "react": "~15.4.1", 14 | "react-native": "0.42.2", 15 | "react-native-swiper": "1.5.4", 16 | "react-redux": "5.0.3", 17 | "redux": "3.6.0" 18 | }, 19 | "devDependencies": { 20 | "babel-eslint": "7.2.3", 21 | "babel-jest": "19.0.0", 22 | "babel-preset-react-native": "1.9.1", 23 | "eslint": "3.19.0", 24 | "eslint-plugin-react": "7.0.1", 25 | "flow-bin": "0.38.0", 26 | "jest": "19.0.2", 27 | "react-test-renderer": "~15.4.1" 28 | }, 29 | "jest": { 30 | "preset": "react-native" 31 | } 32 | } 33 | --------------------------------------------------------------------------------