├── Example
├── .watchmanconfig
├── .gitattributes
├── .babelrc
├── app.json
├── android
│ ├── settings.gradle
│ ├── app
│ │ ├── src
│ │ │ └── main
│ │ │ │ ├── res
│ │ │ │ ├── values
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── styles.xml
│ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ └── mipmap-xxxhdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ ├── MainActivity.java
│ │ │ │ │ └── MainApplication.java
│ │ │ │ └── AndroidManifest.xml
│ │ ├── proguard-rules.pro
│ │ ├── BUCK
│ │ └── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── keystores
│ │ ├── debug.keystore.properties
│ │ └── BUCK
│ ├── gradle.properties
│ ├── build.gradle
│ ├── gradlew.bat
│ └── gradlew
├── assets
│ ├── coin.png
│ └── star.png
├── .prettierrc
├── ios
│ ├── Example
│ │ ├── Images.xcassets
│ │ │ ├── Contents.json
│ │ │ └── AppIcon.appiconset
│ │ │ │ └── Contents.json
│ │ ├── AppDelegate.h
│ │ ├── main.m
│ │ ├── AppDelegate.m
│ │ ├── Info.plist
│ │ └── Base.lproj
│ │ │ └── LaunchScreen.xib
│ ├── ExampleTests
│ │ ├── Info.plist
│ │ └── ExampleTests.m
│ ├── Example-tvOSTests
│ │ └── Info.plist
│ ├── Example-tvOS
│ │ └── Info.plist
│ └── Example.xcodeproj
│ │ ├── xcshareddata
│ │ └── xcschemes
│ │ │ ├── Example.xcscheme
│ │ │ └── Example-tvOS.xcscheme
│ │ └── project.pbxproj
├── screenshosts
│ └── particles.gif
├── .buckconfig
├── index.js
├── package.json
├── .gitignore
├── animations
│ └── Spin.js
├── App.js
├── examples
│ ├── CoinsExplosion.js
│ ├── StarsToTarget.js
│ └── Confetti.js
└── .flowconfig
├── .babelrc
├── .gitignore
├── .npmignore
├── .prettierrc
├── __tests__
├── __snapshots__
│ ├── Emitter.spec.js.snap
│ └── BustAndMoveEmitter.spec.js.snap
├── BustAndMoveEmitter.spec.js
└── Emitter.spec.js
├── entities
├── Vector.js
└── Particle.js
├── index.js
├── .flowconfig
├── utils
├── move-particle.js
├── __tests__
│ ├── emit-particle.spec.js
│ ├── move-particle.spec.js
│ └── vector-helpers.spec.js
├── vector-helpers.js
└── emit-particle.js
├── package.json
├── README.md
├── AnimatedParticle.js
├── Emitter.js
├── BurstAndMoveEmitter.js
└── BaseEmitter.js
/Example/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/Example/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["react-native"]
3 | }
4 |
--------------------------------------------------------------------------------
/Example/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["react-native"]
3 | }
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 | node_modules
3 | coverage
4 |
5 | yarn-error.log
6 | .DS_Store
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | .idea
2 | Example
3 | coverage
4 | README.md
5 | .babelrc
6 | .prettierrc
--------------------------------------------------------------------------------
/Example/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Example",
3 | "displayName": "Example"
4 | }
--------------------------------------------------------------------------------
/Example/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'Example'
2 |
3 | include ':app'
4 |
--------------------------------------------------------------------------------
/Example/assets/coin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/assets/coin.png
--------------------------------------------------------------------------------
/Example/assets/star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/assets/star.png
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 80,
3 | "tabWidth": 2,
4 | "singleQuote": true,
5 | "trailingComma": "none"
6 | }
7 |
--------------------------------------------------------------------------------
/Example/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 80,
3 | "tabWidth": 2,
4 | "singleQuote": true,
5 | "trailingComma": "none"
6 | }
7 |
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Example
3 |
4 |
--------------------------------------------------------------------------------
/Example/ios/Example/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/Example/screenshosts/particles.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/screenshosts/particles.gif
--------------------------------------------------------------------------------
/Example/.buckconfig:
--------------------------------------------------------------------------------
1 |
2 | [android]
3 | target = Google Inc.:Google APIs:23
4 |
5 | [maven_repositories]
6 | central = https://repo1.maven.org/maven2
7 |
--------------------------------------------------------------------------------
/Example/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Example/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 |
--------------------------------------------------------------------------------
/__tests__/__snapshots__/Emitter.spec.js.snap:
--------------------------------------------------------------------------------
1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
2 |
3 | exports[`Emitter should consider child prop as a particle 1`] = `null`;
4 |
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/__tests__/__snapshots__/BustAndMoveEmitter.spec.js.snap:
--------------------------------------------------------------------------------
1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
2 |
3 | exports[`BostAndMoveEmitter should consider child prop as a particle 1`] = `null`;
4 |
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nanndoj/react-native-particles/HEAD/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Example/android/keystores/BUCK:
--------------------------------------------------------------------------------
1 | keystore(
2 | name = "debug",
3 | properties = "debug.keystore.properties",
4 | store = "debug.keystore",
5 | visibility = [
6 | "PUBLIC",
7 | ],
8 | )
9 |
--------------------------------------------------------------------------------
/entities/Vector.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | export type VectorType = {
3 | x: number,
4 | y: number
5 | };
6 |
7 | // Constructor helper
8 | export const Vector = (x: number = 0, y: number = 0): VectorType => ({ x, y });
9 |
--------------------------------------------------------------------------------
/Example/index.js:
--------------------------------------------------------------------------------
1 | /** @format */
2 |
3 | import { AppRegistry } from 'react-native';
4 | import App from './App';
5 | import { name as appName } from './app.json';
6 |
7 | AppRegistry.registerComponent(appName, () => App);
8 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | export { default as Emitter } from './Emitter';
3 | export { default as BurstAndMoveEmitter } from './BurstAndMoveEmitter';
4 |
5 | export { Vector } from './entities/Vector';
6 | export type { VectorType } from './entities/Vector';
7 |
--------------------------------------------------------------------------------
/Example/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Example/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-3.5.1-all.zip
6 |
--------------------------------------------------------------------------------
/.flowconfig:
--------------------------------------------------------------------------------
1 | [ignore]
2 | ; Ignore metro
3 | .*/node_modules/.*
4 |
5 | [include]
6 |
7 | [libs]
8 | node_modules/react-native/Libraries/react-native/react-native-interface.js
9 | node_modules/react-native/flow/
10 | node_modules/react-native/flow-github/
11 |
12 | [options]
13 | emoji=true
14 |
15 | module.system=haste
16 | module.system.haste.use_name_reducers=true
17 |
18 | [version]
19 | ^0.75.0
20 |
--------------------------------------------------------------------------------
/Example/ios/Example/AppDelegate.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 |
10 | @interface AppDelegate : UIResponder
11 |
12 | @property (nonatomic, strong) UIWindow *window;
13 |
14 | @end
15 |
--------------------------------------------------------------------------------
/Example/ios/Example/main.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 |
10 | #import "AppDelegate.h"
11 |
12 | int main(int argc, char * argv[]) {
13 | @autoreleasepool {
14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/Example/android/app/src/main/java/com/example/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.example;
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 "Example";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/entities/Particle.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import { Vector } from './Vector';
3 | import type { VectorType } from './Vector';
4 |
5 | export type ParticleType = {
6 | position: VectorType,
7 | velocity: VectorType,
8 | acceleration: VectorType,
9 | id: number
10 | };
11 |
12 | export const Particle = (
13 | velocity: VectorType = Vector(0, 0),
14 | acceleration: VectorType = Vector(0, 0),
15 | id: number,
16 | position?: VectorType = Vector(0, 0)
17 | ): ParticleType => ({
18 | position,
19 | velocity,
20 | acceleration,
21 | id
22 | });
23 |
--------------------------------------------------------------------------------
/utils/move-particle.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import { Particle } from './../entities/Particle';
3 | import { add } from './vector-helpers';
4 |
5 | import type { ParticleType } from './../entities/Particle';
6 |
7 | export const move = (particle: ParticleType): ParticleType => {
8 | // Calculate the velocity by adding acceleration
9 | const velocity = add(particle.velocity, particle.acceleration);
10 |
11 | // Calculate the new position
12 | const position = add(particle.position, velocity);
13 |
14 | return Particle(velocity, particle.acceleration, particle.id, position);
15 | };
16 |
17 | export default Particle;
18 |
--------------------------------------------------------------------------------
/Example/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Example",
3 | "version": "0.0.1",
4 | "private": true,
5 | "scripts": {
6 | "start": "node node_modules/react-native/local-cli/cli.js start",
7 | "test": "jest"
8 | },
9 | "dependencies": {
10 | "react": "16.4.1",
11 | "react-native": "0.56.0",
12 | "react-native-particles": "nanndoj/react-native-particles#master"
13 | },
14 | "devDependencies": {
15 | "babel-jest": "23.4.2",
16 | "babel-preset-react-native": "^5",
17 | "jest": "23.4.2",
18 | "react-test-renderer": "16.4.1"
19 | },
20 | "jest": {
21 | "preset": "react-native"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/Example/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 |
--------------------------------------------------------------------------------
/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "xcode"
37 | }
38 | }
--------------------------------------------------------------------------------
/Example/ios/ExampleTests/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 |
--------------------------------------------------------------------------------
/Example/ios/Example-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 |
--------------------------------------------------------------------------------
/Example/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 |
--------------------------------------------------------------------------------
/utils/__tests__/emit-particle.spec.js:
--------------------------------------------------------------------------------
1 | //@flow
2 |
3 | import emitParticle from '../emit-particle';
4 | import { Vector } from '../../entities/Vector';
5 |
6 | describe('Emit Particles', () => {
7 | it('should emmit new particles', () => {
8 | const particle = emitParticle(
9 | Vector(0, 0), // Initial position
10 | Vector(2, 2), // Velocity
11 | null, // Spread angle (in radians)
12 | Vector(1, 1), // Acceleration
13 | 1 // Unique particle id
14 | );
15 | expect(particle).toBeTruthy();
16 | });
17 |
18 | it('The particle velocity should be randomized along the spread angle ', () => {
19 | const velocity = Vector(2, 2);
20 |
21 | const particle = emitParticle(
22 | Vector(0, 0), // Initial position
23 | velocity, // Velocity
24 | 1.2, // Spread angle (in radians)
25 | Vector(1, 1), // Acceleration
26 | 1 // Unique particle id
27 | );
28 | expect(particle.velocity).not.toEqual(velocity);
29 | });
30 | });
31 |
--------------------------------------------------------------------------------
/utils/vector-helpers.js:
--------------------------------------------------------------------------------
1 | // Gets the length of the vector
2 | import { Vector } from './../entities/Vector';
3 | import type { VectorType } from './../entities/Vector';
4 |
5 | export const getMagnitude = (vector: VectorType): number =>
6 | Math.sqrt(vector.x * vector.x + vector.y * vector.y);
7 |
8 | // Add a vector to another
9 | export const add = (vectorA: VectorType, vectorB: VectorType): VectorType =>
10 | Vector(vectorA.x + vectorB.x, vectorA.y + vectorB.y);
11 |
12 | // Gets the angle accounting for the quadrant we're in
13 | export const getAngle = (vector: VectorType): number =>
14 | Math.atan2(vector.y, vector.x);
15 |
16 | // Allows us to get a new vector from angle and magnitude
17 | export const fromAngle = (angle: number, magnitude: number): VectorType =>
18 | Vector(magnitude * Math.cos(angle), magnitude * Math.sin(angle));
19 |
20 | export const toRadians = (angle: number): number => angle * (Math.PI / 180);
21 | export const toDegrees = (radians: number): number => (radians * 180) / Math.PI;
22 |
--------------------------------------------------------------------------------
/Example/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Xcode
6 | #
7 | build/
8 | *.pbxuser
9 | !default.pbxuser
10 | *.mode1v3
11 | !default.mode1v3
12 | *.mode2v3
13 | !default.mode2v3
14 | *.perspectivev3
15 | !default.perspectivev3
16 | xcuserdata
17 | *.xccheckout
18 | *.moved-aside
19 | DerivedData
20 | *.hmap
21 | *.ipa
22 | *.xcuserstate
23 | project.xcworkspace
24 |
25 | # Android/IntelliJ
26 | #
27 | build/
28 | .idea
29 | .gradle
30 | local.properties
31 | *.iml
32 |
33 | # node.js
34 | #
35 | node_modules/
36 | npm-debug.log
37 | yarn-error.log
38 |
39 | # BUCK
40 | buck-out/
41 | \.buckd/
42 | *.keystore
43 |
44 | # fastlane
45 | #
46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47 | # screenshots whenever they are needed.
48 | # For more information about the recommended setup visit:
49 | # https://docs.fastlane.tools/best-practices/source-control/
50 |
51 | */fastlane/report.xml
52 | */fastlane/Preview.html
53 | */fastlane/screenshots
54 |
55 | # Bundle artifact
56 | *.jsbundle
57 |
--------------------------------------------------------------------------------
/utils/emit-particle.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import { fromAngle, getAngle, getMagnitude } from './vector-helpers';
3 | import { Particle } from './../entities/Particle';
4 |
5 | import type { VectorType } from './../entities/Vector';
6 | import type { ParticleType } from './../entities/Particle';
7 |
8 | const emitParticle = function(
9 | initPosition: VectorType,
10 | velocity: VectorType,
11 | spread: number = Math.PI / 32,
12 | acceleration: VectorType,
13 | id: number
14 | ): ParticleType {
15 | // Use an angle randomized over the spread so we have more of a "spray"
16 | const angle = getAngle(velocity) + spread - Math.random() * spread * 2;
17 |
18 | // The magnitude of the emitter's velocity
19 | const magnitude = getMagnitude(velocity);
20 |
21 | // New velocity based off of the calculated angle and magnitude
22 | const newVelocity = fromAngle(angle, magnitude);
23 |
24 | // return our new Particle in the initialPosition without acceleration
25 | return Particle(newVelocity, acceleration, id, initPosition);
26 | };
27 |
28 | export default emitParticle;
29 |
--------------------------------------------------------------------------------
/Example/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
13 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/Example/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 | maven {
7 | url 'https://maven.google.com/'
8 | name 'Google'
9 | }
10 | }
11 | dependencies {
12 | classpath 'com.android.tools.build:gradle:2.3.3'
13 |
14 | // NOTE: Do not place your application dependencies here; they belong
15 | // in the individual module build.gradle files
16 | }
17 | }
18 |
19 | allprojects {
20 | repositories {
21 | mavenLocal()
22 | jcenter()
23 | maven {
24 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
25 | url "$rootDir/../node_modules/react-native/android"
26 | }
27 | maven {
28 | url 'https://maven.google.com/'
29 | name 'Google'
30 | }
31 | }
32 | }
33 |
34 | ext {
35 | buildToolsVersion = "26.0.3"
36 | minSdkVersion = 16
37 | compileSdkVersion = 26
38 | targetSdkVersion = 26
39 | supportLibVersion = "26.1.0"
40 | }
41 |
--------------------------------------------------------------------------------
/Example/android/app/src/main/java/com/example/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.example;
2 |
3 | import android.app.Application;
4 |
5 | import com.facebook.react.ReactApplication;
6 | import com.facebook.react.ReactNativeHost;
7 | import com.facebook.react.ReactPackage;
8 | import com.facebook.react.shell.MainReactPackage;
9 | import com.facebook.soloader.SoLoader;
10 |
11 | import java.util.Arrays;
12 | import java.util.List;
13 |
14 | public class MainApplication extends Application implements ReactApplication {
15 |
16 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
17 | @Override
18 | public boolean getUseDeveloperSupport() {
19 | return BuildConfig.DEBUG;
20 | }
21 |
22 | @Override
23 | protected List getPackages() {
24 | return Arrays.asList(
25 | new MainReactPackage()
26 | );
27 | }
28 |
29 | @Override
30 | protected String getJSMainModuleName() {
31 | return "index";
32 | }
33 | };
34 |
35 | @Override
36 | public ReactNativeHost getReactNativeHost() {
37 | return mReactNativeHost;
38 | }
39 |
40 | @Override
41 | public void onCreate() {
42 | super.onCreate();
43 | SoLoader.init(this, /* native exopackage */ false);
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/Example/animations/Spin.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { StyleSheet, Animated, Easing } from 'react-native';
3 |
4 | export default class Spin extends Component {
5 | constructor(props) {
6 | super(props);
7 | this.state = {
8 | animatedValue: new Animated.Value(0)
9 | };
10 | }
11 | render() {
12 | const { children, counterClockWise } = this.props;
13 | return (
14 |
28 | {children}
29 |
30 | );
31 | }
32 |
33 | componentDidMount() {
34 | const { animatedValue } = this.state;
35 | Animated.loop(
36 | Animated.sequence([
37 | Animated.timing(animatedValue, {
38 | toValue: 1,
39 | duration: this.props.duration,
40 | useNativeDriver: true
41 | }),
42 | Animated.timing(animatedValue, {
43 | toValue: 0,
44 | duration: 0,
45 | useNativeDriver: true
46 | })
47 | ])
48 | ).start();
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/Example/ios/Example/AppDelegate.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import "AppDelegate.h"
9 |
10 | #import
11 | #import
12 |
13 | @implementation AppDelegate
14 |
15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
16 | {
17 | NSURL *jsCodeLocation;
18 |
19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
20 |
21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
22 | moduleName:@"Example"
23 | initialProperties:nil
24 | launchOptions:launchOptions];
25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
26 |
27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
28 | UIViewController *rootViewController = [UIViewController new];
29 | rootViewController.view = rootView;
30 | self.window.rootViewController = rootViewController;
31 | [self.window makeKeyAndVisible];
32 | return YES;
33 | }
34 |
35 | @end
36 |
--------------------------------------------------------------------------------
/Example/App.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Sample React Native App
3 | * https://github.com/facebook/react-native
4 | *
5 | * @format
6 | * @flow
7 | */
8 |
9 | import React, { Component } from 'react';
10 | import { Button, StyleSheet, View } from 'react-native';
11 |
12 | import CoinsExplosion from './examples/CoinsExplosion';
13 | import Confetti from './examples/Confetti';
14 | import StarsToTarget from './examples/StarsToTarget';
15 |
16 | type Props = {};
17 | export default class App extends Component {
18 | render() {
19 | return (
20 |
21 |
38 | );
39 | }
40 | }
41 |
42 | const styles = StyleSheet.create({
43 | container: {
44 | flex: 1,
45 | justifyContent: 'center',
46 | alignItems: 'center'
47 | }
48 | });
49 |
--------------------------------------------------------------------------------
/Example/examples/CoinsExplosion.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Sample React Native App
3 | * https://github.com/facebook/react-native
4 | *
5 | * @format
6 | * @flow
7 | */
8 |
9 | import React, { Component } from 'react';
10 | import { StyleSheet, View, Dimensions, Image } from 'react-native';
11 |
12 | import { Emitter } from 'react-native-particles';
13 |
14 | const { width, height } = Dimensions.get('window');
15 |
16 | type Props = {};
17 | export default class CoinsExplosion extends Component {
18 | render() {
19 | return (
20 | (this.emitter = emitter)}
36 | >
37 |
42 |
43 | );
44 | }
45 |
46 | start() {
47 | this.emitter.start();
48 | }
49 |
50 | stopEmitting() {
51 | this.emitter.stopEmitting();
52 | }
53 | }
54 |
55 | const styles = StyleSheet.create({
56 | coin: {
57 | width: 24,
58 | height: 24
59 | }
60 | });
61 |
--------------------------------------------------------------------------------
/Example/examples/StarsToTarget.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Sample React Native App
3 | * https://github.com/facebook/react-native
4 | *
5 | * @format
6 | * @flow
7 | */
8 |
9 | import React, { Component } from 'react';
10 | import { Dimensions, Image, StyleSheet } from 'react-native';
11 | import { Vector } from 'react-native-particles/';
12 | import { BurstAndMoveEmitter } from 'react-native-particles';
13 |
14 | const { width, height } = Dimensions.get('window');
15 |
16 | type Props = {};
17 | export default class StarsToTarget extends Component {
18 | render() {
19 | return (
20 | (this.emitter = emitter)}
30 | radius={100}
31 | >
32 |
37 |
38 | );
39 | }
40 |
41 | start() {
42 | this.emitter.start();
43 | }
44 |
45 | stopEmitting() {
46 | this.emitter.stopEmitting();
47 | }
48 | }
49 |
50 | const styles = StyleSheet.create({
51 | particleContainer: {
52 | elevation: 2,
53 | zIndex: 2
54 | },
55 | star: {
56 | width: 24,
57 | height: 24
58 | }
59 | });
60 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-native-particles",
3 | "version": "0.0.7",
4 | "description": "Declarative particle system for react native",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "jest",
8 | "prettier": "prettier --config --write .prettierrc \"{,!(node_modules)/**/}*.{js,jsx}\"",
9 | "test:coverage": "npm run test -- --coverage",
10 | "test:watch": "npm run test -- --watch"
11 | },
12 | "repository": {
13 | "type": "git",
14 | "url": "git+https://github.com/nanndoj/react-native-particles.git"
15 | },
16 | "keywords": [
17 | "particles",
18 | "emitter",
19 | "react-native",
20 | "declarative",
21 | "performant",
22 | "confetti",
23 | "fireworks"
24 | ],
25 | "author": "Fernando Santos ",
26 | "license": "MIT",
27 | "bugs": {
28 | "url": "https://github.com/nanndoj/react-native-particles/issues"
29 | },
30 | "homepage": "https://github.com/nanndoj/react-native-particles#readme",
31 | "dependencies": {
32 | "lodash.debounce": "^4.0.8"
33 | },
34 | "devDependencies": {
35 | "@babel/core": "^7.0.0-beta.55",
36 | "babel-jest": "^23.4.2",
37 | "babel-preset-react-native": "^4.0.0",
38 | "husky": "^1.0.0-rc.13",
39 | "jest": "^23.4.2",
40 | "prettier": "^1.14.0",
41 | "react": "^16.4.2",
42 | "react-native": "^0.56.0",
43 | "react-test-renderer": "^16.4.2"
44 | },
45 | "peerDependencies": {
46 | "react-native": ">=0.20.0"
47 | },
48 | "jest": {
49 | "preset": "react-native",
50 | "collectCoverageFrom": [
51 | "**/*.js"
52 | ],
53 | "modulePathIgnorePatterns": [
54 | "/Example"
55 | ]
56 | },
57 | "husky": {
58 | "hooks": {
59 | "pre-commit": "npm run prettier",
60 | "pre-push": "npm test"
61 | }
62 | }
63 | }
64 |
--------------------------------------------------------------------------------
/Example/ios/Example-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 |
--------------------------------------------------------------------------------
/Example/android/app/BUCK:
--------------------------------------------------------------------------------
1 | # To learn about Buck see [Docs](https://buckbuild.com/).
2 | # To run your application with Buck:
3 | # - install Buck
4 | # - `npm start` - to start the packager
5 | # - `cd android`
6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
8 | # - `buck install -r android/app` - compile, install and run application
9 | #
10 |
11 | lib_deps = []
12 |
13 | for jarfile in glob(['libs/*.jar']):
14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')]
15 | lib_deps.append(':' + name)
16 | prebuilt_jar(
17 | name = name,
18 | binary_jar = jarfile,
19 | )
20 |
21 | for aarfile in glob(['libs/*.aar']):
22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
23 | lib_deps.append(':' + name)
24 | android_prebuilt_aar(
25 | name = name,
26 | aar = aarfile,
27 | )
28 |
29 | android_library(
30 | name = "all-libs",
31 | exported_deps = lib_deps,
32 | )
33 |
34 | android_library(
35 | name = "app-code",
36 | srcs = glob([
37 | "src/main/java/**/*.java",
38 | ]),
39 | deps = [
40 | ":all-libs",
41 | ":build_config",
42 | ":res",
43 | ],
44 | )
45 |
46 | android_build_config(
47 | name = "build_config",
48 | package = "com.example",
49 | )
50 |
51 | android_resource(
52 | name = "res",
53 | package = "com.example",
54 | res = "src/main/res",
55 | )
56 |
57 | android_binary(
58 | name = "app",
59 | keystore = "//android/keystores:debug",
60 | manifest = "src/main/AndroidManifest.xml",
61 | package_type = "debug",
62 | deps = [
63 | ":app-code",
64 | ],
65 | )
66 |
--------------------------------------------------------------------------------
/Example/ios/Example/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | Example
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1
25 | LSRequiresIPhoneOS
26 |
27 | UILaunchStoryboardName
28 | LaunchScreen
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationPortrait
36 | UIInterfaceOrientationLandscapeLeft
37 | UIInterfaceOrientationLandscapeRight
38 |
39 | UIViewControllerBasedStatusBarAppearance
40 |
41 | NSLocationWhenInUseUsageDescription
42 |
43 | NSAppTransportSecurity
44 |
45 |
46 | NSExceptionDomains
47 |
48 | localhost
49 |
50 | NSExceptionAllowsInsecureHTTPLoads
51 |
52 |
53 |
54 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/utils/__tests__/move-particle.spec.js:
--------------------------------------------------------------------------------
1 | //@flow
2 |
3 | import { Vector } from '../../entities/Vector';
4 | import { Particle } from '../../entities/Particle';
5 | import { move } from '../move-particle';
6 |
7 | describe('Move Particles', () => {
8 | it('should calculate the new particle position by applying velocity', () => {
9 | const velocity = Vector(2, 3);
10 | const acceleration = Vector(2, 1);
11 | // The new velocity should be v(4,4) after applying the acceleration
12 | const position = Vector(3, 8);
13 |
14 | const particle = Particle(velocity, acceleration, 1, position);
15 |
16 | expect(move(particle).position).toEqual(Vector(7, 12));
17 | });
18 |
19 | it('should keep the same velocity when not accelerating', () => {
20 | const velocity = Vector(2, 3);
21 | const acceleration = Vector(0, 0); // No acceleration
22 | const position = Vector(3, 8);
23 |
24 | const particle = Particle(velocity, acceleration, 1, position);
25 |
26 | expect(move(particle).velocity).toEqual(Vector(2, 3));
27 | });
28 |
29 | it('should increase the velocity when accelerating', () => {
30 | const velocity = Vector(2, 3);
31 | const acceleration = Vector(8, 4); // Accelerating
32 | const position = Vector(3, 8);
33 |
34 | const particle = Particle(velocity, acceleration, 1, position);
35 |
36 | expect(move(particle).velocity).toEqual(Vector(10, 7));
37 | });
38 |
39 | it('should not modify the original particle object', () => {
40 | const velocity = Vector(2, 3);
41 | const acceleration = Vector(8, 4); // Accelerating
42 | const position = Vector(3, 8);
43 |
44 | const particle = Particle(velocity, acceleration, 1, position);
45 |
46 | move(particle);
47 |
48 | expect(particle.position).toEqual(position);
49 | });
50 |
51 | it('should reduce the velocity when breaking', () => {
52 | const velocity = Vector(2, 3);
53 | const acceleration = Vector(-5, -2); // Breaking
54 | const position = Vector(3, 8);
55 |
56 | const particle = Particle(velocity, acceleration, 1, position);
57 |
58 | expect(move(particle).velocity).toEqual(Vector(-3, 1));
59 | });
60 | });
61 |
--------------------------------------------------------------------------------
/Example/ios/ExampleTests/ExampleTests.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 | #import
10 |
11 | #import
12 | #import
13 |
14 | #define TIMEOUT_SECONDS 600
15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
16 |
17 | @interface ExampleTests : XCTestCase
18 |
19 | @end
20 |
21 | @implementation ExampleTests
22 |
23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
24 | {
25 | if (test(view)) {
26 | return YES;
27 | }
28 | for (UIView *subview in [view subviews]) {
29 | if ([self findSubviewInView:subview matching:test]) {
30 | return YES;
31 | }
32 | }
33 | return NO;
34 | }
35 |
36 | - (void)testRendersWelcomeScreen
37 | {
38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
40 | BOOL foundElement = NO;
41 |
42 | __block NSString *redboxError = nil;
43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
44 | if (level >= RCTLogLevelError) {
45 | redboxError = message;
46 | }
47 | });
48 |
49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
52 |
53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
55 | return YES;
56 | }
57 | return NO;
58 | }];
59 | }
60 |
61 | RCTSetLogFunction(RCTDefaultLogFunction);
62 |
63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
65 | }
66 |
67 |
68 | @end
69 |
--------------------------------------------------------------------------------
/utils/__tests__/vector-helpers.spec.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import { Vector } from '../../entities/Vector';
3 | import {
4 | add,
5 | fromAngle,
6 | getAngle,
7 | getMagnitude,
8 | toDegrees,
9 | toRadians
10 | } from '../vector-helpers';
11 |
12 | const round2Decimals = v => Math.round(v * 100) / 100;
13 |
14 | describe('Vector Helpers', () => {
15 | it('Should add one vector to another', () => {
16 | const vector1 = Vector(2, 3);
17 | const vector2 = Vector(4, 6);
18 |
19 | expect(add(vector1, vector2)).toEqual(Vector(6, 9));
20 | });
21 |
22 | it('Should calculate the vector magnitude for 2D vectors', () => {
23 | // The magnitude of the vector v(4,-3) = 5
24 | const vector = Vector(4, -3);
25 |
26 | expect(getMagnitude(vector)).toEqual(5);
27 | });
28 |
29 | it('Should calculate the angle angle (degrees) for 2D vectors', () => {
30 | // The angle of the vector v(3, 4) is 53.13 degrees approximately
31 | const vector = Vector(3, 4);
32 | const angleInDegrees = Math.round(toDegrees(getAngle(vector)) * 100) / 100;
33 | expect(angleInDegrees).toEqual(53.13);
34 | });
35 |
36 | it('Should calculate the angle angle (in radians) for 2D vectors', () => {
37 | // The angle of the vector v(3, 4) is 0.93 radians approximately
38 | const vector = Vector(3, 4);
39 | const angleInRadians = round2Decimals(getAngle(vector));
40 | expect(angleInRadians).toEqual(0.93);
41 | });
42 |
43 | it('Should convert an angle from degrees to radians', () => {
44 | // 60 degrees is approximately 1.05 radians
45 | const angleInDegrees = 60;
46 | const angleInRadians = round2Decimals(toRadians(angleInDegrees));
47 | expect(angleInRadians).toEqual(1.05);
48 | });
49 |
50 | it('Should get a new vector based on the angle and magnitude', () => {
51 | // v() is the vector with 11 of magnitude and 105 degrees angle
52 | const magnitude = 11;
53 | const angleInDegrees = toRadians(105);
54 |
55 | const result = fromAngle(angleInDegrees, magnitude);
56 |
57 | // Created the approximated result
58 | const approximated = Vector(
59 | round2Decimals(result.x),
60 | round2Decimals(result.y)
61 | );
62 |
63 | expect(approximated).toEqual(Vector(-2.85, 10.63));
64 | });
65 | });
66 |
--------------------------------------------------------------------------------
/Example/examples/Confetti.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Sample React Native App
3 | * https://github.com/facebook/react-native
4 | *
5 | * @format
6 | * @flow
7 | */
8 |
9 | import React, { Component } from 'react';
10 | import { StyleSheet, View, Dimensions } from 'react-native';
11 |
12 | import { Emitter } from 'react-native-particles';
13 |
14 | import Spin from '../animations/Spin';
15 |
16 | const { width, height } = Dimensions.get('window');
17 |
18 | type Props = {
19 | colors: string[],
20 | ref: ConfettiEmitter => void
21 | };
22 |
23 | export default class ConfettiEmitter extends Component {
24 | render() {
25 | const { colors } = this.props;
26 | return (
27 | ({ x: Math.round(Math.random() * width), y: 0 })}
40 | style={styles.emitter}
41 | gravity={0.3}
42 | ref={emitter => (this.emitter = emitter)}
43 | >
44 |
45 |
46 | );
47 | }
48 |
49 | start() {
50 | this.emitter.start();
51 | }
52 | }
53 |
54 | class Confetti extends Component {
55 | static defaultProps = {
56 | colors: ['red', 'blue', 'green']
57 | };
58 |
59 | constructor(props) {
60 | super(props);
61 | const random = Math.random();
62 | this.duration = Math.max(random * 10000, 5000);
63 | this.counterClockWise = random > 0.5;
64 | this.color =
65 | props.colors[Math.round((random * 10) % (props.colors.length - 1))];
66 | }
67 |
68 | render() {
69 | return (
70 |
71 |
72 |
73 | );
74 | }
75 | }
76 |
77 | const styles = StyleSheet.create({
78 | emitter: {
79 | position: 'absolute',
80 | left: 0,
81 | top: -10,
82 | bottom: 0,
83 | right: 0
84 | },
85 | confetti: {
86 | width: 4,
87 | height: 8,
88 | backgroundColor: 'red'
89 | }
90 | });
91 |
--------------------------------------------------------------------------------
/__tests__/BustAndMoveEmitter.spec.js:
--------------------------------------------------------------------------------
1 | //@flow
2 |
3 | import React from 'react';
4 | import { Image } from 'react-native';
5 | import renderer from 'react-test-renderer';
6 | import BurstAndMoveEmitter from '../BurstAndMoveEmitter';
7 | import { Vector } from 'react-native-particles/entities/Vector';
8 |
9 | jest.useFakeTimers();
10 | Date.now = jest.fn(() => 1503187200000);
11 |
12 | jest.mock('Animated', () => {
13 | const ActualAnimated = require.requireActual('Animated');
14 | return {
15 | ...ActualAnimated,
16 | timing: (value, config) => {
17 | return {
18 | start: callback => {
19 | value.setValue(config.toValue);
20 | callback && callback();
21 | }
22 | };
23 | }
24 | };
25 | });
26 |
27 | describe('BostAndMoveEmitter', () => {
28 | it('should consider child prop as a particle', () => {
29 | const component = renderer.create(
30 | (this.emitter = emitter)}
39 | radius={100}
40 | >
41 |
45 |
46 | );
47 |
48 | expect(component.toJSON()).toMatchSnapshot();
49 | });
50 |
51 | it('should throw an error when trying to render more than one child', () => {
52 | expect(() =>
53 | renderer.create(
54 | (this.emitter = emitter)}
63 | radius={100}
64 | >
65 |
69 |
73 |
74 | )
75 | ).toThrowError();
76 | });
77 | });
78 |
--------------------------------------------------------------------------------
/__tests__/Emitter.spec.js:
--------------------------------------------------------------------------------
1 | //@flow
2 |
3 | import React from 'react';
4 | import { Image } from 'react-native';
5 | import renderer from 'react-test-renderer';
6 | import Emitter from '../Emitter';
7 |
8 | jest.useFakeTimers();
9 | Date.now = jest.fn(() => 1503187200000);
10 |
11 | jest.mock('Animated', () => {
12 | const ActualAnimated = require.requireActual('Animated');
13 | return {
14 | ...ActualAnimated,
15 | timing: (value, config) => {
16 | return {
17 | start: callback => {
18 | value.setValue(config.toValue);
19 | callback && callback();
20 | }
21 | };
22 | }
23 | };
24 | });
25 |
26 | describe('Emitter', () => {
27 | it('should consider child prop as a particle', () => {
28 | const component = renderer.create(
29 | (this.emitter = emitter)}
44 | >
45 |
49 |
50 | );
51 |
52 | expect(component.toJSON()).toMatchSnapshot();
53 | });
54 |
55 | it('should throw an error when trying to render more than one child', () => {
56 | expect(() =>
57 | renderer.create(
58 | (this.emitter = emitter)}
73 | >
74 |
78 |
82 |
83 | )
84 | ).toThrowError();
85 | });
86 | });
87 |
--------------------------------------------------------------------------------
/Example/.flowconfig:
--------------------------------------------------------------------------------
1 | [ignore]
2 | ; We fork some components by platform
3 | .*/*[.]android.js
4 |
5 | ; Ignore "BUCK" generated dirs
6 | /\.buckd/
7 |
8 | ; Ignore unexpected extra "@providesModule"
9 | .*/node_modules/.*/node_modules/fbjs/.*
10 |
11 | ; Ignore duplicate module providers
12 | ; For RN Apps installed via npm, "Libraries" folder is inside
13 | ; "node_modules/react-native" but in the source repo it is in the root
14 | .*/Libraries/react-native/React.js
15 |
16 | ; Ignore polyfills
17 | .*/Libraries/polyfills/.*
18 |
19 | ; Ignore metro
20 | .*/node_modules/metro/.*
21 |
22 | [include]
23 |
24 | [libs]
25 | node_modules/react-native/Libraries/react-native/react-native-interface.js
26 | node_modules/react-native/flow/
27 | node_modules/react-native/flow-github/
28 |
29 | [options]
30 | emoji=true
31 |
32 | module.system=haste
33 | module.system.haste.use_name_reducers=true
34 | # get basename
35 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1'
36 | # strip .js or .js.flow suffix
37 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1'
38 | # strip .ios suffix
39 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1'
40 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1'
41 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1'
42 | module.system.haste.paths.blacklist=.*/__tests__/.*
43 | module.system.haste.paths.blacklist=.*/__mocks__/.*
44 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.*
45 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.*
46 |
47 | munge_underscores=true
48 |
49 | 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'
50 |
51 | module.file_ext=.js
52 | module.file_ext=.jsx
53 | module.file_ext=.json
54 | module.file_ext=.native.js
55 |
56 | suppress_type=$FlowIssue
57 | suppress_type=$FlowFixMe
58 | suppress_type=$FlowFixMeProps
59 | suppress_type=$FlowFixMeState
60 |
61 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
62 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
63 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
64 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
65 |
66 | [version]
67 | ^0.75.0
68 |
--------------------------------------------------------------------------------
/Example/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 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | ## react-native-particles
3 | [](https://badge.fury.io/js/react-native-particles)
4 |
5 | *Anything can be a particle!*
6 |
7 | Declarative particle system for react native. Works on iOS and Android. It uses `Animated` api and `useNativeDriver:true` to get 60 FPS particles animation
8 |
9 | ## Add it to your project
10 |
11 | 1. Run `npm install react-native-particles --save`
12 | 2. `import { Emitter } from 'react-native-particles'`
13 |
14 | ## Demo
15 |
16 | 
17 |
18 | ## Basic usage
19 |
20 | ```javascript
21 | import { Emitter } from 'react-native-particles';
22 |
23 | const App = React.createClass({
24 | render() {
25 | return (
26 |
35 | Particle
36 |
37 | );
38 | }
39 | });
40 | ```
41 |
42 | ## Examples
43 |
44 | ## Props
45 |
46 | ### Emitter
47 |
48 | Basically, the `children` of emmiter is clonned and transformed into a particle.
49 |
50 | - **`numberOfParticles`** _(number)_ - The total of particles to be emitted
51 | - **`interval`** _(number)_ - Interval between emitting a new bunch of particles
52 | - **`fromPosition`** _(VectorType | (() => VectorType))_ - The position from where the particles should be generated
53 | - **`emissionRate`** _(number)_ - Number of particles to be be emitted on each cycle
54 | - **`particleLife`** _(number)_ - The particle life time (ms)
55 | - **`direction`** _(number)_ - The direction angle of the particle (in degrees)
56 | - **`spread`** _(number)_ - The spread angle where particles are allowed to be rendered (in degrees)
57 | - **`speed`** _(number)_ - The speed of each particle
58 | - **`gravity`** _(number)_ - Gravity force to be applied to the particle movement
59 | - **`segments`** _(number)_ - number of steps the animation will be divided ( more segments == more precise animation == slow performance)
60 | - **`width`** _(number)_ - Width of the emitter area
61 | - **`height`** _(number)_ - Height of the emitter area
62 | - **`autoStart`** _(boolean)_ - Start emitting particles right after initialization
63 | - **`style`** _(Object)_ - Style of the container view
64 | - **`children`** _(ReactElement)_ - Particle content
65 | - **`infiniteLoop`** _(boolean)_ - Emit particles infinitely
66 |
67 | ## Contribution
68 | **Issues** are welcome. Please add a screenshot of bug and code snippet. Quickest way to solve issue is to reproduce it on one of the examples.
69 |
70 | **Pull requests** are welcome. If you want to change API or making something big better to create issue and discuss it first. Before submiting PR please run ```prettier```.
71 |
72 | ---
73 |
74 | **MIT Licensed**
75 |
--------------------------------------------------------------------------------
/AnimatedParticle.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React from 'react';
3 |
4 | import { StyleSheet, Animated, Easing } from 'react-native';
5 | import type { InterpolationConfigType } from 'react-native/Libraries/Animated/src/nodes/AnimatedInterpolation';
6 |
7 | import type { Element } from 'react';
8 | import type { VectorType } from './entities/Vector';
9 |
10 | export interface IAnimatedParticle {
11 | /** Number of particles to emit */
12 | path: VectorType[];
13 |
14 | /** The position from where the particles should be generated */
15 | lifetime: number;
16 |
17 | /** Function triggered when the particle reaches the lifetime */
18 | onLifeEnds: () => any;
19 |
20 | /** Start the animation on the initialization */
21 | autoStart: boolean;
22 |
23 | /** Start the animation on the initialization */
24 | style: any;
25 |
26 | children: Element;
27 | }
28 |
29 | interface IAnimatedParticleState {
30 | animatedValue: Animated.Value;
31 | opacityValue: Animated.Value;
32 | translateX: InterpolationConfigType;
33 | translateY: InterpolationConfigType;
34 | }
35 |
36 | type InterpolationConfig = {
37 | translateX: InterpolationConfigType,
38 | translateY: InterpolationConfigType
39 | };
40 |
41 | export default class AnimatedParticle extends React.Component<
42 | IAnimatedParticle,
43 | IAnimatedParticleState
44 | > {
45 | static defaultProps = {};
46 |
47 | constructor(props: IAnimatedParticle) {
48 | super(props);
49 |
50 | this.state = {
51 | animatedValue: new Animated.Value(0),
52 | opacityValue: new Animated.Value(1),
53 | ...this._createInterpolations(props.path)
54 | };
55 | }
56 |
57 | render() {
58 | const { children } = this.props;
59 | const {
60 | animatedValue,
61 | translateX,
62 | translateY,
63 | opacityValue,
64 | style
65 | } = this.state;
66 |
67 | const animatedStyle = {
68 | opacity: opacityValue,
69 | transform: [
70 | {
71 | translateX: animatedValue.interpolate(translateX)
72 | },
73 | {
74 | translateY: animatedValue.interpolate(translateY)
75 | }
76 | ]
77 | };
78 |
79 | return (
80 |
81 | {children}
82 |
83 | );
84 | }
85 |
86 | componentDidMount() {
87 | const { autoStart } = this.props;
88 | autoStart && this.start();
89 | }
90 |
91 | start = () => {
92 | const { path, onLifeEnds, onAnimate } = this.props;
93 | const { animatedValue, opacityValue } = this.state;
94 |
95 | this.animation =
96 | this.animation || onAnimate(path, animatedValue, opacityValue);
97 |
98 | this.animation.start(() => {
99 | onLifeEnds && onLifeEnds();
100 | });
101 | };
102 |
103 | _createInterpolations = (path: VectorType[]): InterpolationConfig => {
104 | const segments = path.length;
105 |
106 | const inputRange: number[] = new Array(segments);
107 | const outputRangeX: number[] = new Array(segments);
108 | const outputRangeY: number[] = new Array(segments);
109 |
110 | for (let i = 0; i < path.length; i++) {
111 | inputRange[i] = i;
112 | outputRangeX[i] = path[i].x;
113 | outputRangeY[i] = path[i].y;
114 | }
115 |
116 | return {
117 | translateX: {
118 | inputRange,
119 | outputRange: outputRangeX
120 | },
121 | translateY: {
122 | inputRange,
123 | outputRange: outputRangeY
124 | }
125 | };
126 | };
127 | }
128 |
129 | const styles = StyleSheet.create({
130 | particle: {
131 | position: 'absolute',
132 | top: 0,
133 | left: 0
134 | }
135 | });
136 |
--------------------------------------------------------------------------------
/Example/ios/Example/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 |
--------------------------------------------------------------------------------
/Emitter.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import type { Element } from 'react';
3 | import React from 'react';
4 | import { Animated, Easing } from 'react-native';
5 | import { Vector } from './entities/Vector';
6 | import { fromAngle, toRadians } from './utils/vector-helpers';
7 | import { move } from './utils/move-particle';
8 | import emitParticle from './utils/emit-particle';
9 | import type { VectorType } from './entities/Vector';
10 | import type { ParticleType } from './entities/Particle';
11 | import type { BaseEmitterType } from './BaseEmitter';
12 | import BaseEmitter from './BaseEmitter';
13 |
14 | export type EmitterType = BaseEmitterType & {
15 | /** The direction angle of the particle (in degrees) */
16 | direction: number,
17 | /** The spread angle where particles are allowed to be rendered (in degrees) */
18 | spread: number,
19 | /** The speed of each particle */
20 | speed?: number,
21 | /** Gravity force to be applied to the particle movement */
22 | gravity?: number,
23 | /** number of steps the animation will be divided ( more segments == more precise animation == slow performance) */
24 | segments?: number
25 | };
26 |
27 | export class Emitter extends React.Component {
28 | emitter: BaseEmitter;
29 |
30 | static defaultProps = {
31 | gravity: 0.2,
32 | segments: 10,
33 | speed: 5
34 | };
35 |
36 | _storeEmitterRef: any => void;
37 |
38 | constructor(props: EmitterType) {
39 | super(props);
40 | this._calculate = this._calculate.bind(this);
41 | this._animateParticle = this._animateParticle.bind(this);
42 | this._storeEmitterRef = emitter => (this.emitter = emitter);
43 | }
44 |
45 | render() {
46 | return (
47 |
53 | );
54 | }
55 |
56 | _calculate = (initialPosition: VectorType, particlesCounter: number) => {
57 | const {
58 | numberOfParticles,
59 | emissionRate,
60 | direction,
61 | speed,
62 | spread,
63 | gravity,
64 | segments
65 | } = this.props;
66 |
67 | // if we're at our max, stop emitting.
68 | const rate = Math.min(numberOfParticles, emissionRate);
69 | const newParticles = [];
70 | // for [emissionRate], emit a particle
71 | for (let j = 0; j < rate; j++) {
72 | /*
73 | first step - Emit new particles
74 | */
75 | const particle = emitParticle(
76 | initialPosition,
77 | fromAngle(toRadians(direction), speed),
78 | toRadians(spread),
79 | //Apply gravity to the vertical axis
80 | Vector(0, gravity),
81 | // Particle id
82 | particlesCounter + j
83 | );
84 |
85 | // Calculate the particle path
86 | // TODO: Improve the performance currently O(n2)
87 | let path: VectorType[] = [];
88 | let particleMovement: ParticleType = particle;
89 | for (let j = 0; j < segments; j++) {
90 | path.push(particleMovement.position);
91 | particleMovement = move(particleMovement);
92 | }
93 | newParticles.push({
94 | particle,
95 | path
96 | });
97 | }
98 |
99 | return newParticles;
100 | };
101 |
102 | _animateParticle = (path, transformValue, opacityValue) => {
103 | const { particleLife } = this.props;
104 | return Animated.parallel([
105 | Animated.timing(transformValue, {
106 | toValue: path.length,
107 | duration: particleLife,
108 | useNativeDriver: true
109 | }),
110 | Animated.timing(opacityValue, {
111 | toValue: 0,
112 | ease: Easing.inOut(Easing.quad),
113 | delay: particleLife * 0.8,
114 | duration: particleLife * 0.2,
115 | useNativeDriver: true
116 | })
117 | ]);
118 | };
119 |
120 | start() {
121 | this.emitter.start();
122 | }
123 | }
124 |
125 | export default Emitter;
126 |
--------------------------------------------------------------------------------
/BurstAndMoveEmitter.js:
--------------------------------------------------------------------------------
1 | // @flow
2 | import React, { Component } from 'react';
3 | import { Animated, Dimensions, Easing } from 'react-native';
4 | import type { VectorType } from './entities/Vector';
5 | import { Vector } from './entities/Vector';
6 | import { fromAngle, toRadians, add } from './utils/vector-helpers';
7 | import BaseEmitter from './BaseEmitter';
8 | import { Particle } from './entities/Particle';
9 | import type { ParticleConfig, BaseEmitterType } from './BaseEmitter';
10 |
11 | const { width, height } = Dimensions.get('window');
12 |
13 | type IBurstAndMoveEmitter = BaseEmitterType & {
14 | finalPoint: VectorType,
15 | radius: number,
16 | burstTime: number,
17 | waitTime: number,
18 | moveTime: number,
19 | onCalculate?: () => ParticleConfig[],
20 | onAnimate?: (Animated.Value, Animated.Value) => void
21 | };
22 | export interface IBurstAndMoveEmitterState {
23 | particles: Array[];
24 | }
25 |
26 | export default class BurstAndMoveEmitter extends Component<
27 | IBurstAndMoveEmitter,
28 | IBurstAndMoveEmitterState
29 | > {
30 | static defaultProps = {
31 | finalPoint: Vector(width, height),
32 | burstTime: 300,
33 | waitTime: 1000,
34 | moveTime: 1000
35 | };
36 |
37 | emitter: BaseEmitter;
38 | _storeEmitterRef: BaseEmitter => void;
39 |
40 | constructor(props: IBurstAndMoveEmitter) {
41 | super(props);
42 |
43 | this._calculate = this._calculate.bind(this);
44 | this._animateParticle = this._animateParticle.bind(this);
45 | this._storeEmitterRef = emitter => (this.emitter = emitter);
46 | }
47 |
48 | render() {
49 | const { children, ...props } = this.props;
50 |
51 | return (
52 |
58 | {children}
59 |
60 | );
61 | }
62 |
63 | _calculate = (initialPosition: VectorType, particlesCounter: number) => {
64 | const { numberOfParticles, radius, finalPoint, emissionRate } = this.props;
65 |
66 | const particles: ParticleConfig[] = [];
67 |
68 | const rate = Math.min(numberOfParticles, emissionRate);
69 |
70 | for (let i = 0; i < rate; i++) {
71 | // Generate a random magnitude lower than or equals the radius
72 | const magnitude = Math.round(Math.random() * radius);
73 |
74 | // Generate a random angle between 0 and 360
75 | const angle = Math.round(Math.random() * 360);
76 |
77 | // Calculate a vector based on the angle and magnitude.
78 | const burstPoint = add(
79 | initialPosition,
80 | fromAngle(toRadians(angle), magnitude)
81 | );
82 |
83 | // first step - Emit new particles
84 | const particle = Particle(
85 | Vector(0, 0),
86 | Vector(0, 0),
87 | particlesCounter + i,
88 | initialPosition
89 | );
90 | const path: VectorType[] = [initialPosition, burstPoint, finalPoint];
91 |
92 | particles.push({
93 | particle,
94 | path
95 | });
96 | }
97 |
98 | return particles;
99 | };
100 |
101 | _animateParticle = (path, transformValue, opacityValue) => {
102 | const { burstTime, moveTime, waitTime } = this.props;
103 | return Animated.parallel([
104 | Animated.sequence([
105 | Animated.timing(transformValue, {
106 | toValue: 1,
107 | duration: burstTime,
108 | easing: Easing.out(Easing.quad),
109 | useNativeDriver: true
110 | }),
111 | Animated.timing(transformValue, {
112 | toValue: 2,
113 | duration: moveTime,
114 | delay: waitTime,
115 | easing: Easing.in(Easing.quad),
116 | useNativeDriver: true
117 | }),
118 | Animated.timing(opacityValue, {
119 | toValue: 0,
120 | duration: moveTime * 0.5,
121 | useNativeDriver: true
122 | })
123 | ])
124 | ]);
125 | };
126 |
127 | start() {
128 | this.emitter.start();
129 | }
130 | }
131 |
--------------------------------------------------------------------------------
/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.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 |
--------------------------------------------------------------------------------
/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example-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 |
--------------------------------------------------------------------------------
/Example/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 |
--------------------------------------------------------------------------------
/Example/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 |
3 | import com.android.build.OutputFile
4 |
5 | /**
6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7 | * and bundleReleaseJsAndAssets).
8 | * These basically call `react-native bundle` with the correct arguments during the Android build
9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10 | * bundle directly from the development server. Below you can see all the possible configurations
11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
12 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
13 | *
14 | * project.ext.react = [
15 | * // the name of the generated asset file containing your JS bundle
16 | * bundleAssetName: "index.android.bundle",
17 | *
18 | * // the entry file for bundle generation
19 | * entryFile: "index.android.js",
20 | *
21 | * // whether to bundle JS and assets in debug mode
22 | * bundleInDebug: false,
23 | *
24 | * // whether to bundle JS and assets in release mode
25 | * bundleInRelease: true,
26 | *
27 | * // whether to bundle JS and assets in another build variant (if configured).
28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
29 | * // The configuration property can be in the following formats
30 | * // 'bundleIn${productFlavor}${buildType}'
31 | * // 'bundleIn${buildType}'
32 | * // bundleInFreeDebug: true,
33 | * // bundleInPaidRelease: true,
34 | * // bundleInBeta: true,
35 | *
36 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
37 | * // for example: to disable dev mode in the staging build type (if configured)
38 | * devDisabledInStaging: true,
39 | * // The configuration property can be in the following formats
40 | * // 'devDisabledIn${productFlavor}${buildType}'
41 | * // 'devDisabledIn${buildType}'
42 | *
43 | * // the root of your project, i.e. where "package.json" lives
44 | * root: "../../",
45 | *
46 | * // where to put the JS bundle asset in debug mode
47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
48 | *
49 | * // where to put the JS bundle asset in release mode
50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
51 | *
52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
53 | * // require('./image.png')), in debug mode
54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
55 | *
56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
57 | * // require('./image.png')), in release mode
58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
59 | *
60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
64 | * // for example, you might want to remove it from here.
65 | * inputExcludes: ["android/**", "ios/**"],
66 | *
67 | * // override which node gets called and with what additional arguments
68 | * nodeExecutableAndArgs: ["node"],
69 | *
70 | * // supply additional arguments to the packager
71 | * extraPackagerArgs: []
72 | * ]
73 | */
74 |
75 | project.ext.react = [
76 | entryFile: "index.js"
77 | ]
78 |
79 | apply from: "../../node_modules/react-native/react.gradle"
80 |
81 | /**
82 | * Set this to true to create two separate APKs instead of one:
83 | * - An APK that only works on ARM devices
84 | * - An APK that only works on x86 devices
85 | * The advantage is the size of the APK is reduced by about 4MB.
86 | * Upload all the APKs to the Play Store and people will download
87 | * the correct one based on the CPU architecture of their device.
88 | */
89 | def enableSeparateBuildPerCPUArchitecture = false
90 |
91 | /**
92 | * Run Proguard to shrink the Java bytecode in release builds.
93 | */
94 | def enableProguardInReleaseBuilds = false
95 |
96 | android {
97 | compileSdkVersion rootProject.ext.compileSdkVersion
98 | buildToolsVersion rootProject.ext.buildToolsVersion
99 |
100 | defaultConfig {
101 | applicationId "com.example"
102 | minSdkVersion rootProject.ext.minSdkVersion
103 | targetSdkVersion rootProject.ext.targetSdkVersion
104 | versionCode 1
105 | versionName "1.0"
106 | ndk {
107 | abiFilters "armeabi-v7a", "x86"
108 | }
109 | }
110 | splits {
111 | abi {
112 | reset()
113 | enable enableSeparateBuildPerCPUArchitecture
114 | universalApk false // If true, also generate a universal APK
115 | include "armeabi-v7a", "x86"
116 | }
117 | }
118 | buildTypes {
119 | release {
120 | minifyEnabled enableProguardInReleaseBuilds
121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
122 | }
123 | }
124 | // applicationVariants are e.g. debug, release
125 | applicationVariants.all { variant ->
126 | variant.outputs.each { output ->
127 | // For each separate APK per architecture, set a unique version code as described here:
128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
129 | def versionCodes = ["armeabi-v7a":1, "x86":2]
130 | def abi = output.getFilter(OutputFile.ABI)
131 | if (abi != null) { // null for the universal-debug, universal-release variants
132 | output.versionCodeOverride =
133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
134 | }
135 | }
136 | }
137 | }
138 |
139 | dependencies {
140 | compile fileTree(dir: "libs", include: ["*.jar"])
141 | compile "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
142 | compile "com.facebook.react:react-native:+" // From node_modules
143 | }
144 |
145 | // Run this once to be able to run the application with BUCK
146 | // puts all compile dependencies into folder libs for BUCK to use
147 | task copyDownloadableDepsToLibs(type: Copy) {
148 | from configurations.compile
149 | into 'libs'
150 | }
151 |
--------------------------------------------------------------------------------
/BaseEmitter.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React from 'react';
3 | import type { Element } from 'react';
4 | import debounce from 'lodash.debounce';
5 | import { Vector } from './entities/Vector';
6 | import AnimatedParticle from './AnimatedParticle';
7 | import type { VectorType } from './entities/Vector';
8 | import type { ParticleType } from './entities/Particle';
9 | import { Dimensions, View, StyleSheet, Animated } from 'react-native';
10 |
11 | const windowDimensions = Dimensions.get('window');
12 |
13 | export type BaseEmitterType = {
14 | /** Start emitting particles after initialization */
15 | autoStart?: boolean,
16 | /** The total of particles to be emitted */
17 | numberOfParticles: number,
18 | /** Interval between emitting a new batch of particles */
19 | interval: number,
20 | /** The position from where the particles should be generated */
21 | fromPosition?: VectorType | (() => VectorType),
22 | /** Number of particles to be be emitted on each cycle */
23 | emissionRate: number,
24 | /** The particle life time (ms) */
25 | particleLife: number,
26 | /** Width of the emitter */
27 | width?: number,
28 | /** Height of the emitter */
29 | height?: number,
30 | /** Style of the particle container */
31 | particleContainerStyle?: any,
32 | /** The particle content to be rendered */
33 | children: Element,
34 | /** Reference to the Emiter */
35 | ref: BaseEmitterType => void,
36 | /** Function to calculate a new bunch of particles */
37 | onCalculate: (position: VectorType, count: number) => ParticleConfig[],
38 | /** Function used to animate particles */
39 | onAnimate: (Animated.Value, Animated.Value) => void,
40 | infiniteLoop?: boolean
41 | };
42 |
43 | type BaseEmitterState = {
44 | visibleParticles: ParticleConfig[]
45 | };
46 |
47 | export type ParticleConfig = {
48 | particle: ParticleType,
49 | path: VectorType[]
50 | };
51 |
52 | class BaseEmitter extends React.Component {
53 | // All particles
54 | particles: ParticleConfig[] = [];
55 | // Particles scheduled to be destroyed
56 | particlesToDestroy: number[] = [];
57 | // Number of generated particles
58 | particlesCounter: number = 0;
59 | // Last time a bunch of particles was emitted
60 | lastEmission: number;
61 | // Is emitting particles
62 | isEmitting: boolean = true;
63 |
64 | // Request animation frame callback reference
65 | _raf: AnimationFrameID;
66 | _timeout: TimeoutID;
67 |
68 | // Component is mounted
69 | _isMounted: boolean = false;
70 |
71 | static defaultProps = {
72 | autoStart: true,
73 | width: windowDimensions.width,
74 | height: windowDimensions.height,
75 | fromPosition: Vector(0, 0),
76 | infinite: false
77 | };
78 |
79 | constructor(props: BaseEmitterType) {
80 | super(props);
81 |
82 | this.state = {
83 | // List of visible particles
84 | visibleParticles: []
85 | };
86 |
87 | (this: any)._loop = debounce(this._loop.bind(this), 100);
88 | }
89 |
90 | render() {
91 | const {
92 | particleLife,
93 | children,
94 | particleContainerStyle,
95 | onAnimate
96 | } = this.props;
97 | const { visibleParticles } = this.state;
98 |
99 | // The job is done
100 | if (!this.isEmitting && !visibleParticles.length) return null;
101 |
102 | const child = React.Children.only(children);
103 |
104 | return visibleParticles.map((obj, i) => (
105 |
114 | {child}
115 |
116 | ));
117 | }
118 |
119 | componentDidMount() {
120 | this._isMounted = true;
121 | const { autoStart } = this.props;
122 | autoStart && this.start();
123 | }
124 |
125 | shouldComponentUpdate(
126 | nextProps: BaseEmitterType,
127 | nextState: BaseEmitterState
128 | ) {
129 | return (
130 | this.state.visibleParticles.length !== nextState.visibleParticles.length
131 | );
132 | }
133 |
134 | componentWillUnmount() {
135 | this._isMounted = false;
136 | this._raf && cancelAnimationFrame(this._raf);
137 | this._timeout && clearTimeout(this._timeout);
138 | }
139 |
140 | stopEmitting() {
141 | const { particleLife } = this.props;
142 | this.isEmitting = false;
143 |
144 | // Schedule a final loop for when the last particles are done
145 | this._timeout = setTimeout(this._loop.bind(this), particleLife + 1);
146 | }
147 |
148 | start() {
149 | this.isEmitting = true;
150 | this.particlesCounter = 0;
151 | this.particles = [];
152 | this._loop();
153 | }
154 |
155 | _loop() {
156 | this._cleanUp();
157 | this._calculate();
158 | this._draw();
159 | this._queue();
160 | }
161 |
162 | _cleanUp() {
163 | // Remove particles scheduled to be destroyed
164 | this.particles = this.particles.filter(
165 | p => !this.particlesToDestroy.includes(p.particle.id)
166 | );
167 | this.particlesToDestroy = [];
168 | }
169 |
170 | _calculate() {
171 | const { onCalculate, numberOfParticles, interval } = this.props;
172 |
173 | if (!this.isEmitting) return;
174 |
175 | if (this.particlesCounter >= numberOfParticles && !this.props.infiniteLoop) {
176 | // Stop emitting new particles
177 | return this.stopEmitting();
178 | }
179 |
180 | if (Date.now() - this.lastEmission < interval) return;
181 |
182 | this.lastEmission = Date.now();
183 |
184 | const newParticles = onCalculate(
185 | this._getInitialPosition(),
186 | this.particlesCounter
187 | );
188 |
189 | // Add the new generated particles
190 | this.particles.push(...newParticles);
191 | this.particlesCounter = this.particlesCounter + newParticles.length;
192 | }
193 |
194 | _draw() {
195 | const { width, height } = this.props;
196 | // Filter the visible particles
197 | this.setState({
198 | visibleParticles: this.particles
199 | // Remove the particles out of bounds
200 | .filter(p => {
201 | const { x, y } = p.particle.position;
202 | return x >= 0 && x <= width && y >= 0 && y <= height;
203 | })
204 | });
205 | }
206 |
207 | _queue() {
208 | if (!this.isEmitting) return;
209 | this._raf = requestAnimationFrame(() => this._loop());
210 | }
211 |
212 | _getInitialPosition(): VectorType {
213 | const { fromPosition } = this.props;
214 |
215 | if (!fromPosition) return Vector(0, 0);
216 |
217 | if (typeof fromPosition === 'function') {
218 | return fromPosition();
219 | }
220 |
221 | if (Object.prototype.toString.apply(fromPosition) === '[object Object]') {
222 | return fromPosition;
223 | }
224 |
225 | return Vector(0, 0);
226 | }
227 |
228 | _destroyParticle = (particle: ParticleType): Function => (): void => {
229 | this.particlesToDestroy.push(particle.id);
230 | if (!this.isEmitting && this._isMounted) {
231 | this._loop();
232 | }
233 | };
234 | }
235 |
236 | export default BaseEmitter;
237 |
--------------------------------------------------------------------------------
/Example/ios/Example.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 /* ExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ExampleTests.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.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
35 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
36 | 2DCD954D1E0B4F2C00145EB5 /* ExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ExampleTests.m */; };
37 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
38 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
39 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
40 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
41 | /* End PBXBuildFile section */
42 |
43 | /* Begin PBXContainerItemProxy section */
44 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
45 | isa = PBXContainerItemProxy;
46 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
47 | proxyType = 2;
48 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
49 | remoteInfo = RCTActionSheet;
50 | };
51 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
52 | isa = PBXContainerItemProxy;
53 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
54 | proxyType = 2;
55 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
56 | remoteInfo = RCTGeolocation;
57 | };
58 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
59 | isa = PBXContainerItemProxy;
60 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
61 | proxyType = 2;
62 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
63 | remoteInfo = RCTImage;
64 | };
65 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
66 | isa = PBXContainerItemProxy;
67 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
68 | proxyType = 2;
69 | remoteGlobalIDString = 58B511DB1A9E6C8500147676;
70 | remoteInfo = RCTNetwork;
71 | };
72 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
73 | isa = PBXContainerItemProxy;
74 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
75 | proxyType = 2;
76 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
77 | remoteInfo = RCTVibration;
78 | };
79 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
80 | isa = PBXContainerItemProxy;
81 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
82 | proxyType = 1;
83 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
84 | remoteInfo = Example;
85 | };
86 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
87 | isa = PBXContainerItemProxy;
88 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
89 | proxyType = 2;
90 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
91 | remoteInfo = RCTSettings;
92 | };
93 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
94 | isa = PBXContainerItemProxy;
95 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
96 | proxyType = 2;
97 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
98 | remoteInfo = RCTWebSocket;
99 | };
100 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
101 | isa = PBXContainerItemProxy;
102 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
103 | proxyType = 2;
104 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
105 | remoteInfo = React;
106 | };
107 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
108 | isa = PBXContainerItemProxy;
109 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
110 | proxyType = 1;
111 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
112 | remoteInfo = "Example-tvOS";
113 | };
114 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
115 | isa = PBXContainerItemProxy;
116 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
117 | proxyType = 2;
118 | remoteGlobalIDString = ADD01A681E09402E00F6D226;
119 | remoteInfo = "RCTBlob-tvOS";
120 | };
121 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
122 | isa = PBXContainerItemProxy;
123 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
124 | proxyType = 2;
125 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
126 | remoteInfo = fishhook;
127 | };
128 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
129 | isa = PBXContainerItemProxy;
130 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
131 | proxyType = 2;
132 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
133 | remoteInfo = "fishhook-tvOS";
134 | };
135 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
136 | isa = PBXContainerItemProxy;
137 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
138 | proxyType = 2;
139 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
140 | remoteInfo = jsinspector;
141 | };
142 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
143 | isa = PBXContainerItemProxy;
144 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
145 | proxyType = 2;
146 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
147 | remoteInfo = "jsinspector-tvOS";
148 | };
149 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
150 | isa = PBXContainerItemProxy;
151 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
152 | proxyType = 2;
153 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
154 | remoteInfo = "third-party";
155 | };
156 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
157 | isa = PBXContainerItemProxy;
158 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
159 | proxyType = 2;
160 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
161 | remoteInfo = "third-party-tvOS";
162 | };
163 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
164 | isa = PBXContainerItemProxy;
165 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
166 | proxyType = 2;
167 | remoteGlobalIDString = 139D7E881E25C6D100323FB7;
168 | remoteInfo = "double-conversion";
169 | };
170 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
171 | isa = PBXContainerItemProxy;
172 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
173 | proxyType = 2;
174 | remoteGlobalIDString = 3D383D621EBD27B9005632C8;
175 | remoteInfo = "double-conversion-tvOS";
176 | };
177 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
178 | isa = PBXContainerItemProxy;
179 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
180 | proxyType = 2;
181 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
182 | remoteInfo = privatedata;
183 | };
184 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
185 | isa = PBXContainerItemProxy;
186 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
187 | proxyType = 2;
188 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
189 | remoteInfo = "privatedata-tvOS";
190 | };
191 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
192 | isa = PBXContainerItemProxy;
193 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
194 | proxyType = 2;
195 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
196 | remoteInfo = "RCTImage-tvOS";
197 | };
198 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
199 | isa = PBXContainerItemProxy;
200 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
201 | proxyType = 2;
202 | remoteGlobalIDString = 2D2A28471D9B043800D4039D;
203 | remoteInfo = "RCTLinking-tvOS";
204 | };
205 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
206 | isa = PBXContainerItemProxy;
207 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
208 | proxyType = 2;
209 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
210 | remoteInfo = "RCTNetwork-tvOS";
211 | };
212 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
213 | isa = PBXContainerItemProxy;
214 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
215 | proxyType = 2;
216 | remoteGlobalIDString = 2D2A28611D9B046600D4039D;
217 | remoteInfo = "RCTSettings-tvOS";
218 | };
219 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
220 | isa = PBXContainerItemProxy;
221 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
222 | proxyType = 2;
223 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
224 | remoteInfo = "RCTText-tvOS";
225 | };
226 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
227 | isa = PBXContainerItemProxy;
228 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
229 | proxyType = 2;
230 | remoteGlobalIDString = 2D2A28881D9B049200D4039D;
231 | remoteInfo = "RCTWebSocket-tvOS";
232 | };
233 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
234 | isa = PBXContainerItemProxy;
235 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
236 | proxyType = 2;
237 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
238 | remoteInfo = "React-tvOS";
239 | };
240 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
241 | isa = PBXContainerItemProxy;
242 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
243 | proxyType = 2;
244 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
245 | remoteInfo = yoga;
246 | };
247 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
248 | isa = PBXContainerItemProxy;
249 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
250 | proxyType = 2;
251 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
252 | remoteInfo = "yoga-tvOS";
253 | };
254 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
255 | isa = PBXContainerItemProxy;
256 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
257 | proxyType = 2;
258 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
259 | remoteInfo = cxxreact;
260 | };
261 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
262 | isa = PBXContainerItemProxy;
263 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
264 | proxyType = 2;
265 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
266 | remoteInfo = "cxxreact-tvOS";
267 | };
268 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
269 | isa = PBXContainerItemProxy;
270 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
271 | proxyType = 2;
272 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
273 | remoteInfo = jschelpers;
274 | };
275 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
276 | isa = PBXContainerItemProxy;
277 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
278 | proxyType = 2;
279 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
280 | remoteInfo = "jschelpers-tvOS";
281 | };
282 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
283 | isa = PBXContainerItemProxy;
284 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
285 | proxyType = 2;
286 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
287 | remoteInfo = RCTAnimation;
288 | };
289 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
290 | isa = PBXContainerItemProxy;
291 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
292 | proxyType = 2;
293 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
294 | remoteInfo = "RCTAnimation-tvOS";
295 | };
296 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
297 | isa = PBXContainerItemProxy;
298 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
299 | proxyType = 2;
300 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
301 | remoteInfo = RCTLinking;
302 | };
303 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
304 | isa = PBXContainerItemProxy;
305 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
306 | proxyType = 2;
307 | remoteGlobalIDString = 58B5119B1A9E6C1200147676;
308 | remoteInfo = RCTText;
309 | };
310 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
311 | isa = PBXContainerItemProxy;
312 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
313 | proxyType = 2;
314 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
315 | remoteInfo = RCTBlob;
316 | };
317 | /* End PBXContainerItemProxy section */
318 |
319 | /* Begin PBXFileReference section */
320 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
321 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; };
322 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; };
323 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; };
324 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; };
325 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; };
326 | 00E356EE1AD99517003FC87E /* ExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
327 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
328 | 00E356F21AD99517003FC87E /* ExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExampleTests.m; sourceTree = ""; };
329 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; };
330 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; };
331 | 13B07F961A680F5B00A75B9A /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
332 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Example/AppDelegate.h; sourceTree = ""; };
333 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Example/AppDelegate.m; sourceTree = ""; };
334 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
335 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Example/Images.xcassets; sourceTree = ""; };
336 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Example/Info.plist; sourceTree = ""; };
337 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Example/main.m; sourceTree = ""; };
338 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; };
339 | 2D02E47B1E0B4A5D006451C7 /* Example-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Example-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
340 | 2D02E4901E0B4A5D006451C7 /* Example-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Example-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
341 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
342 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; };
343 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; };
344 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; };
345 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; };
346 | /* End PBXFileReference section */
347 |
348 | /* Begin PBXFrameworksBuildPhase section */
349 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
350 | isa = PBXFrameworksBuildPhase;
351 | buildActionMask = 2147483647;
352 | files = (
353 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
354 | );
355 | runOnlyForDeploymentPostprocessing = 0;
356 | };
357 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
358 | isa = PBXFrameworksBuildPhase;
359 | buildActionMask = 2147483647;
360 | files = (
361 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
362 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
363 | 146834051AC3E58100842450 /* libReact.a in Frameworks */,
364 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
365 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
366 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
367 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
368 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
369 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
370 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
371 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
372 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
373 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
374 | );
375 | runOnlyForDeploymentPostprocessing = 0;
376 | };
377 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
378 | isa = PBXFrameworksBuildPhase;
379 | buildActionMask = 2147483647;
380 | files = (
381 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
382 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
383 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
384 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
385 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
386 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
387 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
388 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
389 | );
390 | runOnlyForDeploymentPostprocessing = 0;
391 | };
392 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
393 | isa = PBXFrameworksBuildPhase;
394 | buildActionMask = 2147483647;
395 | files = (
396 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
397 | );
398 | runOnlyForDeploymentPostprocessing = 0;
399 | };
400 | /* End PBXFrameworksBuildPhase section */
401 |
402 | /* Begin PBXGroup section */
403 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
404 | isa = PBXGroup;
405 | children = (
406 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
407 | );
408 | name = Products;
409 | sourceTree = "";
410 | };
411 | 00C302B61ABCB90400DB3ED1 /* Products */ = {
412 | isa = PBXGroup;
413 | children = (
414 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
415 | );
416 | name = Products;
417 | sourceTree = "";
418 | };
419 | 00C302BC1ABCB91800DB3ED1 /* Products */ = {
420 | isa = PBXGroup;
421 | children = (
422 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
423 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
424 | );
425 | name = Products;
426 | sourceTree = "";
427 | };
428 | 00C302D41ABCB9D200DB3ED1 /* Products */ = {
429 | isa = PBXGroup;
430 | children = (
431 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
432 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
433 | );
434 | name = Products;
435 | sourceTree = "";
436 | };
437 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
438 | isa = PBXGroup;
439 | children = (
440 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
441 | );
442 | name = Products;
443 | sourceTree = "";
444 | };
445 | 00E356EF1AD99517003FC87E /* ExampleTests */ = {
446 | isa = PBXGroup;
447 | children = (
448 | 00E356F21AD99517003FC87E /* ExampleTests.m */,
449 | 00E356F01AD99517003FC87E /* Supporting Files */,
450 | );
451 | path = ExampleTests;
452 | sourceTree = "";
453 | };
454 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
455 | isa = PBXGroup;
456 | children = (
457 | 00E356F11AD99517003FC87E /* Info.plist */,
458 | );
459 | name = "Supporting Files";
460 | sourceTree = "";
461 | };
462 | 139105B71AF99BAD00B5F7CC /* Products */ = {
463 | isa = PBXGroup;
464 | children = (
465 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
466 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
467 | );
468 | name = Products;
469 | sourceTree = "";
470 | };
471 | 139FDEE71B06529A00C62182 /* Products */ = {
472 | isa = PBXGroup;
473 | children = (
474 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
475 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
476 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
477 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
478 | );
479 | name = Products;
480 | sourceTree = "";
481 | };
482 | 13B07FAE1A68108700A75B9A /* Example */ = {
483 | isa = PBXGroup;
484 | children = (
485 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
486 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
487 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
488 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
489 | 13B07FB61A68108700A75B9A /* Info.plist */,
490 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
491 | 13B07FB71A68108700A75B9A /* main.m */,
492 | );
493 | name = Example;
494 | sourceTree = "";
495 | };
496 | 146834001AC3E56700842450 /* Products */ = {
497 | isa = PBXGroup;
498 | children = (
499 | 146834041AC3E56700842450 /* libReact.a */,
500 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
501 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
502 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
503 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
504 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
505 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
506 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
507 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
508 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
509 | 2DF0FFE32056DD460020B375 /* libthird-party.a */,
510 | 2DF0FFE52056DD460020B375 /* libthird-party.a */,
511 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
512 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
513 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
514 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
515 | );
516 | name = Products;
517 | sourceTree = "";
518 | };
519 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
520 | isa = PBXGroup;
521 | children = (
522 | 2D16E6891FA4F8E400B85C8A /* libReact.a */,
523 | );
524 | name = Frameworks;
525 | sourceTree = "";
526 | };
527 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
528 | isa = PBXGroup;
529 | children = (
530 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
531 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
532 | );
533 | name = Products;
534 | sourceTree = "";
535 | };
536 | 78C398B11ACF4ADC00677621 /* Products */ = {
537 | isa = PBXGroup;
538 | children = (
539 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
540 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
541 | );
542 | name = Products;
543 | sourceTree = "";
544 | };
545 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
546 | isa = PBXGroup;
547 | children = (
548 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
549 | 146833FF1AC3E56700842450 /* React.xcodeproj */,
550 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
551 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
552 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
553 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
554 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
555 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
556 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
557 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
558 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
559 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
560 | );
561 | name = Libraries;
562 | sourceTree = "";
563 | };
564 | 832341B11AAA6A8300B99B32 /* Products */ = {
565 | isa = PBXGroup;
566 | children = (
567 | 832341B51AAA6A8300B99B32 /* libRCTText.a */,
568 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
569 | );
570 | name = Products;
571 | sourceTree = "";
572 | };
573 | 83CBB9F61A601CBA00E9B192 = {
574 | isa = PBXGroup;
575 | children = (
576 | 13B07FAE1A68108700A75B9A /* Example */,
577 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
578 | 00E356EF1AD99517003FC87E /* ExampleTests */,
579 | 83CBBA001A601CBA00E9B192 /* Products */,
580 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
581 | );
582 | indentWidth = 2;
583 | sourceTree = "";
584 | tabWidth = 2;
585 | usesTabs = 0;
586 | };
587 | 83CBBA001A601CBA00E9B192 /* Products */ = {
588 | isa = PBXGroup;
589 | children = (
590 | 13B07F961A680F5B00A75B9A /* Example.app */,
591 | 00E356EE1AD99517003FC87E /* ExampleTests.xctest */,
592 | 2D02E47B1E0B4A5D006451C7 /* Example-tvOS.app */,
593 | 2D02E4901E0B4A5D006451C7 /* Example-tvOSTests.xctest */,
594 | );
595 | name = Products;
596 | sourceTree = "";
597 | };
598 | ADBDB9201DFEBF0600ED6528 /* Products */ = {
599 | isa = PBXGroup;
600 | children = (
601 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
602 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
603 | );
604 | name = Products;
605 | sourceTree = "";
606 | };
607 | /* End PBXGroup section */
608 |
609 | /* Begin PBXNativeTarget section */
610 | 00E356ED1AD99517003FC87E /* ExampleTests */ = {
611 | isa = PBXNativeTarget;
612 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleTests" */;
613 | buildPhases = (
614 | 00E356EA1AD99517003FC87E /* Sources */,
615 | 00E356EB1AD99517003FC87E /* Frameworks */,
616 | 00E356EC1AD99517003FC87E /* Resources */,
617 | );
618 | buildRules = (
619 | );
620 | dependencies = (
621 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
622 | );
623 | name = ExampleTests;
624 | productName = ExampleTests;
625 | productReference = 00E356EE1AD99517003FC87E /* ExampleTests.xctest */;
626 | productType = "com.apple.product-type.bundle.unit-test";
627 | };
628 | 13B07F861A680F5B00A75B9A /* Example */ = {
629 | isa = PBXNativeTarget;
630 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */;
631 | buildPhases = (
632 | 13B07F871A680F5B00A75B9A /* Sources */,
633 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
634 | 13B07F8E1A680F5B00A75B9A /* Resources */,
635 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
636 | );
637 | buildRules = (
638 | );
639 | dependencies = (
640 | );
641 | name = Example;
642 | productName = "Hello World";
643 | productReference = 13B07F961A680F5B00A75B9A /* Example.app */;
644 | productType = "com.apple.product-type.application";
645 | };
646 | 2D02E47A1E0B4A5D006451C7 /* Example-tvOS */ = {
647 | isa = PBXNativeTarget;
648 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Example-tvOS" */;
649 | buildPhases = (
650 | 2D02E4771E0B4A5D006451C7 /* Sources */,
651 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
652 | 2D02E4791E0B4A5D006451C7 /* Resources */,
653 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
654 | );
655 | buildRules = (
656 | );
657 | dependencies = (
658 | );
659 | name = "Example-tvOS";
660 | productName = "Example-tvOS";
661 | productReference = 2D02E47B1E0B4A5D006451C7 /* Example-tvOS.app */;
662 | productType = "com.apple.product-type.application";
663 | };
664 | 2D02E48F1E0B4A5D006451C7 /* Example-tvOSTests */ = {
665 | isa = PBXNativeTarget;
666 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Example-tvOSTests" */;
667 | buildPhases = (
668 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
669 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
670 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
671 | );
672 | buildRules = (
673 | );
674 | dependencies = (
675 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
676 | );
677 | name = "Example-tvOSTests";
678 | productName = "Example-tvOSTests";
679 | productReference = 2D02E4901E0B4A5D006451C7 /* Example-tvOSTests.xctest */;
680 | productType = "com.apple.product-type.bundle.unit-test";
681 | };
682 | /* End PBXNativeTarget section */
683 |
684 | /* Begin PBXProject section */
685 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
686 | isa = PBXProject;
687 | attributes = {
688 | LastUpgradeCheck = 0610;
689 | ORGANIZATIONNAME = Facebook;
690 | TargetAttributes = {
691 | 00E356ED1AD99517003FC87E = {
692 | CreatedOnToolsVersion = 6.2;
693 | TestTargetID = 13B07F861A680F5B00A75B9A;
694 | };
695 | 2D02E47A1E0B4A5D006451C7 = {
696 | CreatedOnToolsVersion = 8.2.1;
697 | ProvisioningStyle = Automatic;
698 | };
699 | 2D02E48F1E0B4A5D006451C7 = {
700 | CreatedOnToolsVersion = 8.2.1;
701 | ProvisioningStyle = Automatic;
702 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
703 | };
704 | };
705 | };
706 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */;
707 | compatibilityVersion = "Xcode 3.2";
708 | developmentRegion = English;
709 | hasScannedForEncodings = 0;
710 | knownRegions = (
711 | en,
712 | Base,
713 | );
714 | mainGroup = 83CBB9F61A601CBA00E9B192;
715 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
716 | projectDirPath = "";
717 | projectReferences = (
718 | {
719 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
720 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
721 | },
722 | {
723 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
724 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
725 | },
726 | {
727 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
728 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
729 | },
730 | {
731 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
732 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
733 | },
734 | {
735 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
736 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
737 | },
738 | {
739 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
740 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
741 | },
742 | {
743 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
744 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
745 | },
746 | {
747 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
748 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
749 | },
750 | {
751 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
752 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
753 | },
754 | {
755 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
756 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
757 | },
758 | {
759 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
760 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
761 | },
762 | {
763 | ProductGroup = 146834001AC3E56700842450 /* Products */;
764 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
765 | },
766 | );
767 | projectRoot = "";
768 | targets = (
769 | 13B07F861A680F5B00A75B9A /* Example */,
770 | 00E356ED1AD99517003FC87E /* ExampleTests */,
771 | 2D02E47A1E0B4A5D006451C7 /* Example-tvOS */,
772 | 2D02E48F1E0B4A5D006451C7 /* Example-tvOSTests */,
773 | );
774 | };
775 | /* End PBXProject section */
776 |
777 | /* Begin PBXReferenceProxy section */
778 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
779 | isa = PBXReferenceProxy;
780 | fileType = archive.ar;
781 | path = libRCTActionSheet.a;
782 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
783 | sourceTree = BUILT_PRODUCTS_DIR;
784 | };
785 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
786 | isa = PBXReferenceProxy;
787 | fileType = archive.ar;
788 | path = libRCTGeolocation.a;
789 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
790 | sourceTree = BUILT_PRODUCTS_DIR;
791 | };
792 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
793 | isa = PBXReferenceProxy;
794 | fileType = archive.ar;
795 | path = libRCTImage.a;
796 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
797 | sourceTree = BUILT_PRODUCTS_DIR;
798 | };
799 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
800 | isa = PBXReferenceProxy;
801 | fileType = archive.ar;
802 | path = libRCTNetwork.a;
803 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
804 | sourceTree = BUILT_PRODUCTS_DIR;
805 | };
806 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
807 | isa = PBXReferenceProxy;
808 | fileType = archive.ar;
809 | path = libRCTVibration.a;
810 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
811 | sourceTree = BUILT_PRODUCTS_DIR;
812 | };
813 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
814 | isa = PBXReferenceProxy;
815 | fileType = archive.ar;
816 | path = libRCTSettings.a;
817 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
818 | sourceTree = BUILT_PRODUCTS_DIR;
819 | };
820 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
821 | isa = PBXReferenceProxy;
822 | fileType = archive.ar;
823 | path = libRCTWebSocket.a;
824 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
825 | sourceTree = BUILT_PRODUCTS_DIR;
826 | };
827 | 146834041AC3E56700842450 /* libReact.a */ = {
828 | isa = PBXReferenceProxy;
829 | fileType = archive.ar;
830 | path = libReact.a;
831 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
832 | sourceTree = BUILT_PRODUCTS_DIR;
833 | };
834 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
835 | isa = PBXReferenceProxy;
836 | fileType = archive.ar;
837 | path = "libRCTBlob-tvOS.a";
838 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
839 | sourceTree = BUILT_PRODUCTS_DIR;
840 | };
841 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
842 | isa = PBXReferenceProxy;
843 | fileType = archive.ar;
844 | path = libfishhook.a;
845 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
846 | sourceTree = BUILT_PRODUCTS_DIR;
847 | };
848 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
849 | isa = PBXReferenceProxy;
850 | fileType = archive.ar;
851 | path = "libfishhook-tvOS.a";
852 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
853 | sourceTree = BUILT_PRODUCTS_DIR;
854 | };
855 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
856 | isa = PBXReferenceProxy;
857 | fileType = archive.ar;
858 | path = libjsinspector.a;
859 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
860 | sourceTree = BUILT_PRODUCTS_DIR;
861 | };
862 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
863 | isa = PBXReferenceProxy;
864 | fileType = archive.ar;
865 | path = "libjsinspector-tvOS.a";
866 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
867 | sourceTree = BUILT_PRODUCTS_DIR;
868 | };
869 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
870 | isa = PBXReferenceProxy;
871 | fileType = archive.ar;
872 | path = "libthird-party.a";
873 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
874 | sourceTree = BUILT_PRODUCTS_DIR;
875 | };
876 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
877 | isa = PBXReferenceProxy;
878 | fileType = archive.ar;
879 | path = "libthird-party.a";
880 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
881 | sourceTree = BUILT_PRODUCTS_DIR;
882 | };
883 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
884 | isa = PBXReferenceProxy;
885 | fileType = archive.ar;
886 | path = "libdouble-conversion.a";
887 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
888 | sourceTree = BUILT_PRODUCTS_DIR;
889 | };
890 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
891 | isa = PBXReferenceProxy;
892 | fileType = archive.ar;
893 | path = "libdouble-conversion.a";
894 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
895 | sourceTree = BUILT_PRODUCTS_DIR;
896 | };
897 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
898 | isa = PBXReferenceProxy;
899 | fileType = archive.ar;
900 | path = libprivatedata.a;
901 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
902 | sourceTree = BUILT_PRODUCTS_DIR;
903 | };
904 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
905 | isa = PBXReferenceProxy;
906 | fileType = archive.ar;
907 | path = "libprivatedata-tvOS.a";
908 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
909 | sourceTree = BUILT_PRODUCTS_DIR;
910 | };
911 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
912 | isa = PBXReferenceProxy;
913 | fileType = archive.ar;
914 | path = "libRCTImage-tvOS.a";
915 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
916 | sourceTree = BUILT_PRODUCTS_DIR;
917 | };
918 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
919 | isa = PBXReferenceProxy;
920 | fileType = archive.ar;
921 | path = "libRCTLinking-tvOS.a";
922 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
923 | sourceTree = BUILT_PRODUCTS_DIR;
924 | };
925 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
926 | isa = PBXReferenceProxy;
927 | fileType = archive.ar;
928 | path = "libRCTNetwork-tvOS.a";
929 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
930 | sourceTree = BUILT_PRODUCTS_DIR;
931 | };
932 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
933 | isa = PBXReferenceProxy;
934 | fileType = archive.ar;
935 | path = "libRCTSettings-tvOS.a";
936 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
937 | sourceTree = BUILT_PRODUCTS_DIR;
938 | };
939 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
940 | isa = PBXReferenceProxy;
941 | fileType = archive.ar;
942 | path = "libRCTText-tvOS.a";
943 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
944 | sourceTree = BUILT_PRODUCTS_DIR;
945 | };
946 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
947 | isa = PBXReferenceProxy;
948 | fileType = archive.ar;
949 | path = "libRCTWebSocket-tvOS.a";
950 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
951 | sourceTree = BUILT_PRODUCTS_DIR;
952 | };
953 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
954 | isa = PBXReferenceProxy;
955 | fileType = archive.ar;
956 | path = libReact.a;
957 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
958 | sourceTree = BUILT_PRODUCTS_DIR;
959 | };
960 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
961 | isa = PBXReferenceProxy;
962 | fileType = archive.ar;
963 | path = libyoga.a;
964 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
965 | sourceTree = BUILT_PRODUCTS_DIR;
966 | };
967 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
968 | isa = PBXReferenceProxy;
969 | fileType = archive.ar;
970 | path = libyoga.a;
971 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
972 | sourceTree = BUILT_PRODUCTS_DIR;
973 | };
974 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
975 | isa = PBXReferenceProxy;
976 | fileType = archive.ar;
977 | path = libcxxreact.a;
978 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
979 | sourceTree = BUILT_PRODUCTS_DIR;
980 | };
981 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
982 | isa = PBXReferenceProxy;
983 | fileType = archive.ar;
984 | path = libcxxreact.a;
985 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
986 | sourceTree = BUILT_PRODUCTS_DIR;
987 | };
988 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
989 | isa = PBXReferenceProxy;
990 | fileType = archive.ar;
991 | path = libjschelpers.a;
992 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
993 | sourceTree = BUILT_PRODUCTS_DIR;
994 | };
995 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
996 | isa = PBXReferenceProxy;
997 | fileType = archive.ar;
998 | path = libjschelpers.a;
999 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
1000 | sourceTree = BUILT_PRODUCTS_DIR;
1001 | };
1002 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1003 | isa = PBXReferenceProxy;
1004 | fileType = archive.ar;
1005 | path = libRCTAnimation.a;
1006 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1007 | sourceTree = BUILT_PRODUCTS_DIR;
1008 | };
1009 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1010 | isa = PBXReferenceProxy;
1011 | fileType = archive.ar;
1012 | path = libRCTAnimation.a;
1013 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1014 | sourceTree = BUILT_PRODUCTS_DIR;
1015 | };
1016 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
1017 | isa = PBXReferenceProxy;
1018 | fileType = archive.ar;
1019 | path = libRCTLinking.a;
1020 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
1021 | sourceTree = BUILT_PRODUCTS_DIR;
1022 | };
1023 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
1024 | isa = PBXReferenceProxy;
1025 | fileType = archive.ar;
1026 | path = libRCTText.a;
1027 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
1028 | sourceTree = BUILT_PRODUCTS_DIR;
1029 | };
1030 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
1031 | isa = PBXReferenceProxy;
1032 | fileType = archive.ar;
1033 | path = libRCTBlob.a;
1034 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
1035 | sourceTree = BUILT_PRODUCTS_DIR;
1036 | };
1037 | /* End PBXReferenceProxy section */
1038 |
1039 | /* Begin PBXResourcesBuildPhase section */
1040 | 00E356EC1AD99517003FC87E /* Resources */ = {
1041 | isa = PBXResourcesBuildPhase;
1042 | buildActionMask = 2147483647;
1043 | files = (
1044 | );
1045 | runOnlyForDeploymentPostprocessing = 0;
1046 | };
1047 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
1048 | isa = PBXResourcesBuildPhase;
1049 | buildActionMask = 2147483647;
1050 | files = (
1051 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1052 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1053 | );
1054 | runOnlyForDeploymentPostprocessing = 0;
1055 | };
1056 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
1057 | isa = PBXResourcesBuildPhase;
1058 | buildActionMask = 2147483647;
1059 | files = (
1060 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
1061 | );
1062 | runOnlyForDeploymentPostprocessing = 0;
1063 | };
1064 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
1065 | isa = PBXResourcesBuildPhase;
1066 | buildActionMask = 2147483647;
1067 | files = (
1068 | );
1069 | runOnlyForDeploymentPostprocessing = 0;
1070 | };
1071 | /* End PBXResourcesBuildPhase section */
1072 |
1073 | /* Begin PBXShellScriptBuildPhase section */
1074 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
1075 | isa = PBXShellScriptBuildPhase;
1076 | buildActionMask = 2147483647;
1077 | files = (
1078 | );
1079 | inputPaths = (
1080 | );
1081 | name = "Bundle React Native code and images";
1082 | outputPaths = (
1083 | );
1084 | runOnlyForDeploymentPostprocessing = 0;
1085 | shellPath = /bin/sh;
1086 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1087 | };
1088 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
1089 | isa = PBXShellScriptBuildPhase;
1090 | buildActionMask = 2147483647;
1091 | files = (
1092 | );
1093 | inputPaths = (
1094 | );
1095 | name = "Bundle React Native Code And Images";
1096 | outputPaths = (
1097 | );
1098 | runOnlyForDeploymentPostprocessing = 0;
1099 | shellPath = /bin/sh;
1100 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1101 | };
1102 | /* End PBXShellScriptBuildPhase section */
1103 |
1104 | /* Begin PBXSourcesBuildPhase section */
1105 | 00E356EA1AD99517003FC87E /* Sources */ = {
1106 | isa = PBXSourcesBuildPhase;
1107 | buildActionMask = 2147483647;
1108 | files = (
1109 | 00E356F31AD99517003FC87E /* ExampleTests.m in Sources */,
1110 | );
1111 | runOnlyForDeploymentPostprocessing = 0;
1112 | };
1113 | 13B07F871A680F5B00A75B9A /* Sources */ = {
1114 | isa = PBXSourcesBuildPhase;
1115 | buildActionMask = 2147483647;
1116 | files = (
1117 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
1118 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
1119 | );
1120 | runOnlyForDeploymentPostprocessing = 0;
1121 | };
1122 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
1123 | isa = PBXSourcesBuildPhase;
1124 | buildActionMask = 2147483647;
1125 | files = (
1126 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
1127 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
1128 | );
1129 | runOnlyForDeploymentPostprocessing = 0;
1130 | };
1131 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
1132 | isa = PBXSourcesBuildPhase;
1133 | buildActionMask = 2147483647;
1134 | files = (
1135 | 2DCD954D1E0B4F2C00145EB5 /* ExampleTests.m in Sources */,
1136 | );
1137 | runOnlyForDeploymentPostprocessing = 0;
1138 | };
1139 | /* End PBXSourcesBuildPhase section */
1140 |
1141 | /* Begin PBXTargetDependency section */
1142 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
1143 | isa = PBXTargetDependency;
1144 | target = 13B07F861A680F5B00A75B9A /* Example */;
1145 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
1146 | };
1147 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
1148 | isa = PBXTargetDependency;
1149 | target = 2D02E47A1E0B4A5D006451C7 /* Example-tvOS */;
1150 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
1151 | };
1152 | /* End PBXTargetDependency section */
1153 |
1154 | /* Begin PBXVariantGroup section */
1155 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
1156 | isa = PBXVariantGroup;
1157 | children = (
1158 | 13B07FB21A68108700A75B9A /* Base */,
1159 | );
1160 | name = LaunchScreen.xib;
1161 | path = Example;
1162 | sourceTree = "";
1163 | };
1164 | /* End PBXVariantGroup section */
1165 |
1166 | /* Begin XCBuildConfiguration section */
1167 | 00E356F61AD99517003FC87E /* Debug */ = {
1168 | isa = XCBuildConfiguration;
1169 | buildSettings = {
1170 | BUNDLE_LOADER = "$(TEST_HOST)";
1171 | GCC_PREPROCESSOR_DEFINITIONS = (
1172 | "DEBUG=1",
1173 | "$(inherited)",
1174 | );
1175 | INFOPLIST_FILE = ExampleTests/Info.plist;
1176 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1177 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1178 | OTHER_LDFLAGS = (
1179 | "-ObjC",
1180 | "-lc++",
1181 | );
1182 | PRODUCT_NAME = "$(TARGET_NAME)";
1183 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example.app/Example";
1184 | };
1185 | name = Debug;
1186 | };
1187 | 00E356F71AD99517003FC87E /* Release */ = {
1188 | isa = XCBuildConfiguration;
1189 | buildSettings = {
1190 | BUNDLE_LOADER = "$(TEST_HOST)";
1191 | COPY_PHASE_STRIP = NO;
1192 | INFOPLIST_FILE = ExampleTests/Info.plist;
1193 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1194 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1195 | OTHER_LDFLAGS = (
1196 | "-ObjC",
1197 | "-lc++",
1198 | );
1199 | PRODUCT_NAME = "$(TARGET_NAME)";
1200 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example.app/Example";
1201 | };
1202 | name = Release;
1203 | };
1204 | 13B07F941A680F5B00A75B9A /* Debug */ = {
1205 | isa = XCBuildConfiguration;
1206 | buildSettings = {
1207 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1208 | CURRENT_PROJECT_VERSION = 1;
1209 | DEAD_CODE_STRIPPING = NO;
1210 | INFOPLIST_FILE = Example/Info.plist;
1211 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1212 | OTHER_LDFLAGS = (
1213 | "$(inherited)",
1214 | "-ObjC",
1215 | "-lc++",
1216 | );
1217 | PRODUCT_NAME = Example;
1218 | VERSIONING_SYSTEM = "apple-generic";
1219 | };
1220 | name = Debug;
1221 | };
1222 | 13B07F951A680F5B00A75B9A /* Release */ = {
1223 | isa = XCBuildConfiguration;
1224 | buildSettings = {
1225 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1226 | CURRENT_PROJECT_VERSION = 1;
1227 | INFOPLIST_FILE = Example/Info.plist;
1228 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1229 | OTHER_LDFLAGS = (
1230 | "$(inherited)",
1231 | "-ObjC",
1232 | "-lc++",
1233 | );
1234 | PRODUCT_NAME = Example;
1235 | VERSIONING_SYSTEM = "apple-generic";
1236 | };
1237 | name = Release;
1238 | };
1239 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
1240 | isa = XCBuildConfiguration;
1241 | buildSettings = {
1242 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1243 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1244 | CLANG_ANALYZER_NONNULL = YES;
1245 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1246 | CLANG_WARN_INFINITE_RECURSION = YES;
1247 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1248 | DEBUG_INFORMATION_FORMAT = dwarf;
1249 | ENABLE_TESTABILITY = YES;
1250 | GCC_NO_COMMON_BLOCKS = YES;
1251 | INFOPLIST_FILE = "Example-tvOS/Info.plist";
1252 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1253 | OTHER_LDFLAGS = (
1254 | "-ObjC",
1255 | "-lc++",
1256 | );
1257 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Example-tvOS";
1258 | PRODUCT_NAME = "$(TARGET_NAME)";
1259 | SDKROOT = appletvos;
1260 | TARGETED_DEVICE_FAMILY = 3;
1261 | TVOS_DEPLOYMENT_TARGET = 9.2;
1262 | };
1263 | name = Debug;
1264 | };
1265 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
1266 | isa = XCBuildConfiguration;
1267 | buildSettings = {
1268 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1269 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1270 | CLANG_ANALYZER_NONNULL = YES;
1271 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1272 | CLANG_WARN_INFINITE_RECURSION = YES;
1273 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1274 | COPY_PHASE_STRIP = NO;
1275 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1276 | GCC_NO_COMMON_BLOCKS = YES;
1277 | INFOPLIST_FILE = "Example-tvOS/Info.plist";
1278 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1279 | OTHER_LDFLAGS = (
1280 | "-ObjC",
1281 | "-lc++",
1282 | );
1283 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Example-tvOS";
1284 | PRODUCT_NAME = "$(TARGET_NAME)";
1285 | SDKROOT = appletvos;
1286 | TARGETED_DEVICE_FAMILY = 3;
1287 | TVOS_DEPLOYMENT_TARGET = 9.2;
1288 | };
1289 | name = Release;
1290 | };
1291 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
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 | DEBUG_INFORMATION_FORMAT = dwarf;
1300 | ENABLE_TESTABILITY = YES;
1301 | GCC_NO_COMMON_BLOCKS = YES;
1302 | INFOPLIST_FILE = "Example-tvOSTests/Info.plist";
1303 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1304 | OTHER_LDFLAGS = (
1305 | "-ObjC",
1306 | "-lc++",
1307 | );
1308 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Example-tvOSTests";
1309 | PRODUCT_NAME = "$(TARGET_NAME)";
1310 | SDKROOT = appletvos;
1311 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example-tvOS.app/Example-tvOS";
1312 | TVOS_DEPLOYMENT_TARGET = 10.1;
1313 | };
1314 | name = Debug;
1315 | };
1316 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
1317 | isa = XCBuildConfiguration;
1318 | buildSettings = {
1319 | BUNDLE_LOADER = "$(TEST_HOST)";
1320 | CLANG_ANALYZER_NONNULL = YES;
1321 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1322 | CLANG_WARN_INFINITE_RECURSION = YES;
1323 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1324 | COPY_PHASE_STRIP = NO;
1325 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1326 | GCC_NO_COMMON_BLOCKS = YES;
1327 | INFOPLIST_FILE = "Example-tvOSTests/Info.plist";
1328 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1329 | OTHER_LDFLAGS = (
1330 | "-ObjC",
1331 | "-lc++",
1332 | );
1333 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Example-tvOSTests";
1334 | PRODUCT_NAME = "$(TARGET_NAME)";
1335 | SDKROOT = appletvos;
1336 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example-tvOS.app/Example-tvOS";
1337 | TVOS_DEPLOYMENT_TARGET = 10.1;
1338 | };
1339 | name = Release;
1340 | };
1341 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
1342 | isa = XCBuildConfiguration;
1343 | buildSettings = {
1344 | ALWAYS_SEARCH_USER_PATHS = NO;
1345 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1346 | CLANG_CXX_LIBRARY = "libc++";
1347 | CLANG_ENABLE_MODULES = YES;
1348 | CLANG_ENABLE_OBJC_ARC = YES;
1349 | CLANG_WARN_BOOL_CONVERSION = YES;
1350 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1351 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1352 | CLANG_WARN_EMPTY_BODY = YES;
1353 | CLANG_WARN_ENUM_CONVERSION = YES;
1354 | CLANG_WARN_INT_CONVERSION = YES;
1355 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1356 | CLANG_WARN_UNREACHABLE_CODE = YES;
1357 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1358 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1359 | COPY_PHASE_STRIP = NO;
1360 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1361 | GCC_C_LANGUAGE_STANDARD = gnu99;
1362 | GCC_DYNAMIC_NO_PIC = NO;
1363 | GCC_OPTIMIZATION_LEVEL = 0;
1364 | GCC_PREPROCESSOR_DEFINITIONS = (
1365 | "DEBUG=1",
1366 | "$(inherited)",
1367 | );
1368 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
1369 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1370 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1371 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1372 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1373 | GCC_WARN_UNUSED_FUNCTION = YES;
1374 | GCC_WARN_UNUSED_VARIABLE = YES;
1375 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1376 | MTL_ENABLE_DEBUG_INFO = YES;
1377 | ONLY_ACTIVE_ARCH = YES;
1378 | SDKROOT = iphoneos;
1379 | };
1380 | name = Debug;
1381 | };
1382 | 83CBBA211A601CBA00E9B192 /* Release */ = {
1383 | isa = XCBuildConfiguration;
1384 | buildSettings = {
1385 | ALWAYS_SEARCH_USER_PATHS = NO;
1386 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1387 | CLANG_CXX_LIBRARY = "libc++";
1388 | CLANG_ENABLE_MODULES = YES;
1389 | CLANG_ENABLE_OBJC_ARC = YES;
1390 | CLANG_WARN_BOOL_CONVERSION = YES;
1391 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1392 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1393 | CLANG_WARN_EMPTY_BODY = YES;
1394 | CLANG_WARN_ENUM_CONVERSION = YES;
1395 | CLANG_WARN_INT_CONVERSION = YES;
1396 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1397 | CLANG_WARN_UNREACHABLE_CODE = YES;
1398 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1399 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1400 | COPY_PHASE_STRIP = YES;
1401 | ENABLE_NS_ASSERTIONS = NO;
1402 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1403 | GCC_C_LANGUAGE_STANDARD = gnu99;
1404 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1405 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1406 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1407 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1408 | GCC_WARN_UNUSED_FUNCTION = YES;
1409 | GCC_WARN_UNUSED_VARIABLE = YES;
1410 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1411 | MTL_ENABLE_DEBUG_INFO = NO;
1412 | SDKROOT = iphoneos;
1413 | VALIDATE_PRODUCT = YES;
1414 | };
1415 | name = Release;
1416 | };
1417 | /* End XCBuildConfiguration section */
1418 |
1419 | /* Begin XCConfigurationList section */
1420 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleTests" */ = {
1421 | isa = XCConfigurationList;
1422 | buildConfigurations = (
1423 | 00E356F61AD99517003FC87E /* Debug */,
1424 | 00E356F71AD99517003FC87E /* Release */,
1425 | );
1426 | defaultConfigurationIsVisible = 0;
1427 | defaultConfigurationName = Release;
1428 | };
1429 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */ = {
1430 | isa = XCConfigurationList;
1431 | buildConfigurations = (
1432 | 13B07F941A680F5B00A75B9A /* Debug */,
1433 | 13B07F951A680F5B00A75B9A /* Release */,
1434 | );
1435 | defaultConfigurationIsVisible = 0;
1436 | defaultConfigurationName = Release;
1437 | };
1438 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Example-tvOS" */ = {
1439 | isa = XCConfigurationList;
1440 | buildConfigurations = (
1441 | 2D02E4971E0B4A5E006451C7 /* Debug */,
1442 | 2D02E4981E0B4A5E006451C7 /* Release */,
1443 | );
1444 | defaultConfigurationIsVisible = 0;
1445 | defaultConfigurationName = Release;
1446 | };
1447 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Example-tvOSTests" */ = {
1448 | isa = XCConfigurationList;
1449 | buildConfigurations = (
1450 | 2D02E4991E0B4A5E006451C7 /* Debug */,
1451 | 2D02E49A1E0B4A5E006451C7 /* Release */,
1452 | );
1453 | defaultConfigurationIsVisible = 0;
1454 | defaultConfigurationName = Release;
1455 | };
1456 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */ = {
1457 | isa = XCConfigurationList;
1458 | buildConfigurations = (
1459 | 83CBBA201A601CBA00E9B192 /* Debug */,
1460 | 83CBBA211A601CBA00E9B192 /* Release */,
1461 | );
1462 | defaultConfigurationIsVisible = 0;
1463 | defaultConfigurationName = Release;
1464 | };
1465 | /* End XCConfigurationList section */
1466 | };
1467 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1468 | }
1469 |
--------------------------------------------------------------------------------