├── .watchmanconfig ├── .gitattributes ├── app.json ├── babel.config.js ├── screenshots ├── img.41.png ├── img.47.png ├── img.49.png ├── img.58.png └── img.59.png ├── android ├── 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 │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── Entypo.ttf │ │ │ │ │ ├── Zocial.ttf │ │ │ │ │ ├── AntDesign.ttf │ │ │ │ │ ├── EvilIcons.ttf │ │ │ │ │ ├── Feather.ttf │ │ │ │ │ ├── Fontisto.ttf │ │ │ │ │ ├── Ionicons.ttf │ │ │ │ │ ├── Octicons.ttf │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ ├── Foundation.ttf │ │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ │ └── MaterialCommunityIcons.ttf │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── instastories │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ └── AndroidManifest.xml │ │ └── debug │ │ │ └── AndroidManifest.xml │ ├── build_defs.bzl │ ├── proguard-rules.pro │ ├── BUCK │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── keystores │ ├── debug.keystore.properties │ └── BUCK ├── settings.gradle ├── gradle.properties ├── build.gradle ├── gradlew.bat └── gradlew ├── ios ├── InstaStories │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── AppDelegate.h │ ├── main.m │ ├── AppDelegate.m │ ├── Info.plist │ └── Base.lproj │ │ └── LaunchScreen.xib ├── InstaStoriesTests │ ├── Info.plist │ └── InstaStoriesTests.m ├── InstaStories-tvOSTests │ └── Info.plist ├── InstaStories-tvOS │ └── Info.plist └── InstaStories.xcodeproj │ ├── xcshareddata │ └── xcschemes │ │ ├── InstaStories.xcscheme │ │ └── InstaStories-tvOS.xcscheme │ └── project.pbxproj ├── .buckconfig ├── index.js ├── __tests__ └── App-test.js ├── metro.config.js ├── App.js ├── .eslintrc.js ├── .gitignore ├── package.json ├── src ├── components │ ├── Readmore.js │ ├── ProgressArray.js │ ├── UserView.js │ ├── Story.js │ ├── ProgressBar.js │ └── StoryContainer.js ├── constants │ └── AllStories.js └── screens │ └── Stories.js ├── .flowconfig └── README.md /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "InstaStories", 3 | "displayName": "InstaStories" 4 | } -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /screenshots/img.41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/screenshots/img.41.png -------------------------------------------------------------------------------- /screenshots/img.47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/screenshots/img.47.png -------------------------------------------------------------------------------- /screenshots/img.49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/screenshots/img.49.png -------------------------------------------------------------------------------- /screenshots/img.58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/screenshots/img.58.png -------------------------------------------------------------------------------- /screenshots/img.59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/screenshots/img.59.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | InstaStories 3 | 4 | -------------------------------------------------------------------------------- /ios/InstaStories/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamitkhatkar/react-native-stories/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: false, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable react/prefer-stateless-function */ 2 | 3 | import React, { Component } from 'react'; 4 | import { Platform, StyleSheet, Text, View } from 'react-native'; 5 | import Stories from './src/screens/Stories'; 6 | 7 | console.disableYellowBox = true; 8 | 9 | export default class App extends Component { 10 | render() { 11 | return ( 12 | 13 | ); 14 | } 15 | } 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'InstaStories' 2 | include ':react-native-video' 3 | project(':react-native-video').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android-exoplayer') 4 | include ':react-native-vector-icons' 5 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 6 | 7 | include ':app' 8 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/InstaStories/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (nonatomic, strong) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios/InstaStories/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/instastories/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.instastories; 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 "InstaStories"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ios/InstaStories/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/InstaStoriesTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/InstaStories-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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "env": { 3 | "browser": true, 4 | "commonjs": true, 5 | "es6": true 6 | 7 | }, 8 | "extends": ["airbnb"], 9 | "parser": "babel-eslint", 10 | "parserOptions": { 11 | "ecmaFeatures": { 12 | "jsx": true 13 | }, 14 | "ecmaVersion": 2018, 15 | "sourceType": "module" 16 | }, 17 | "plugins": [ 18 | "react", 19 | ], 20 | "rules": { 21 | "no-unused-vars": ["warn", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }], 22 | "no-use-before-define": 0, 23 | "no-alert" : 0, 24 | "react/prop-types": 0, 25 | "react/jsx-filename-extension": 0, 26 | "import/no-unresolved": 0, 27 | "object-curly-newline" : 0, 28 | "react/destructuring-assignment" : 0, 29 | "react/require-default-props" : 0, 30 | "react/forbid-prop-types" : 0, 31 | "react/no-string-refs" : 0, 32 | }, 33 | }; -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "28.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | supportLibVersion = "28.0.0" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath("com.android.tools.build:gradle:3.4.0") 17 | 18 | // NOTE: Do not place your application dependencies here; they belong 19 | // in the individual module build.gradle files 20 | } 21 | } 22 | 23 | allprojects { 24 | repositories { 25 | mavenLocal() 26 | google() 27 | jcenter() 28 | maven { 29 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 30 | url "$rootDir/../node_modules/react-native/android" 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "InstaStories", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start --reset-cache", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "prop-types": "^15.7.2", 11 | "react": "16.8.3", 12 | "react-native": "0.59.10", 13 | "react-native-3dcube-navigation": "^1.0.4", 14 | "react-native-modalbox": "^1.7.1", 15 | "react-native-scalable-image": "^0.5.1", 16 | "react-native-swipe-gestures": "^1.0.3", 17 | "react-native-vector-icons": "^6.6.0", 18 | "react-native-video": "^4.4.2" 19 | }, 20 | "devDependencies": { 21 | "@babel/core": "^7.4.5", 22 | "@babel/runtime": "^7.4.5", 23 | "babel-jest": "^24.8.0", 24 | "jest": "^24.8.0", 25 | "metro-react-native-babel-preset": "^0.54.1", 26 | "react-test-renderer": "16.8.3", 27 | "babel-eslint": "^10.0.1", 28 | "eslint": "^5.15.1", 29 | "eslint-config-airbnb": "^17.1.0", 30 | "eslint-config-prettier": "^4.1.0", 31 | "eslint-import-resolver-alias": "^1.1.2", 32 | "eslint-plugin-import": "^2.16.0", 33 | "eslint-plugin-jsx-a11y": "^6.2.1", 34 | "eslint-plugin-prettier": "^3.0.1", 35 | "eslint-plugin-react": "^7.12.4", 36 | "prettier": "^1.16.4" 37 | }, 38 | "jest": { 39 | "preset": "react-native" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/instastories/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.instastories; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.brentvatne.react.ReactVideoPackage; 7 | import com.oblador.vectoricons.VectorIconsPackage; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.shell.MainReactPackage; 11 | import com.facebook.soloader.SoLoader; 12 | 13 | import java.util.Arrays; 14 | import java.util.List; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 19 | @Override 20 | public boolean getUseDeveloperSupport() { 21 | return BuildConfig.DEBUG; 22 | } 23 | 24 | @Override 25 | protected List getPackages() { 26 | return Arrays.asList( 27 | new MainReactPackage(), 28 | new ReactVideoPackage(), 29 | new VectorIconsPackage() 30 | ); 31 | } 32 | 33 | @Override 34 | protected String getJSMainModuleName() { 35 | return "index"; 36 | } 37 | }; 38 | 39 | @Override 40 | public ReactNativeHost getReactNativeHost() { 41 | return mReactNativeHost; 42 | } 43 | 44 | @Override 45 | public void onCreate() { 46 | super.onCreate(); 47 | SoLoader.init(this, /* native exopackage */ false); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /src/components/Readmore.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; 3 | import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; 4 | 5 | // eslint-disable-next-line react/prefer-stateless-function 6 | class Readmore extends React.Component { 7 | // eslint-disable-next-line no-useless-constructor 8 | constructor(props) { 9 | super(props); 10 | } 11 | 12 | render() { 13 | const { 14 | onReadMore, 15 | } = this.props; 16 | 17 | return ( 18 | 19 | 20 | 21 | 22 | Read More 23 | 24 | ); 25 | } 26 | } 27 | 28 | const styles = StyleSheet.create({ 29 | readMore: { 30 | width: 40, 31 | height: 40, 32 | borderRadius: 20, 33 | justifyContent: 'center', 34 | alignItems: 'center', 35 | borderColor: 'white', 36 | borderWidth: 2, 37 | }, 38 | readText: { 39 | fontSize: 18, 40 | fontWeight: '500', 41 | marginLeft: 12, 42 | color: 'white', 43 | marginTop: 8, 44 | }, 45 | readMoreWrapper: { 46 | position: 'absolute', 47 | bottom: 25, 48 | width: '98%', 49 | justifyContent: 'space-between', 50 | alignItems: 'center', 51 | }, 52 | }); 53 | 54 | export default Readmore; 55 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.instastories", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.instastories", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /src/components/ProgressArray.js: -------------------------------------------------------------------------------- 1 | import React, { useEffect, useRef } from 'react'; 2 | import { Animated, StyleSheet } from 'react-native'; 3 | import ProgressBar from './ProgressBar'; 4 | 5 | const ProgressArray = (props) => { 6 | const opacity = useRef(new Animated.Value(1)).current; 7 | 8 | useEffect(() => { 9 | if (props.pause) { 10 | Animated.timing(opacity, { 11 | toValue: 0, 12 | timing: 300, 13 | }).start(); 14 | } else { 15 | Animated.timing(opacity, { 16 | toValue: 1, 17 | timing: 300, 18 | }).start(); 19 | } 20 | }, [props.pause]); 21 | 22 | return ( 23 | 24 | {props.length.map((i, index) => ( 25 | 36 | )) 37 | } 38 | 39 | ); 40 | }; 41 | 42 | const styles = StyleSheet.create({ 43 | progressBarArray: { 44 | flexDirection: 'row', 45 | position: 'absolute', 46 | top: 30, 47 | width: '98%', 48 | height: 10, 49 | justifyContent: 'space-between', 50 | alignItems: 'center', 51 | }, 52 | }); 53 | 54 | export default ProgressArray; 55 | -------------------------------------------------------------------------------- /ios/InstaStories/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | #import 13 | 14 | @implementation AppDelegate 15 | 16 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 17 | { 18 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 19 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 20 | moduleName:@"InstaStories" 21 | initialProperties:nil]; 22 | 23 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 24 | 25 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 26 | UIViewController *rootViewController = [UIViewController new]; 27 | rootViewController.view = rootView; 28 | self.window.rootViewController = rootViewController; 29 | [self.window makeKeyAndVisible]; 30 | return YES; 31 | } 32 | 33 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 34 | { 35 | #if DEBUG 36 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 37 | #else 38 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 39 | #endif 40 | } 41 | 42 | @end 43 | -------------------------------------------------------------------------------- /src/components/UserView.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | import React from 'react'; 3 | import { Image, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; 4 | import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; 5 | 6 | class UserView extends React.PureComponent { 7 | constructor(props) { 8 | super(props); 9 | } 10 | 11 | render() { 12 | const { 13 | props, 14 | } = this; 15 | 16 | return ( 17 | 18 | 22 | 23 | {props.name} 24 | Posted 2h ago 25 | 26 | 27 | 33 | 34 | 35 | ); 36 | } 37 | } 38 | 39 | const styles = StyleSheet.create({ 40 | image: { 41 | width: 50, 42 | height: 50, 43 | borderRadius: 25, 44 | marginLeft: 8, 45 | }, 46 | userView: { 47 | flexDirection: 'row', 48 | position: 'absolute', 49 | top: 55, 50 | width: '98%', 51 | alignItems: 'center', 52 | }, 53 | name: { 54 | fontSize: 18, 55 | fontWeight: '500', 56 | marginLeft: 12, 57 | color: 'white', 58 | }, 59 | time: { 60 | fontSize: 12, 61 | fontWeight: '400', 62 | marginTop: 3, 63 | marginLeft: 12, 64 | color: 'white', 65 | }, 66 | }); 67 | 68 | export default UserView; 69 | -------------------------------------------------------------------------------- /ios/InstaStories-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 | -------------------------------------------------------------------------------- /src/components/Story.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable react/no-unused-prop-types */ 2 | import React from 'react'; 3 | import { Dimensions, Image, StyleSheet, View } from 'react-native'; 4 | import Video from 'react-native-video'; 5 | // import Image from 'react-native-scalable-image'; 6 | import PropTypes from 'prop-types'; 7 | 8 | const ScreenWidth = Dimensions.get('window').width; 9 | 10 | const Story = (props) => { 11 | const { story } = props; 12 | const { url, type } = story || {}; 13 | 14 | return ( 15 | 16 | {/* {!props.isLoaded && ( 17 | 18 | 19 | 20 | )} */} 21 | {type === 'image' ? ( 22 | 29 | ) 30 | : ( 31 | 39 | ); 40 | }; 41 | 42 | Story.propTypes = { 43 | story: PropTypes.oneOfType([ 44 | PropTypes.object, 45 | PropTypes.string, 46 | ]), 47 | }; 48 | 49 | 50 | const styles = StyleSheet.create({ 51 | container: { 52 | flex: 1, 53 | width: '100%', 54 | backgroundColor: 'gray', 55 | justifyContent: 'center', 56 | alignItems: 'center', 57 | }, 58 | content: { width: '100%', 59 | height: '100%', 60 | flex: 1, 61 | }, 62 | imageContent: { 63 | width: '100%', 64 | height: '100%', 65 | flex: 1, 66 | }, 67 | loading: { 68 | backgroundColor: 'black', 69 | height: '100%', 70 | width: '100%', 71 | alignItems: 'center', 72 | justifyContent: 'center', 73 | }, 74 | 75 | }); 76 | 77 | export default Story; 78 | -------------------------------------------------------------------------------- /ios/InstaStoriesTests/InstaStoriesTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface InstaStoriesTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation InstaStoriesTests 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 | -------------------------------------------------------------------------------- /ios/InstaStories/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | InstaStories 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSLocationWhenInUseUsageDescription 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UIViewControllerBasedStatusBarAppearance 42 | 43 | NSAppTransportSecurity 44 | 45 | NSAllowsArbitraryLoads 46 | 47 | NSExceptionDomains 48 | 49 | localhost 50 | 51 | NSExceptionAllowsInsecureHTTPLoads 52 | 53 | 54 | 55 | 56 | UIAppFonts 57 | 58 | AntDesign.ttf 59 | Entypo.ttf 60 | EvilIcons.ttf 61 | Feather.ttf 62 | FontAwesome.ttf 63 | FontAwesome5_Brands.ttf 64 | FontAwesome5_Regular.ttf 65 | FontAwesome5_Solid.ttf 66 | Fontisto.ttf 67 | Foundation.ttf 68 | Ionicons.ttf 69 | MaterialCommunityIcons.ttf 70 | MaterialIcons.ttf 71 | Octicons.ttf 72 | SimpleLineIcons.ttf 73 | Zocial.ttf 74 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /.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 | 28 | [options] 29 | emoji=true 30 | 31 | esproposal.optional_chaining=enable 32 | esproposal.nullish_coalescing=enable 33 | 34 | module.system=haste 35 | module.system.haste.use_name_reducers=true 36 | # get basename 37 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1' 38 | # strip .js or .js.flow suffix 39 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1' 40 | # strip .ios suffix 41 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1' 42 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1' 43 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1' 44 | module.system.haste.paths.blacklist=.*/__tests__/.* 45 | module.system.haste.paths.blacklist=.*/__mocks__/.* 46 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.* 47 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.* 48 | 49 | munge_underscores=true 50 | 51 | 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' 52 | 53 | module.file_ext=.js 54 | module.file_ext=.jsx 55 | module.file_ext=.json 56 | module.file_ext=.native.js 57 | 58 | suppress_type=$FlowIssue 59 | suppress_type=$FlowFixMe 60 | suppress_type=$FlowFixMeProps 61 | suppress_type=$FlowFixMeState 62 | 63 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 64 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 65 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 66 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 67 | 68 | [version] 69 | ^0.92.0 70 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## react-native-instagram-stories 👈🏻 2 | 3 | A React Native component to create Instagram/Snapchat like stories on the mobile. It supports both Android and iOS. 4 | It provides control over the story duration and loading indicator with cubic transition similar to Instagram. 5 | 6 | ## Installation ✨ 7 | 8 | So far we didnt create any library to ship it via package.json. But you can checkout the below output via these simple steps 9 | 10 | 1.`yarn` or `npm install` 11 | 12 | 2.`react-native-link` to link Native Libraries 13 | 14 | 3.`react-native run-ios` or `react-native run-android` 15 | 16 | ## Screenshots ✨ 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
34 | 35 | ## Contributors ✨ 36 | 37 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 |
Amit Khatkar
Amit Khatkar

Trinadh Koya
Trinadh Koya

51 | 52 | 53 | 54 | This project follows the [all-contributors](https://allcontributors.org) specification. 55 | Contributions of any kind are welcome! 56 | 57 | ## LICENSE 58 | 59 | [MIT](LICENSE) 60 | -------------------------------------------------------------------------------- /src/components/ProgressBar.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-underscore-dangle */ 2 | /* eslint-disable no-nested-ternary */ 3 | import React, { useEffect, useRef, useState } from 'react'; 4 | import { Animated, Easing, StyleSheet, View } from 'react-native'; 5 | import PropTypes from 'prop-types'; 6 | 7 | const ProgressBar = (props) => { 8 | const { index, currentIndex, duration, length, active } = props; 9 | const [pauseTime, setPauseTime] = useState(null); 10 | const [startTime, setStartTime] = useState(null); 11 | const scale = useRef(new Animated.Value(0)).current; 12 | const [width, setWidth] = useState(0); 13 | 14 | const onLayoutAdded = (evt) => { 15 | setWidth(evt.width); 16 | }; 17 | 18 | useEffect(() => { 19 | switch (active) { 20 | case 2: 21 | return scale.setValue(width); 22 | case 1: 23 | return props.isLoaded && !props.isNewStory ? Animated.timing(scale, { 24 | toValue: width, 25 | duration: getDuration(), 26 | easing: Easing.linear, 27 | }).start(({ finished }) => { 28 | if (finished) props.next(); 29 | }) 30 | : scale.setValue(0); 31 | case 0: 32 | return scale.setValue(0); 33 | default: 34 | return scale.setValue(0); 35 | } 36 | }); 37 | 38 | const getDuration = () => { 39 | const totalPlaytime = duration * 1000; 40 | 41 | if (props.pause) { 42 | return 50000; 43 | } 44 | 45 | if (pauseTime === null) { 46 | return totalPlaytime; 47 | } 48 | 49 | const lastTime = pauseTime - startTime; 50 | return totalPlaytime - lastTime; 51 | }; 52 | 53 | useEffect(() => { 54 | if (index === currentIndex) { 55 | if (props.pause) { 56 | const endtime = Date.now(); 57 | console.log('endtime', endtime); 58 | setPauseTime(endtime); 59 | } 60 | 61 | if (startTime === null) { 62 | setStartTime(Date.now()); 63 | } 64 | } 65 | }, [props.pause]); 66 | 67 | 68 | return ( 69 | onLayoutAdded(evt.nativeEvent.layout)} style={styles.container}> 70 | 78 | 79 | ); 80 | }; 81 | 82 | ProgressBar.propTypes = ({ 83 | index: PropTypes.number, 84 | currentIndex: PropTypes.number, 85 | }); 86 | 87 | const styles = StyleSheet.create({ 88 | container: { 89 | height: 4, 90 | flex: 1, 91 | backgroundColor: '#555', 92 | margin: 2, 93 | }, 94 | }); 95 | 96 | export default ProgressBar; 97 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem http://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 33 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 34 | 35 | @rem Find java.exe 36 | if defined JAVA_HOME goto findJavaFromJavaHome 37 | 38 | set JAVA_EXE=java.exe 39 | %JAVA_EXE% -version >NUL 2>&1 40 | if "%ERRORLEVEL%" == "0" goto init 41 | 42 | echo. 43 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 44 | echo. 45 | echo Please set the JAVA_HOME variable in your environment to match the 46 | echo location of your Java installation. 47 | 48 | goto fail 49 | 50 | :findJavaFromJavaHome 51 | set JAVA_HOME=%JAVA_HOME:"=% 52 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 53 | 54 | if exist "%JAVA_EXE%" goto init 55 | 56 | echo. 57 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 58 | echo. 59 | echo Please set the JAVA_HOME variable in your environment to match the 60 | echo location of your Java installation. 61 | 62 | goto fail 63 | 64 | :init 65 | @rem Get command-line arguments, handling Windows variants 66 | 67 | if not "%OS%" == "Windows_NT" goto win9xME_args 68 | 69 | :win9xME_args 70 | @rem Slurp the command line arguments. 71 | set CMD_LINE_ARGS= 72 | set _SKIP=2 73 | 74 | :win9xME_args_slurp 75 | if "x%~1" == "x" goto execute 76 | 77 | set CMD_LINE_ARGS=%* 78 | 79 | :execute 80 | @rem Setup the command line 81 | 82 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 83 | 84 | @rem Execute Gradle 85 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 86 | 87 | :end 88 | @rem End local scope for the variables with windows NT shell 89 | if "%ERRORLEVEL%"=="0" goto mainEnd 90 | 91 | :fail 92 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 93 | rem the _cmd.exe /c_ return code! 94 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 95 | exit /b 1 96 | 97 | :mainEnd 98 | if "%OS%"=="Windows_NT" endlocal 99 | 100 | :omega 101 | -------------------------------------------------------------------------------- /ios/InstaStories/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 | -------------------------------------------------------------------------------- /src/constants/AllStories.js: -------------------------------------------------------------------------------- 1 | const stories = [ 2 | { 3 | username: 'Amit', 4 | title: 'Pune Dairies', 5 | profile: 'https://avatars0.githubusercontent.com/u/16208872?s=460&v=4', 6 | stories: [ 7 | { 8 | id: 1, 9 | url: 'https://images.unsplash.com/photo-1532579853048-ec5f8f15f88d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60', 10 | type: 'image', 11 | duration: 2, 12 | isReadMore: true, 13 | }, 14 | ], 15 | }, 16 | { 17 | username: 'Trinadh', 18 | profile: 'https://avatars2.githubusercontent.com/u/45196619?s=460&v=4', 19 | title: 'My Gallery', 20 | stories: [ 21 | { 22 | id: 1, 23 | url: 'https://images.unsplash.com/photo-1500099817043-86d46000d58f?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60', 24 | type: 'image', 25 | duration: 2, 26 | isReadMore: true, 27 | }, 28 | { 29 | id: 2, 30 | url: 'https://images.unsplash.com/photo-1476292026003-1df8db2694b8?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60', 31 | type: 'image', 32 | duration: 2, 33 | isSeen: false, 34 | isReadMore: true, 35 | isPaused: true, 36 | }, 37 | { 38 | id: 3, 39 | url: 'https://images.unsplash.com/photo-1498982261566-1c28c9cf4c02?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60', 40 | type: 'image', 41 | duration: 2, 42 | isSeen: false, 43 | isReadMore: true, 44 | isPaused: true, 45 | }, 46 | ], 47 | }, 48 | { 49 | username: 'Steve Jobs', 50 | profile: 'https://s3.amazonaws.com/media.eremedia.com/uploads/2012/05/15181015/stevejobs.jpg', 51 | title: ' Beach Moves', 52 | stories: [ 53 | { 54 | id: 1, 55 | url: 'https://images.unsplash.com/photo-1515578706925-0dc1a7bfc8cb?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60', 56 | type: 'image', 57 | duration: 2, 58 | isReadMore: true, 59 | }, 60 | { 61 | id: 3, 62 | url: 'https://images.unsplash.com/photo-1496287437689-3c24997cca99?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60', 63 | type: 'image', 64 | duration: 2, 65 | isSeen: false, 66 | isReadMore: true, 67 | isPaused: true, 68 | }, 69 | { 70 | id: 4, 71 | url: 'https://images.unsplash.com/photo-1514870262631-55de0332faf6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60', 72 | type: 'image', 73 | duration: 2, 74 | isSeen: false, 75 | isReadMore: true, 76 | isPaused: true, 77 | }, 78 | 79 | ], 80 | }, 81 | { 82 | username: 'Rahul', 83 | profile: 'https://images.unsplash.com/profile-1531581190171-0cf831d86212?dpr=2&auto=format&fit=crop&w=150&h=150&q=60&crop=faces&bg=fff', 84 | title: 'Beauties @Beach', 85 | stories: [ 86 | { 87 | id: 4, 88 | url: 'https://images.unsplash.com/photo-1512101176959-c557f3516787?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60', 89 | type: 'image', 90 | duration: 2, 91 | isReadMore: true, 92 | }, 93 | { 94 | id: 5, 95 | url: 'https://images.unsplash.com/photo-1478397453044-17bb5f994100?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60', 96 | type: 'image', 97 | duration: 2, 98 | isSeen: false, 99 | isReadMore: true, 100 | isPaused: true, 101 | }, 102 | { 103 | id: 4, 104 | url: 'https://images.unsplash.com/photo-1505118380757-91f5f5632de0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=581&q=80', 105 | type: 'image', 106 | duration: 2, 107 | isSeen: false, 108 | isReadMore: true, 109 | isPaused: true, 110 | }, 111 | ], 112 | }, 113 | ]; 114 | 115 | export default stories; 116 | -------------------------------------------------------------------------------- /src/screens/Stories.js: -------------------------------------------------------------------------------- 1 | import React, { useRef, useState } from 'react'; 2 | import { FlatList, Image, Modal, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; 3 | // import Modal from 'react-native-modalbox'; 4 | import { CubeNavigationHorizontal } from 'react-native-3dcube-navigation'; 5 | import AllStories from '../constants/AllStories'; 6 | import StoryContainer from '../components/StoryContainer'; 7 | 8 | 9 | const Stories = (props) => { 10 | const [isModelOpen, setModel] = useState(false); 11 | const [currentUserIndex, setCurrentUserIndex] = useState(0); 12 | const [currentScrollValue, setCurrentScrollValue] = useState(0); 13 | const modalScroll = useRef(null); 14 | 15 | const onStorySelect = (index) => { 16 | setCurrentUserIndex(index); 17 | setModel(true); 18 | }; 19 | 20 | const onStoryClose = () => { 21 | setModel(false); 22 | }; 23 | 24 | const onStoryNext = (isScroll) => { 25 | const newIndex = currentUserIndex + 1; 26 | if (AllStories.length - 1 > currentUserIndex) { 27 | setCurrentUserIndex(newIndex); 28 | if (!isScroll) { 29 | modalScroll.current.scrollTo(newIndex, true); 30 | } 31 | } else { 32 | setModel(false); 33 | } 34 | }; 35 | 36 | const onStoryPrevious = (isScroll) => { 37 | const newIndex = currentUserIndex - 1; 38 | if (currentUserIndex > 0) { 39 | setCurrentUserIndex(newIndex); 40 | if (!isScroll) { 41 | modalScroll.current.scrollTo(newIndex, true); 42 | } 43 | } 44 | }; 45 | 46 | const onScrollChange = (scrollValue) => { 47 | if (currentScrollValue > scrollValue) { 48 | onStoryNext(true); 49 | console.log('next'); 50 | setCurrentScrollValue(scrollValue); 51 | } 52 | if (currentScrollValue < scrollValue) { 53 | onStoryPrevious(); 54 | console.log('previous'); 55 | setCurrentScrollValue(scrollValue); 56 | } 57 | }; 58 | 59 | const renderSeperator = () => ( 60 | 61 | ); 62 | 63 | return ( 64 | 65 | ( 69 | onStorySelect(index)}> 70 | 75 | {item.title} 76 | 77 | 78 | )} 79 | /> 80 | 81 | 82 | ( 87 | onStorySelect(index)} style={{ flexDirection: 'row', alignItems: 'center' }}> 88 | 92 | {item.title} 93 | 94 | 95 | )} 96 | /> 97 | 98 | 99 | { 105 | if (currentUserIndex > 0) { 106 | modalScroll.current.scrollTo(currentUserIndex, false); 107 | } 108 | }} 109 | onRequestClose={onStoryClose} 110 | > 111 | {/* eslint-disable-next-line max-len */} 112 | onScrollChange(g)} ref={modalScroll} style={styles.container}> 113 | {AllStories.map((item, index) => ( 114 | 121 | ))} 122 | 123 | 124 | 125 | ); 126 | }; 127 | 128 | const styles = StyleSheet.create({ 129 | container: { 130 | flex: 1, 131 | justifyContent: 'flex-start', 132 | paddingVertical: 50, 133 | backgroundColor: 'rgba(255,255,255,255)', 134 | }, 135 | circle: { 136 | width: 66, 137 | margin: 4, 138 | height: 66, 139 | borderRadius: 33, 140 | borderWidth: 2, 141 | borderColor: '#72bec5', 142 | }, 143 | modal: { 144 | flex: 1, 145 | }, 146 | title: { 147 | fontSize: 9, textAlign: 'center', 148 | }, 149 | }); 150 | 151 | 152 | export default Stories; 153 | -------------------------------------------------------------------------------- /ios/InstaStories.xcodeproj/xcshareddata/xcschemes/InstaStories.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/InstaStories.xcodeproj/xcshareddata/xcschemes/InstaStories-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 | -------------------------------------------------------------------------------- /src/components/StoryContainer.js: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react'; 2 | import { 3 | ActivityIndicator, 4 | Dimensions, 5 | StyleSheet, 6 | TouchableOpacity, 7 | View, 8 | WebView 9 | } from 'react-native'; 10 | import Modal from 'react-native-modalbox'; 11 | import GestureRecognizer from 'react-native-swipe-gestures'; 12 | import Story from './Story'; 13 | import UserView from './UserView'; 14 | import Readmore from './Readmore'; 15 | import ProgressArray from './ProgressArray'; 16 | 17 | const SCREEN_WIDTH = Dimensions.get('window').width; 18 | 19 | const StoryContainer = (props) => { 20 | const { user } = props; 21 | const { stories = [] } = user || {}; 22 | const [currentIndex, setCurrentIndex] = useState(0); 23 | const [isModelOpen, setModel] = useState(false); 24 | const [isPause, setIsPause] = useState(false); 25 | const [isLoaded, setLoaded] = useState(false); 26 | const [duration, setDuration] = useState(3); 27 | const story = stories.length ? stories[currentIndex] : {}; 28 | const { isReadMore, url } = story || {}; 29 | 30 | // const onVideoLoaded = (length) => { 31 | // props.onVideoLoaded(length.duration); 32 | // }; 33 | 34 | const changeStory = (evt) => { 35 | if (evt.locationX > SCREEN_WIDTH / 2) { 36 | nextStory(); 37 | } else { 38 | prevStory(); 39 | } 40 | }; 41 | 42 | const nextStory = () => { 43 | if (stories.length - 1 > currentIndex) { 44 | setCurrentIndex(currentIndex + 1); 45 | setLoaded(false); 46 | setDuration(3); 47 | } else { 48 | setCurrentIndex(0); 49 | props.onStoryNext(); 50 | } 51 | }; 52 | 53 | const prevStory = () => { 54 | if (currentIndex > 0 && stories.length) { 55 | setCurrentIndex(currentIndex - 1); 56 | setLoaded(false); 57 | setDuration(3); 58 | } else { 59 | setCurrentIndex(0); 60 | props.onStoryPrevious(); 61 | } 62 | }; 63 | 64 | const onImageLoaded = () => { 65 | setLoaded(true); 66 | }; 67 | 68 | const onVideoLoaded = (length) => { 69 | setLoaded(true); 70 | setDuration(length.duration); 71 | }; 72 | 73 | const onPause = (result) => { 74 | setIsPause(result); 75 | }; 76 | 77 | const onReadMoreOpen = () => { 78 | setIsPause(true); 79 | setModel(true); 80 | }; 81 | const onReadMoreClose = () => { 82 | setIsPause(false); 83 | setModel(false); 84 | }; 85 | 86 | const loading = () => { 87 | if (!isLoaded) { 88 | return ( 89 | 90 | 91 | 92 | 93 | 94 | 95 | ); 96 | } 97 | }; 98 | 99 | const config = { 100 | velocityThreshold: 0.3, 101 | directionalOffsetThreshold: 80, 102 | }; 103 | 104 | const onSwipeDown = () => { 105 | if (!isModelOpen) { 106 | props.onClose(); 107 | } else { 108 | setModel(false); 109 | } 110 | }; 111 | 112 | const onSwipeUp = () => { 113 | if (!isModelOpen && isReadMore) { 114 | setModel(true); 115 | } 116 | }; 117 | 118 | return ( 119 | 125 | changeStory(e.nativeEvent)} 129 | onLongPress={() => onPause(true)} 130 | onPressOut={() => onPause(false)} 131 | style={styles.container} 132 | > 133 | 134 | 135 | 136 | {loading()} 137 | 138 | 139 | 140 | {isReadMore && } 141 | 142 | i)} 152 | progress={{ id: currentIndex }} 153 | /> 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | ); 165 | }; 166 | 167 | const styles = StyleSheet.create({ 168 | container: { 169 | flex: 1, 170 | width: '100%', 171 | justifyContent: 'flex-start', 172 | alignItems: 'center', 173 | // paddingTop: 30, 174 | backgroundColor: 'red', 175 | }, 176 | progressBarArray: { 177 | flexDirection: 'row', 178 | position: 'absolute', 179 | top: 30, 180 | width: '98%', 181 | height: 10, 182 | justifyContent: 'space-between', 183 | alignItems: 'center', 184 | }, 185 | userView: { 186 | flexDirection: 'row', 187 | position: 'absolute', 188 | top: 55, 189 | width: '98%', 190 | alignItems: 'center', 191 | }, 192 | name: { 193 | fontSize: 18, 194 | fontWeight: '500', 195 | marginLeft: 12, 196 | color: 'white', 197 | }, 198 | time: { 199 | fontSize: 12, 200 | fontWeight: '400', 201 | marginTop: 3, 202 | marginLeft: 12, 203 | color: 'white', 204 | }, 205 | content: { width: '100%', 206 | height: '100%', 207 | }, 208 | loading: { 209 | backgroundColor: 'black', 210 | height: '100%', 211 | width: '100%', 212 | alignItems: 'center', 213 | justifyContent: 'center', 214 | }, 215 | modal: { 216 | width: '100%', 217 | height: '90%', 218 | backgroundColor: 'white', 219 | borderTopLeftRadius: 20, 220 | borderTopRightRadius: 20, 221 | }, 222 | bar: { 223 | width: 50, 224 | height: 8, 225 | backgroundColor: 'gray', 226 | alignSelf: 'center', 227 | borderRadius: 4, 228 | marginTop: 8, 229 | }, 230 | }); 231 | 232 | export default StoryContainer; 233 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | # Determine the Java command to use to start the JVM. 86 | if [ -n "$JAVA_HOME" ] ; then 87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 88 | # IBM's JDK on AIX uses strange locations for the executables 89 | JAVACMD="$JAVA_HOME/jre/sh/java" 90 | else 91 | JAVACMD="$JAVA_HOME/bin/java" 92 | fi 93 | if [ ! -x "$JAVACMD" ] ; then 94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 95 | 96 | Please set the JAVA_HOME variable in your environment to match the 97 | location of your Java installation." 98 | fi 99 | else 100 | JAVACMD="java" 101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 102 | 103 | Please set the JAVA_HOME variable in your environment to match the 104 | location of your Java installation." 105 | fi 106 | 107 | # Increase the maximum file descriptors if we can. 108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 109 | MAX_FD_LIMIT=`ulimit -H -n` 110 | if [ $? -eq 0 ] ; then 111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 112 | MAX_FD="$MAX_FD_LIMIT" 113 | fi 114 | ulimit -n $MAX_FD 115 | if [ $? -ne 0 ] ; then 116 | warn "Could not set maximum file descriptor limit: $MAX_FD" 117 | fi 118 | else 119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 120 | fi 121 | fi 122 | 123 | # For Darwin, add options to specify how the application appears in the dock 124 | if $darwin; then 125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 126 | fi 127 | 128 | # For Cygwin, switch paths to Windows format before running java 129 | if $cygwin ; then 130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 132 | JAVACMD=`cygpath --unix "$JAVACMD"` 133 | 134 | # We build the pattern for arguments to be converted via cygpath 135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 136 | SEP="" 137 | for dir in $ROOTDIRSRAW ; do 138 | ROOTDIRS="$ROOTDIRS$SEP$dir" 139 | SEP="|" 140 | done 141 | OURCYGPATTERN="(^($ROOTDIRS))" 142 | # Add a user-defined pattern to the cygpath arguments 143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 145 | fi 146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 147 | i=0 148 | for arg in "$@" ; do 149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 151 | 152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 154 | else 155 | eval `echo args$i`="\"$arg\"" 156 | fi 157 | i=$((i+1)) 158 | done 159 | case $i in 160 | (0) set -- ;; 161 | (1) set -- "$args0" ;; 162 | (2) set -- "$args0" "$args1" ;; 163 | (3) set -- "$args0" "$args1" "$args2" ;; 164 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 165 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 166 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 167 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 168 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 169 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 170 | esac 171 | fi 172 | 173 | # Escape application args 174 | save () { 175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 176 | echo " " 177 | } 178 | APP_ARGS=$(save "$@") 179 | 180 | # Collect all arguments for the java command, following the shell quoting and substitution rules 181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 182 | 183 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 184 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 185 | cd "$(dirname "$0")" 186 | fi 187 | 188 | exec "$JAVACMD" "$@" 189 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion rootProject.ext.compileSdkVersion 98 | 99 | compileOptions { 100 | sourceCompatibility JavaVersion.VERSION_1_8 101 | targetCompatibility JavaVersion.VERSION_1_8 102 | } 103 | 104 | defaultConfig { 105 | applicationId "com.instastories" 106 | minSdkVersion rootProject.ext.minSdkVersion 107 | targetSdkVersion rootProject.ext.targetSdkVersion 108 | versionCode 1 109 | versionName "1.0" 110 | } 111 | splits { 112 | abi { 113 | reset() 114 | enable enableSeparateBuildPerCPUArchitecture 115 | universalApk false // If true, also generate a universal APK 116 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 117 | } 118 | } 119 | buildTypes { 120 | release { 121 | minifyEnabled enableProguardInReleaseBuilds 122 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 123 | } 124 | } 125 | // applicationVariants are e.g. debug, release 126 | applicationVariants.all { variant -> 127 | variant.outputs.each { output -> 128 | // For each separate APK per architecture, set a unique version code as described here: 129 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 130 | def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4] 131 | def abi = output.getFilter(OutputFile.ABI) 132 | if (abi != null) { // null for the universal-debug, universal-release variants 133 | output.versionCodeOverride = 134 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 135 | } 136 | } 137 | } 138 | } 139 | 140 | dependencies { 141 | implementation project(':react-native-video') 142 | implementation project(':react-native-vector-icons') 143 | implementation fileTree(dir: "libs", include: ["*.jar"]) 144 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 145 | implementation "com.facebook.react:react-native:+" // From node_modules 146 | } 147 | 148 | // Run this once to be able to run the application with BUCK 149 | // puts all compile dependencies into folder libs for BUCK to use 150 | task copyDownloadableDepsToLibs(type: Copy) { 151 | from configurations.compile 152 | into 'libs' 153 | } 154 | -------------------------------------------------------------------------------- /ios/InstaStories.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 /* InstaStoriesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* InstaStoriesTests.m */; }; 16 | 03717C83F5724E1FA544F78B /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8F91CE742ED64AC0B7FEAE56 /* AntDesign.ttf */; }; 17 | 0C18E8FD547947E298DA134E /* libRCTVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F2EBBA8AAD746B88795BDA7 /* libRCTVideo.a */; }; 18 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 19 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 20 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 21 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 22 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 23 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 24 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 25 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 26 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 27 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 28 | 294C2AD26BFD460C8654820C /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1AD40D5A16174ADDB8D13AD6 /* FontAwesome5_Brands.ttf */; }; 29 | 2CE3AC0788424F22998ED3F2 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 05C09009298B4505A01A2DDA /* libRNVectorIcons.a */; }; 30 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 31 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 32 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 33 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 34 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 35 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 36 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 37 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 38 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 39 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 40 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 41 | 2DCD954D1E0B4F2C00145EB5 /* InstaStoriesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* InstaStoriesTests.m */; }; 42 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 43 | 3028EA46AC3341D79A3F70D9 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8BF0D85DD5AA4C0FAF233D8B /* SimpleLineIcons.ttf */; }; 44 | 3567C88040124BE4966E951A /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 88A474427EE94A85BD30BFA1 /* FontAwesome5_Solid.ttf */; }; 45 | 3D06377E880F46D18451F5B0 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 505D03921FDF4E96A7058FD0 /* Foundation.ttf */; }; 46 | 3E955227B0E74D9F8A31806A /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 263773BA1998403F9A73AED8 /* MaterialIcons.ttf */; }; 47 | 6A00045D39A84311A86C258C /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 07735F1DFC1D4F78AE959266 /* EvilIcons.ttf */; }; 48 | 7584A29CDE5543549BE86DCE /* libRNVectorIcons-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D9529A389E9142548BD9D3B3 /* libRNVectorIcons-tvOS.a */; }; 49 | 7CEC9F4F1D5F4507A582143D /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9F748520D4B14688955D2CE9 /* Entypo.ttf */; }; 50 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 51 | 85B14ACFCA5A4DD7A9E3BF76 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 012B2F1E644E49E1BA005C9B /* FontAwesome.ttf */; }; 52 | 8941F83B859D46F39BABC2EC /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0C624166288A45E489438053 /* MaterialCommunityIcons.ttf */; }; 53 | A94D61883B24457E9765B5B8 /* Fontisto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C4A39E7C44704D4F87C7FB40 /* Fontisto.ttf */; }; 54 | AB00D3ACA8BF4C48A8F99FF7 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 38E12A70D20A48F38429462C /* Octicons.ttf */; }; 55 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 56 | AE6816A8B3B740AA99B40389 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6E1C5D2884A3695AF2247 /* Zocial.ttf */; }; 57 | B7D5AA1DD6064D51A1D4E283 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8FFB8719F5B4495FAF1FCED2 /* FontAwesome5_Regular.ttf */; }; 58 | BE9B43EC8926410DA2767C7E /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C451742CFE774CD48A7B7C47 /* Feather.ttf */; }; 59 | D8A689386182419C90C0ECBE /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8FF1CE76AAEB46F79ECBEF70 /* Ionicons.ttf */; }; 60 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED297162215061F000B7C4FE /* JavaScriptCore.framework */; }; 61 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED2971642150620600B7C4FE /* JavaScriptCore.framework */; }; 62 | /* End PBXBuildFile section */ 63 | 64 | /* Begin PBXContainerItemProxy section */ 65 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 66 | isa = PBXContainerItemProxy; 67 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 68 | proxyType = 2; 69 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 70 | remoteInfo = RCTActionSheet; 71 | }; 72 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 73 | isa = PBXContainerItemProxy; 74 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 75 | proxyType = 2; 76 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 77 | remoteInfo = RCTGeolocation; 78 | }; 79 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 80 | isa = PBXContainerItemProxy; 81 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 82 | proxyType = 2; 83 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 84 | remoteInfo = RCTImage; 85 | }; 86 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 87 | isa = PBXContainerItemProxy; 88 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 89 | proxyType = 2; 90 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 91 | remoteInfo = RCTNetwork; 92 | }; 93 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 94 | isa = PBXContainerItemProxy; 95 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 96 | proxyType = 2; 97 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 98 | remoteInfo = RCTVibration; 99 | }; 100 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 101 | isa = PBXContainerItemProxy; 102 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 103 | proxyType = 1; 104 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 105 | remoteInfo = InstaStories; 106 | }; 107 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 108 | isa = PBXContainerItemProxy; 109 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 110 | proxyType = 2; 111 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 112 | remoteInfo = RCTSettings; 113 | }; 114 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 115 | isa = PBXContainerItemProxy; 116 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 117 | proxyType = 2; 118 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 119 | remoteInfo = RCTWebSocket; 120 | }; 121 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 122 | isa = PBXContainerItemProxy; 123 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 124 | proxyType = 2; 125 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 126 | remoteInfo = React; 127 | }; 128 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 129 | isa = PBXContainerItemProxy; 130 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 131 | proxyType = 1; 132 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 133 | remoteInfo = "InstaStories-tvOS"; 134 | }; 135 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 136 | isa = PBXContainerItemProxy; 137 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 138 | proxyType = 2; 139 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 140 | remoteInfo = "RCTBlob-tvOS"; 141 | }; 142 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 143 | isa = PBXContainerItemProxy; 144 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 145 | proxyType = 2; 146 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 147 | remoteInfo = fishhook; 148 | }; 149 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 150 | isa = PBXContainerItemProxy; 151 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 152 | proxyType = 2; 153 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 154 | remoteInfo = "fishhook-tvOS"; 155 | }; 156 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 157 | isa = PBXContainerItemProxy; 158 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 159 | proxyType = 2; 160 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 161 | remoteInfo = jsinspector; 162 | }; 163 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 164 | isa = PBXContainerItemProxy; 165 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 166 | proxyType = 2; 167 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 168 | remoteInfo = "jsinspector-tvOS"; 169 | }; 170 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 171 | isa = PBXContainerItemProxy; 172 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 173 | proxyType = 2; 174 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 175 | remoteInfo = "third-party"; 176 | }; 177 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 178 | isa = PBXContainerItemProxy; 179 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 180 | proxyType = 2; 181 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 182 | remoteInfo = "third-party-tvOS"; 183 | }; 184 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 185 | isa = PBXContainerItemProxy; 186 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 187 | proxyType = 2; 188 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 189 | remoteInfo = "double-conversion"; 190 | }; 191 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 192 | isa = PBXContainerItemProxy; 193 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 194 | proxyType = 2; 195 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 196 | remoteInfo = "double-conversion-tvOS"; 197 | }; 198 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 199 | isa = PBXContainerItemProxy; 200 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 201 | proxyType = 2; 202 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 203 | remoteInfo = "RCTImage-tvOS"; 204 | }; 205 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 206 | isa = PBXContainerItemProxy; 207 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 208 | proxyType = 2; 209 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 210 | remoteInfo = "RCTLinking-tvOS"; 211 | }; 212 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 213 | isa = PBXContainerItemProxy; 214 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 215 | proxyType = 2; 216 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 217 | remoteInfo = "RCTNetwork-tvOS"; 218 | }; 219 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 220 | isa = PBXContainerItemProxy; 221 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 222 | proxyType = 2; 223 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 224 | remoteInfo = "RCTSettings-tvOS"; 225 | }; 226 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 227 | isa = PBXContainerItemProxy; 228 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 229 | proxyType = 2; 230 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 231 | remoteInfo = "RCTText-tvOS"; 232 | }; 233 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 234 | isa = PBXContainerItemProxy; 235 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 236 | proxyType = 2; 237 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 238 | remoteInfo = "RCTWebSocket-tvOS"; 239 | }; 240 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 241 | isa = PBXContainerItemProxy; 242 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 243 | proxyType = 2; 244 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 245 | remoteInfo = "React-tvOS"; 246 | }; 247 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 248 | isa = PBXContainerItemProxy; 249 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 250 | proxyType = 2; 251 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 252 | remoteInfo = yoga; 253 | }; 254 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 255 | isa = PBXContainerItemProxy; 256 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 257 | proxyType = 2; 258 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 259 | remoteInfo = "yoga-tvOS"; 260 | }; 261 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 262 | isa = PBXContainerItemProxy; 263 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 264 | proxyType = 2; 265 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 266 | remoteInfo = cxxreact; 267 | }; 268 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 269 | isa = PBXContainerItemProxy; 270 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 271 | proxyType = 2; 272 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 273 | remoteInfo = "cxxreact-tvOS"; 274 | }; 275 | 5025301922CCA249000541DF /* PBXContainerItemProxy */ = { 276 | isa = PBXContainerItemProxy; 277 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 278 | proxyType = 2; 279 | remoteGlobalIDString = EDEBC6D6214B3E7000DD5AC8; 280 | remoteInfo = jsi; 281 | }; 282 | 5025301B22CCA249000541DF /* PBXContainerItemProxy */ = { 283 | isa = PBXContainerItemProxy; 284 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 285 | proxyType = 2; 286 | remoteGlobalIDString = EDEBC73B214B45A300DD5AC8; 287 | remoteInfo = jsiexecutor; 288 | }; 289 | 5025301D22CCA249000541DF /* PBXContainerItemProxy */ = { 290 | isa = PBXContainerItemProxy; 291 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 292 | proxyType = 2; 293 | remoteGlobalIDString = ED296FB6214C9A0900B7C4FE; 294 | remoteInfo = "jsi-tvOS"; 295 | }; 296 | 5025301F22CCA249000541DF /* PBXContainerItemProxy */ = { 297 | isa = PBXContainerItemProxy; 298 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 299 | proxyType = 2; 300 | remoteGlobalIDString = ED296FEE214C9CF800B7C4FE; 301 | remoteInfo = "jsiexecutor-tvOS"; 302 | }; 303 | 5025302522CCA249000541DF /* PBXContainerItemProxy */ = { 304 | isa = PBXContainerItemProxy; 305 | containerPortal = 05BC736ED3304EE49F6ABECD /* RNVectorIcons.xcodeproj */; 306 | proxyType = 2; 307 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 308 | remoteInfo = RNVectorIcons; 309 | }; 310 | 5025302722CCA249000541DF /* PBXContainerItemProxy */ = { 311 | isa = PBXContainerItemProxy; 312 | containerPortal = 05BC736ED3304EE49F6ABECD /* RNVectorIcons.xcodeproj */; 313 | proxyType = 2; 314 | remoteGlobalIDString = A39873CE1EA65EE60051E01A; 315 | remoteInfo = "RNVectorIcons-tvOS"; 316 | }; 317 | 5025306122CCB2BB000541DF /* PBXContainerItemProxy */ = { 318 | isa = PBXContainerItemProxy; 319 | containerPortal = 4334E56BA4374360AF299CF5 /* RCTVideo.xcodeproj */; 320 | proxyType = 2; 321 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 322 | remoteInfo = RCTVideo; 323 | }; 324 | 5025306322CCB2BB000541DF /* PBXContainerItemProxy */ = { 325 | isa = PBXContainerItemProxy; 326 | containerPortal = 4334E56BA4374360AF299CF5 /* RCTVideo.xcodeproj */; 327 | proxyType = 2; 328 | remoteGlobalIDString = 641E28441F0EEC8500443AF6; 329 | remoteInfo = "RCTVideo-tvOS"; 330 | }; 331 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 332 | isa = PBXContainerItemProxy; 333 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 334 | proxyType = 2; 335 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 336 | remoteInfo = RCTAnimation; 337 | }; 338 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 339 | isa = PBXContainerItemProxy; 340 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 341 | proxyType = 2; 342 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 343 | remoteInfo = "RCTAnimation-tvOS"; 344 | }; 345 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 346 | isa = PBXContainerItemProxy; 347 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 348 | proxyType = 2; 349 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 350 | remoteInfo = RCTLinking; 351 | }; 352 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 353 | isa = PBXContainerItemProxy; 354 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 355 | proxyType = 2; 356 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 357 | remoteInfo = RCTText; 358 | }; 359 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 360 | isa = PBXContainerItemProxy; 361 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 362 | proxyType = 2; 363 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 364 | remoteInfo = RCTBlob; 365 | }; 366 | /* End PBXContainerItemProxy section */ 367 | 368 | /* Begin PBXFileReference section */ 369 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 370 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 371 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 372 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 373 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 374 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 375 | 00E356EE1AD99517003FC87E /* InstaStoriesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = InstaStoriesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 376 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 377 | 00E356F21AD99517003FC87E /* InstaStoriesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstaStoriesTests.m; sourceTree = ""; }; 378 | 012B2F1E644E49E1BA005C9B /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 379 | 05BC736ED3304EE49F6ABECD /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 380 | 05C09009298B4505A01A2DDA /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 381 | 07735F1DFC1D4F78AE959266 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 382 | 0C624166288A45E489438053 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 383 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 384 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 385 | 13B07F961A680F5B00A75B9A /* InstaStories.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = InstaStories.app; sourceTree = BUILT_PRODUCTS_DIR; }; 386 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = InstaStories/AppDelegate.h; sourceTree = ""; }; 387 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = InstaStories/AppDelegate.m; sourceTree = ""; }; 388 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 389 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = InstaStories/Images.xcassets; sourceTree = ""; }; 390 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = InstaStories/Info.plist; sourceTree = ""; }; 391 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = InstaStories/main.m; sourceTree = ""; }; 392 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 393 | 1AD40D5A16174ADDB8D13AD6 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; }; 394 | 263773BA1998403F9A73AED8 /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 395 | 2D02E47B1E0B4A5D006451C7 /* InstaStories-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "InstaStories-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 396 | 2D02E4901E0B4A5D006451C7 /* InstaStories-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "InstaStories-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 397 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 398 | 38E12A70D20A48F38429462C /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 399 | 4334E56BA4374360AF299CF5 /* RCTVideo.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTVideo.xcodeproj; path = "../node_modules/react-native-video/ios/RCTVideo.xcodeproj"; sourceTree = ""; }; 400 | 505D03921FDF4E96A7058FD0 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 401 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 402 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 403 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 404 | 88A474427EE94A85BD30BFA1 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Solid.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; }; 405 | 8BF0D85DD5AA4C0FAF233D8B /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 406 | 8CD6E1C5D2884A3695AF2247 /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 407 | 8F91CE742ED64AC0B7FEAE56 /* AntDesign.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = AntDesign.ttf; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; }; 408 | 8FF1CE76AAEB46F79ECBEF70 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 409 | 8FFB8719F5B4495FAF1FCED2 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Regular.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; }; 410 | 9F2EBBA8AAD746B88795BDA7 /* libRCTVideo.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTVideo.a; sourceTree = ""; }; 411 | 9F748520D4B14688955D2CE9 /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 412 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 413 | C451742CFE774CD48A7B7C47 /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; }; 414 | C4A39E7C44704D4F87C7FB40 /* Fontisto.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Fontisto.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf"; sourceTree = ""; }; 415 | D9529A389E9142548BD9D3B3 /* libRNVectorIcons-tvOS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = "libRNVectorIcons-tvOS.a"; sourceTree = ""; }; 416 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 417 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; 418 | /* End PBXFileReference section */ 419 | 420 | /* Begin PBXFrameworksBuildPhase section */ 421 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 422 | isa = PBXFrameworksBuildPhase; 423 | buildActionMask = 2147483647; 424 | files = ( 425 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 426 | ); 427 | runOnlyForDeploymentPostprocessing = 0; 428 | }; 429 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 430 | isa = PBXFrameworksBuildPhase; 431 | buildActionMask = 2147483647; 432 | files = ( 433 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */, 434 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 435 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 436 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 437 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 438 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 439 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 440 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 441 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 442 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 443 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 444 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 445 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 446 | 2CE3AC0788424F22998ED3F2 /* libRNVectorIcons.a in Frameworks */, 447 | 0C18E8FD547947E298DA134E /* libRCTVideo.a in Frameworks */, 448 | ); 449 | runOnlyForDeploymentPostprocessing = 0; 450 | }; 451 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 452 | isa = PBXFrameworksBuildPhase; 453 | buildActionMask = 2147483647; 454 | files = ( 455 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */, 456 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 457 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 458 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 459 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 460 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 461 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 462 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 463 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 464 | 7584A29CDE5543549BE86DCE /* libRNVectorIcons-tvOS.a in Frameworks */, 465 | ); 466 | runOnlyForDeploymentPostprocessing = 0; 467 | }; 468 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 469 | isa = PBXFrameworksBuildPhase; 470 | buildActionMask = 2147483647; 471 | files = ( 472 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 473 | ); 474 | runOnlyForDeploymentPostprocessing = 0; 475 | }; 476 | /* End PBXFrameworksBuildPhase section */ 477 | 478 | /* Begin PBXGroup section */ 479 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 480 | isa = PBXGroup; 481 | children = ( 482 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 483 | ); 484 | name = Products; 485 | sourceTree = ""; 486 | }; 487 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 488 | isa = PBXGroup; 489 | children = ( 490 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 491 | ); 492 | name = Products; 493 | sourceTree = ""; 494 | }; 495 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 496 | isa = PBXGroup; 497 | children = ( 498 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 499 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 500 | ); 501 | name = Products; 502 | sourceTree = ""; 503 | }; 504 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 505 | isa = PBXGroup; 506 | children = ( 507 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 508 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 509 | ); 510 | name = Products; 511 | sourceTree = ""; 512 | }; 513 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 514 | isa = PBXGroup; 515 | children = ( 516 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 517 | ); 518 | name = Products; 519 | sourceTree = ""; 520 | }; 521 | 00E356EF1AD99517003FC87E /* InstaStoriesTests */ = { 522 | isa = PBXGroup; 523 | children = ( 524 | 00E356F21AD99517003FC87E /* InstaStoriesTests.m */, 525 | 00E356F01AD99517003FC87E /* Supporting Files */, 526 | ); 527 | path = InstaStoriesTests; 528 | sourceTree = ""; 529 | }; 530 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 531 | isa = PBXGroup; 532 | children = ( 533 | 00E356F11AD99517003FC87E /* Info.plist */, 534 | ); 535 | name = "Supporting Files"; 536 | sourceTree = ""; 537 | }; 538 | 139105B71AF99BAD00B5F7CC /* Products */ = { 539 | isa = PBXGroup; 540 | children = ( 541 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 542 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 543 | ); 544 | name = Products; 545 | sourceTree = ""; 546 | }; 547 | 139FDEE71B06529A00C62182 /* Products */ = { 548 | isa = PBXGroup; 549 | children = ( 550 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 551 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 552 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 553 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 554 | ); 555 | name = Products; 556 | sourceTree = ""; 557 | }; 558 | 13B07FAE1A68108700A75B9A /* InstaStories */ = { 559 | isa = PBXGroup; 560 | children = ( 561 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 562 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 563 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 564 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 565 | 13B07FB61A68108700A75B9A /* Info.plist */, 566 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 567 | 13B07FB71A68108700A75B9A /* main.m */, 568 | ); 569 | name = InstaStories; 570 | sourceTree = ""; 571 | }; 572 | 146834001AC3E56700842450 /* Products */ = { 573 | isa = PBXGroup; 574 | children = ( 575 | 146834041AC3E56700842450 /* libReact.a */, 576 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 577 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 578 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 579 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 580 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 581 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 582 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 583 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 584 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 585 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 586 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 587 | 5025301A22CCA249000541DF /* libjsi.a */, 588 | 5025301C22CCA249000541DF /* libjsiexecutor.a */, 589 | 5025301E22CCA249000541DF /* libjsi-tvOS.a */, 590 | 5025302022CCA249000541DF /* libjsiexecutor-tvOS.a */, 591 | ); 592 | name = Products; 593 | sourceTree = ""; 594 | }; 595 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 596 | isa = PBXGroup; 597 | children = ( 598 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 599 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 600 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 601 | ); 602 | name = Frameworks; 603 | sourceTree = ""; 604 | }; 605 | 50252FF322CCA247000541DF /* Recovered References */ = { 606 | isa = PBXGroup; 607 | children = ( 608 | 05C09009298B4505A01A2DDA /* libRNVectorIcons.a */, 609 | D9529A389E9142548BD9D3B3 /* libRNVectorIcons-tvOS.a */, 610 | 9F2EBBA8AAD746B88795BDA7 /* libRCTVideo.a */, 611 | ); 612 | name = "Recovered References"; 613 | sourceTree = ""; 614 | }; 615 | 5025302122CCA249000541DF /* Products */ = { 616 | isa = PBXGroup; 617 | children = ( 618 | 5025302622CCA249000541DF /* libRNVectorIcons.a */, 619 | 5025302822CCA249000541DF /* libRNVectorIcons-tvOS.a */, 620 | ); 621 | name = Products; 622 | sourceTree = ""; 623 | }; 624 | 5025305D22CCB2BB000541DF /* Products */ = { 625 | isa = PBXGroup; 626 | children = ( 627 | 5025306222CCB2BB000541DF /* libRCTVideo.a */, 628 | 5025306422CCB2BB000541DF /* libRCTVideo.a */, 629 | ); 630 | name = Products; 631 | sourceTree = ""; 632 | }; 633 | 518464458DA54913AAB8E639 /* Resources */ = { 634 | isa = PBXGroup; 635 | children = ( 636 | 8F91CE742ED64AC0B7FEAE56 /* AntDesign.ttf */, 637 | 9F748520D4B14688955D2CE9 /* Entypo.ttf */, 638 | 07735F1DFC1D4F78AE959266 /* EvilIcons.ttf */, 639 | C451742CFE774CD48A7B7C47 /* Feather.ttf */, 640 | 012B2F1E644E49E1BA005C9B /* FontAwesome.ttf */, 641 | 1AD40D5A16174ADDB8D13AD6 /* FontAwesome5_Brands.ttf */, 642 | 8FFB8719F5B4495FAF1FCED2 /* FontAwesome5_Regular.ttf */, 643 | 88A474427EE94A85BD30BFA1 /* FontAwesome5_Solid.ttf */, 644 | C4A39E7C44704D4F87C7FB40 /* Fontisto.ttf */, 645 | 505D03921FDF4E96A7058FD0 /* Foundation.ttf */, 646 | 8FF1CE76AAEB46F79ECBEF70 /* Ionicons.ttf */, 647 | 0C624166288A45E489438053 /* MaterialCommunityIcons.ttf */, 648 | 263773BA1998403F9A73AED8 /* MaterialIcons.ttf */, 649 | 38E12A70D20A48F38429462C /* Octicons.ttf */, 650 | 8BF0D85DD5AA4C0FAF233D8B /* SimpleLineIcons.ttf */, 651 | 8CD6E1C5D2884A3695AF2247 /* Zocial.ttf */, 652 | ); 653 | name = Resources; 654 | sourceTree = ""; 655 | }; 656 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 657 | isa = PBXGroup; 658 | children = ( 659 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 660 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 661 | ); 662 | name = Products; 663 | sourceTree = ""; 664 | }; 665 | 78C398B11ACF4ADC00677621 /* Products */ = { 666 | isa = PBXGroup; 667 | children = ( 668 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 669 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 670 | ); 671 | name = Products; 672 | sourceTree = ""; 673 | }; 674 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 675 | isa = PBXGroup; 676 | children = ( 677 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 678 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 679 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 680 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 681 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 682 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 683 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 684 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 685 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 686 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 687 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 688 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 689 | 05BC736ED3304EE49F6ABECD /* RNVectorIcons.xcodeproj */, 690 | 4334E56BA4374360AF299CF5 /* RCTVideo.xcodeproj */, 691 | ); 692 | name = Libraries; 693 | sourceTree = ""; 694 | }; 695 | 832341B11AAA6A8300B99B32 /* Products */ = { 696 | isa = PBXGroup; 697 | children = ( 698 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 699 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 700 | ); 701 | name = Products; 702 | sourceTree = ""; 703 | }; 704 | 83CBB9F61A601CBA00E9B192 = { 705 | isa = PBXGroup; 706 | children = ( 707 | 13B07FAE1A68108700A75B9A /* InstaStories */, 708 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 709 | 00E356EF1AD99517003FC87E /* InstaStoriesTests */, 710 | 83CBBA001A601CBA00E9B192 /* Products */, 711 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 712 | 518464458DA54913AAB8E639 /* Resources */, 713 | 50252FF322CCA247000541DF /* Recovered References */, 714 | ); 715 | indentWidth = 2; 716 | sourceTree = ""; 717 | tabWidth = 2; 718 | usesTabs = 0; 719 | }; 720 | 83CBBA001A601CBA00E9B192 /* Products */ = { 721 | isa = PBXGroup; 722 | children = ( 723 | 13B07F961A680F5B00A75B9A /* InstaStories.app */, 724 | 00E356EE1AD99517003FC87E /* InstaStoriesTests.xctest */, 725 | 2D02E47B1E0B4A5D006451C7 /* InstaStories-tvOS.app */, 726 | 2D02E4901E0B4A5D006451C7 /* InstaStories-tvOSTests.xctest */, 727 | ); 728 | name = Products; 729 | sourceTree = ""; 730 | }; 731 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 732 | isa = PBXGroup; 733 | children = ( 734 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 735 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 736 | ); 737 | name = Products; 738 | sourceTree = ""; 739 | }; 740 | /* End PBXGroup section */ 741 | 742 | /* Begin PBXNativeTarget section */ 743 | 00E356ED1AD99517003FC87E /* InstaStoriesTests */ = { 744 | isa = PBXNativeTarget; 745 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "InstaStoriesTests" */; 746 | buildPhases = ( 747 | 00E356EA1AD99517003FC87E /* Sources */, 748 | 00E356EB1AD99517003FC87E /* Frameworks */, 749 | 00E356EC1AD99517003FC87E /* Resources */, 750 | ); 751 | buildRules = ( 752 | ); 753 | dependencies = ( 754 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 755 | ); 756 | name = InstaStoriesTests; 757 | productName = InstaStoriesTests; 758 | productReference = 00E356EE1AD99517003FC87E /* InstaStoriesTests.xctest */; 759 | productType = "com.apple.product-type.bundle.unit-test"; 760 | }; 761 | 13B07F861A680F5B00A75B9A /* InstaStories */ = { 762 | isa = PBXNativeTarget; 763 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "InstaStories" */; 764 | buildPhases = ( 765 | 13B07F871A680F5B00A75B9A /* Sources */, 766 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 767 | 13B07F8E1A680F5B00A75B9A /* Resources */, 768 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 769 | ); 770 | buildRules = ( 771 | ); 772 | dependencies = ( 773 | ); 774 | name = InstaStories; 775 | productName = "Hello World"; 776 | productReference = 13B07F961A680F5B00A75B9A /* InstaStories.app */; 777 | productType = "com.apple.product-type.application"; 778 | }; 779 | 2D02E47A1E0B4A5D006451C7 /* InstaStories-tvOS */ = { 780 | isa = PBXNativeTarget; 781 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "InstaStories-tvOS" */; 782 | buildPhases = ( 783 | 2D02E4771E0B4A5D006451C7 /* Sources */, 784 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 785 | 2D02E4791E0B4A5D006451C7 /* Resources */, 786 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 787 | ); 788 | buildRules = ( 789 | ); 790 | dependencies = ( 791 | ); 792 | name = "InstaStories-tvOS"; 793 | productName = "InstaStories-tvOS"; 794 | productReference = 2D02E47B1E0B4A5D006451C7 /* InstaStories-tvOS.app */; 795 | productType = "com.apple.product-type.application"; 796 | }; 797 | 2D02E48F1E0B4A5D006451C7 /* InstaStories-tvOSTests */ = { 798 | isa = PBXNativeTarget; 799 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "InstaStories-tvOSTests" */; 800 | buildPhases = ( 801 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 802 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 803 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 804 | ); 805 | buildRules = ( 806 | ); 807 | dependencies = ( 808 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 809 | ); 810 | name = "InstaStories-tvOSTests"; 811 | productName = "InstaStories-tvOSTests"; 812 | productReference = 2D02E4901E0B4A5D006451C7 /* InstaStories-tvOSTests.xctest */; 813 | productType = "com.apple.product-type.bundle.unit-test"; 814 | }; 815 | /* End PBXNativeTarget section */ 816 | 817 | /* Begin PBXProject section */ 818 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 819 | isa = PBXProject; 820 | attributes = { 821 | LastUpgradeCheck = 940; 822 | ORGANIZATIONNAME = Facebook; 823 | TargetAttributes = { 824 | 00E356ED1AD99517003FC87E = { 825 | CreatedOnToolsVersion = 6.2; 826 | DevelopmentTeam = 523S88GRF8; 827 | TestTargetID = 13B07F861A680F5B00A75B9A; 828 | }; 829 | 13B07F861A680F5B00A75B9A = { 830 | DevelopmentTeam = 523S88GRF8; 831 | }; 832 | 2D02E47A1E0B4A5D006451C7 = { 833 | CreatedOnToolsVersion = 8.2.1; 834 | ProvisioningStyle = Automatic; 835 | }; 836 | 2D02E48F1E0B4A5D006451C7 = { 837 | CreatedOnToolsVersion = 8.2.1; 838 | ProvisioningStyle = Automatic; 839 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 840 | }; 841 | }; 842 | }; 843 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "InstaStories" */; 844 | compatibilityVersion = "Xcode 3.2"; 845 | developmentRegion = English; 846 | hasScannedForEncodings = 0; 847 | knownRegions = ( 848 | English, 849 | en, 850 | Base, 851 | ); 852 | mainGroup = 83CBB9F61A601CBA00E9B192; 853 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 854 | projectDirPath = ""; 855 | projectReferences = ( 856 | { 857 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 858 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 859 | }, 860 | { 861 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 862 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 863 | }, 864 | { 865 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 866 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 867 | }, 868 | { 869 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 870 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 871 | }, 872 | { 873 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 874 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 875 | }, 876 | { 877 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 878 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 879 | }, 880 | { 881 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 882 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 883 | }, 884 | { 885 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 886 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 887 | }, 888 | { 889 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 890 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 891 | }, 892 | { 893 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 894 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 895 | }, 896 | { 897 | ProductGroup = 5025305D22CCB2BB000541DF /* Products */; 898 | ProjectRef = 4334E56BA4374360AF299CF5 /* RCTVideo.xcodeproj */; 899 | }, 900 | { 901 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 902 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 903 | }, 904 | { 905 | ProductGroup = 146834001AC3E56700842450 /* Products */; 906 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 907 | }, 908 | { 909 | ProductGroup = 5025302122CCA249000541DF /* Products */; 910 | ProjectRef = 05BC736ED3304EE49F6ABECD /* RNVectorIcons.xcodeproj */; 911 | }, 912 | ); 913 | projectRoot = ""; 914 | targets = ( 915 | 13B07F861A680F5B00A75B9A /* InstaStories */, 916 | 00E356ED1AD99517003FC87E /* InstaStoriesTests */, 917 | 2D02E47A1E0B4A5D006451C7 /* InstaStories-tvOS */, 918 | 2D02E48F1E0B4A5D006451C7 /* InstaStories-tvOSTests */, 919 | ); 920 | }; 921 | /* End PBXProject section */ 922 | 923 | /* Begin PBXReferenceProxy section */ 924 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 925 | isa = PBXReferenceProxy; 926 | fileType = archive.ar; 927 | path = libRCTActionSheet.a; 928 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 929 | sourceTree = BUILT_PRODUCTS_DIR; 930 | }; 931 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 932 | isa = PBXReferenceProxy; 933 | fileType = archive.ar; 934 | path = libRCTGeolocation.a; 935 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 936 | sourceTree = BUILT_PRODUCTS_DIR; 937 | }; 938 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 939 | isa = PBXReferenceProxy; 940 | fileType = archive.ar; 941 | path = libRCTImage.a; 942 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 943 | sourceTree = BUILT_PRODUCTS_DIR; 944 | }; 945 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 946 | isa = PBXReferenceProxy; 947 | fileType = archive.ar; 948 | path = libRCTNetwork.a; 949 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 950 | sourceTree = BUILT_PRODUCTS_DIR; 951 | }; 952 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 953 | isa = PBXReferenceProxy; 954 | fileType = archive.ar; 955 | path = libRCTVibration.a; 956 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 957 | sourceTree = BUILT_PRODUCTS_DIR; 958 | }; 959 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 960 | isa = PBXReferenceProxy; 961 | fileType = archive.ar; 962 | path = libRCTSettings.a; 963 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 964 | sourceTree = BUILT_PRODUCTS_DIR; 965 | }; 966 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 967 | isa = PBXReferenceProxy; 968 | fileType = archive.ar; 969 | path = libRCTWebSocket.a; 970 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 971 | sourceTree = BUILT_PRODUCTS_DIR; 972 | }; 973 | 146834041AC3E56700842450 /* libReact.a */ = { 974 | isa = PBXReferenceProxy; 975 | fileType = archive.ar; 976 | path = libReact.a; 977 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 978 | sourceTree = BUILT_PRODUCTS_DIR; 979 | }; 980 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 981 | isa = PBXReferenceProxy; 982 | fileType = archive.ar; 983 | path = "libRCTBlob-tvOS.a"; 984 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 985 | sourceTree = BUILT_PRODUCTS_DIR; 986 | }; 987 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 988 | isa = PBXReferenceProxy; 989 | fileType = archive.ar; 990 | path = libfishhook.a; 991 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 992 | sourceTree = BUILT_PRODUCTS_DIR; 993 | }; 994 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 995 | isa = PBXReferenceProxy; 996 | fileType = archive.ar; 997 | path = "libfishhook-tvOS.a"; 998 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 999 | sourceTree = BUILT_PRODUCTS_DIR; 1000 | }; 1001 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 1002 | isa = PBXReferenceProxy; 1003 | fileType = archive.ar; 1004 | path = libjsinspector.a; 1005 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 1006 | sourceTree = BUILT_PRODUCTS_DIR; 1007 | }; 1008 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 1009 | isa = PBXReferenceProxy; 1010 | fileType = archive.ar; 1011 | path = "libjsinspector-tvOS.a"; 1012 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 1013 | sourceTree = BUILT_PRODUCTS_DIR; 1014 | }; 1015 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 1016 | isa = PBXReferenceProxy; 1017 | fileType = archive.ar; 1018 | path = "libthird-party.a"; 1019 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 1020 | sourceTree = BUILT_PRODUCTS_DIR; 1021 | }; 1022 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 1023 | isa = PBXReferenceProxy; 1024 | fileType = archive.ar; 1025 | path = "libthird-party.a"; 1026 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 1027 | sourceTree = BUILT_PRODUCTS_DIR; 1028 | }; 1029 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 1030 | isa = PBXReferenceProxy; 1031 | fileType = archive.ar; 1032 | path = "libdouble-conversion.a"; 1033 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 1034 | sourceTree = BUILT_PRODUCTS_DIR; 1035 | }; 1036 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 1037 | isa = PBXReferenceProxy; 1038 | fileType = archive.ar; 1039 | path = "libdouble-conversion.a"; 1040 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 1041 | sourceTree = BUILT_PRODUCTS_DIR; 1042 | }; 1043 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 1044 | isa = PBXReferenceProxy; 1045 | fileType = archive.ar; 1046 | path = "libRCTImage-tvOS.a"; 1047 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 1048 | sourceTree = BUILT_PRODUCTS_DIR; 1049 | }; 1050 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 1051 | isa = PBXReferenceProxy; 1052 | fileType = archive.ar; 1053 | path = "libRCTLinking-tvOS.a"; 1054 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 1055 | sourceTree = BUILT_PRODUCTS_DIR; 1056 | }; 1057 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 1058 | isa = PBXReferenceProxy; 1059 | fileType = archive.ar; 1060 | path = "libRCTNetwork-tvOS.a"; 1061 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 1062 | sourceTree = BUILT_PRODUCTS_DIR; 1063 | }; 1064 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 1065 | isa = PBXReferenceProxy; 1066 | fileType = archive.ar; 1067 | path = "libRCTSettings-tvOS.a"; 1068 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1069 | sourceTree = BUILT_PRODUCTS_DIR; 1070 | }; 1071 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1072 | isa = PBXReferenceProxy; 1073 | fileType = archive.ar; 1074 | path = "libRCTText-tvOS.a"; 1075 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1076 | sourceTree = BUILT_PRODUCTS_DIR; 1077 | }; 1078 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1079 | isa = PBXReferenceProxy; 1080 | fileType = archive.ar; 1081 | path = "libRCTWebSocket-tvOS.a"; 1082 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1083 | sourceTree = BUILT_PRODUCTS_DIR; 1084 | }; 1085 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1086 | isa = PBXReferenceProxy; 1087 | fileType = archive.ar; 1088 | path = libReact.a; 1089 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1090 | sourceTree = BUILT_PRODUCTS_DIR; 1091 | }; 1092 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1093 | isa = PBXReferenceProxy; 1094 | fileType = archive.ar; 1095 | path = libyoga.a; 1096 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1097 | sourceTree = BUILT_PRODUCTS_DIR; 1098 | }; 1099 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1100 | isa = PBXReferenceProxy; 1101 | fileType = archive.ar; 1102 | path = libyoga.a; 1103 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1104 | sourceTree = BUILT_PRODUCTS_DIR; 1105 | }; 1106 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1107 | isa = PBXReferenceProxy; 1108 | fileType = archive.ar; 1109 | path = libcxxreact.a; 1110 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1111 | sourceTree = BUILT_PRODUCTS_DIR; 1112 | }; 1113 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1114 | isa = PBXReferenceProxy; 1115 | fileType = archive.ar; 1116 | path = libcxxreact.a; 1117 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1118 | sourceTree = BUILT_PRODUCTS_DIR; 1119 | }; 1120 | 5025301A22CCA249000541DF /* libjsi.a */ = { 1121 | isa = PBXReferenceProxy; 1122 | fileType = archive.ar; 1123 | path = libjsi.a; 1124 | remoteRef = 5025301922CCA249000541DF /* PBXContainerItemProxy */; 1125 | sourceTree = BUILT_PRODUCTS_DIR; 1126 | }; 1127 | 5025301C22CCA249000541DF /* libjsiexecutor.a */ = { 1128 | isa = PBXReferenceProxy; 1129 | fileType = archive.ar; 1130 | path = libjsiexecutor.a; 1131 | remoteRef = 5025301B22CCA249000541DF /* PBXContainerItemProxy */; 1132 | sourceTree = BUILT_PRODUCTS_DIR; 1133 | }; 1134 | 5025301E22CCA249000541DF /* libjsi-tvOS.a */ = { 1135 | isa = PBXReferenceProxy; 1136 | fileType = archive.ar; 1137 | path = "libjsi-tvOS.a"; 1138 | remoteRef = 5025301D22CCA249000541DF /* PBXContainerItemProxy */; 1139 | sourceTree = BUILT_PRODUCTS_DIR; 1140 | }; 1141 | 5025302022CCA249000541DF /* libjsiexecutor-tvOS.a */ = { 1142 | isa = PBXReferenceProxy; 1143 | fileType = archive.ar; 1144 | path = "libjsiexecutor-tvOS.a"; 1145 | remoteRef = 5025301F22CCA249000541DF /* PBXContainerItemProxy */; 1146 | sourceTree = BUILT_PRODUCTS_DIR; 1147 | }; 1148 | 5025302622CCA249000541DF /* libRNVectorIcons.a */ = { 1149 | isa = PBXReferenceProxy; 1150 | fileType = archive.ar; 1151 | path = libRNVectorIcons.a; 1152 | remoteRef = 5025302522CCA249000541DF /* PBXContainerItemProxy */; 1153 | sourceTree = BUILT_PRODUCTS_DIR; 1154 | }; 1155 | 5025302822CCA249000541DF /* libRNVectorIcons-tvOS.a */ = { 1156 | isa = PBXReferenceProxy; 1157 | fileType = archive.ar; 1158 | path = "libRNVectorIcons-tvOS.a"; 1159 | remoteRef = 5025302722CCA249000541DF /* PBXContainerItemProxy */; 1160 | sourceTree = BUILT_PRODUCTS_DIR; 1161 | }; 1162 | 5025306222CCB2BB000541DF /* libRCTVideo.a */ = { 1163 | isa = PBXReferenceProxy; 1164 | fileType = archive.ar; 1165 | path = libRCTVideo.a; 1166 | remoteRef = 5025306122CCB2BB000541DF /* PBXContainerItemProxy */; 1167 | sourceTree = BUILT_PRODUCTS_DIR; 1168 | }; 1169 | 5025306422CCB2BB000541DF /* libRCTVideo.a */ = { 1170 | isa = PBXReferenceProxy; 1171 | fileType = archive.ar; 1172 | path = libRCTVideo.a; 1173 | remoteRef = 5025306322CCB2BB000541DF /* PBXContainerItemProxy */; 1174 | sourceTree = BUILT_PRODUCTS_DIR; 1175 | }; 1176 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1177 | isa = PBXReferenceProxy; 1178 | fileType = archive.ar; 1179 | path = libRCTAnimation.a; 1180 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1181 | sourceTree = BUILT_PRODUCTS_DIR; 1182 | }; 1183 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1184 | isa = PBXReferenceProxy; 1185 | fileType = archive.ar; 1186 | path = libRCTAnimation.a; 1187 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1188 | sourceTree = BUILT_PRODUCTS_DIR; 1189 | }; 1190 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1191 | isa = PBXReferenceProxy; 1192 | fileType = archive.ar; 1193 | path = libRCTLinking.a; 1194 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1195 | sourceTree = BUILT_PRODUCTS_DIR; 1196 | }; 1197 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1198 | isa = PBXReferenceProxy; 1199 | fileType = archive.ar; 1200 | path = libRCTText.a; 1201 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1202 | sourceTree = BUILT_PRODUCTS_DIR; 1203 | }; 1204 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1205 | isa = PBXReferenceProxy; 1206 | fileType = archive.ar; 1207 | path = libRCTBlob.a; 1208 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1209 | sourceTree = BUILT_PRODUCTS_DIR; 1210 | }; 1211 | /* End PBXReferenceProxy section */ 1212 | 1213 | /* Begin PBXResourcesBuildPhase section */ 1214 | 00E356EC1AD99517003FC87E /* Resources */ = { 1215 | isa = PBXResourcesBuildPhase; 1216 | buildActionMask = 2147483647; 1217 | files = ( 1218 | ); 1219 | runOnlyForDeploymentPostprocessing = 0; 1220 | }; 1221 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1222 | isa = PBXResourcesBuildPhase; 1223 | buildActionMask = 2147483647; 1224 | files = ( 1225 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1226 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1227 | 03717C83F5724E1FA544F78B /* AntDesign.ttf in Resources */, 1228 | 7CEC9F4F1D5F4507A582143D /* Entypo.ttf in Resources */, 1229 | 6A00045D39A84311A86C258C /* EvilIcons.ttf in Resources */, 1230 | BE9B43EC8926410DA2767C7E /* Feather.ttf in Resources */, 1231 | 85B14ACFCA5A4DD7A9E3BF76 /* FontAwesome.ttf in Resources */, 1232 | 294C2AD26BFD460C8654820C /* FontAwesome5_Brands.ttf in Resources */, 1233 | B7D5AA1DD6064D51A1D4E283 /* FontAwesome5_Regular.ttf in Resources */, 1234 | 3567C88040124BE4966E951A /* FontAwesome5_Solid.ttf in Resources */, 1235 | A94D61883B24457E9765B5B8 /* Fontisto.ttf in Resources */, 1236 | 3D06377E880F46D18451F5B0 /* Foundation.ttf in Resources */, 1237 | D8A689386182419C90C0ECBE /* Ionicons.ttf in Resources */, 1238 | 8941F83B859D46F39BABC2EC /* MaterialCommunityIcons.ttf in Resources */, 1239 | 3E955227B0E74D9F8A31806A /* MaterialIcons.ttf in Resources */, 1240 | AB00D3ACA8BF4C48A8F99FF7 /* Octicons.ttf in Resources */, 1241 | 3028EA46AC3341D79A3F70D9 /* SimpleLineIcons.ttf in Resources */, 1242 | AE6816A8B3B740AA99B40389 /* Zocial.ttf in Resources */, 1243 | ); 1244 | runOnlyForDeploymentPostprocessing = 0; 1245 | }; 1246 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1247 | isa = PBXResourcesBuildPhase; 1248 | buildActionMask = 2147483647; 1249 | files = ( 1250 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1251 | ); 1252 | runOnlyForDeploymentPostprocessing = 0; 1253 | }; 1254 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1255 | isa = PBXResourcesBuildPhase; 1256 | buildActionMask = 2147483647; 1257 | files = ( 1258 | ); 1259 | runOnlyForDeploymentPostprocessing = 0; 1260 | }; 1261 | /* End PBXResourcesBuildPhase section */ 1262 | 1263 | /* Begin PBXShellScriptBuildPhase section */ 1264 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1265 | isa = PBXShellScriptBuildPhase; 1266 | buildActionMask = 2147483647; 1267 | files = ( 1268 | ); 1269 | inputPaths = ( 1270 | ); 1271 | name = "Bundle React Native code and images"; 1272 | outputPaths = ( 1273 | ); 1274 | runOnlyForDeploymentPostprocessing = 0; 1275 | shellPath = /bin/sh; 1276 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1277 | }; 1278 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1279 | isa = PBXShellScriptBuildPhase; 1280 | buildActionMask = 2147483647; 1281 | files = ( 1282 | ); 1283 | inputPaths = ( 1284 | ); 1285 | name = "Bundle React Native Code And Images"; 1286 | outputPaths = ( 1287 | ); 1288 | runOnlyForDeploymentPostprocessing = 0; 1289 | shellPath = /bin/sh; 1290 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1291 | }; 1292 | /* End PBXShellScriptBuildPhase section */ 1293 | 1294 | /* Begin PBXSourcesBuildPhase section */ 1295 | 00E356EA1AD99517003FC87E /* Sources */ = { 1296 | isa = PBXSourcesBuildPhase; 1297 | buildActionMask = 2147483647; 1298 | files = ( 1299 | 00E356F31AD99517003FC87E /* InstaStoriesTests.m in Sources */, 1300 | ); 1301 | runOnlyForDeploymentPostprocessing = 0; 1302 | }; 1303 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1304 | isa = PBXSourcesBuildPhase; 1305 | buildActionMask = 2147483647; 1306 | files = ( 1307 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1308 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1309 | ); 1310 | runOnlyForDeploymentPostprocessing = 0; 1311 | }; 1312 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1313 | isa = PBXSourcesBuildPhase; 1314 | buildActionMask = 2147483647; 1315 | files = ( 1316 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1317 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1318 | ); 1319 | runOnlyForDeploymentPostprocessing = 0; 1320 | }; 1321 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1322 | isa = PBXSourcesBuildPhase; 1323 | buildActionMask = 2147483647; 1324 | files = ( 1325 | 2DCD954D1E0B4F2C00145EB5 /* InstaStoriesTests.m in Sources */, 1326 | ); 1327 | runOnlyForDeploymentPostprocessing = 0; 1328 | }; 1329 | /* End PBXSourcesBuildPhase section */ 1330 | 1331 | /* Begin PBXTargetDependency section */ 1332 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1333 | isa = PBXTargetDependency; 1334 | target = 13B07F861A680F5B00A75B9A /* InstaStories */; 1335 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1336 | }; 1337 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1338 | isa = PBXTargetDependency; 1339 | target = 2D02E47A1E0B4A5D006451C7 /* InstaStories-tvOS */; 1340 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1341 | }; 1342 | /* End PBXTargetDependency section */ 1343 | 1344 | /* Begin PBXVariantGroup section */ 1345 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1346 | isa = PBXVariantGroup; 1347 | children = ( 1348 | 13B07FB21A68108700A75B9A /* Base */, 1349 | ); 1350 | name = LaunchScreen.xib; 1351 | path = InstaStories; 1352 | sourceTree = ""; 1353 | }; 1354 | /* End PBXVariantGroup section */ 1355 | 1356 | /* Begin XCBuildConfiguration section */ 1357 | 00E356F61AD99517003FC87E /* Debug */ = { 1358 | isa = XCBuildConfiguration; 1359 | buildSettings = { 1360 | BUNDLE_LOADER = "$(TEST_HOST)"; 1361 | DEVELOPMENT_TEAM = 523S88GRF8; 1362 | GCC_PREPROCESSOR_DEFINITIONS = ( 1363 | "DEBUG=1", 1364 | "$(inherited)", 1365 | ); 1366 | HEADER_SEARCH_PATHS = ( 1367 | "$(inherited)", 1368 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1369 | "$(SRCROOT)/../node_modules/react-native-video/ios/**", 1370 | ); 1371 | INFOPLIST_FILE = InstaStoriesTests/Info.plist; 1372 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1373 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1374 | LIBRARY_SEARCH_PATHS = ( 1375 | "$(inherited)", 1376 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1377 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1378 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1379 | ); 1380 | OTHER_LDFLAGS = ( 1381 | "-ObjC", 1382 | "-lc++", 1383 | ); 1384 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1385 | PRODUCT_NAME = "$(TARGET_NAME)"; 1386 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/InstaStories.app/InstaStories"; 1387 | }; 1388 | name = Debug; 1389 | }; 1390 | 00E356F71AD99517003FC87E /* Release */ = { 1391 | isa = XCBuildConfiguration; 1392 | buildSettings = { 1393 | BUNDLE_LOADER = "$(TEST_HOST)"; 1394 | COPY_PHASE_STRIP = NO; 1395 | DEVELOPMENT_TEAM = 523S88GRF8; 1396 | HEADER_SEARCH_PATHS = ( 1397 | "$(inherited)", 1398 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1399 | "$(SRCROOT)/../node_modules/react-native-video/ios/**", 1400 | ); 1401 | INFOPLIST_FILE = InstaStoriesTests/Info.plist; 1402 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1403 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1404 | LIBRARY_SEARCH_PATHS = ( 1405 | "$(inherited)", 1406 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1407 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1408 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1409 | ); 1410 | OTHER_LDFLAGS = ( 1411 | "-ObjC", 1412 | "-lc++", 1413 | ); 1414 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1415 | PRODUCT_NAME = "$(TARGET_NAME)"; 1416 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/InstaStories.app/InstaStories"; 1417 | }; 1418 | name = Release; 1419 | }; 1420 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1421 | isa = XCBuildConfiguration; 1422 | buildSettings = { 1423 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1424 | CURRENT_PROJECT_VERSION = 1; 1425 | DEAD_CODE_STRIPPING = NO; 1426 | DEVELOPMENT_TEAM = 523S88GRF8; 1427 | HEADER_SEARCH_PATHS = ( 1428 | "$(inherited)", 1429 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1430 | "$(SRCROOT)/../node_modules/react-native-video/ios/**", 1431 | ); 1432 | INFOPLIST_FILE = InstaStories/Info.plist; 1433 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1434 | OTHER_LDFLAGS = ( 1435 | "$(inherited)", 1436 | "-ObjC", 1437 | "-lc++", 1438 | ); 1439 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1440 | PRODUCT_NAME = InstaStories; 1441 | VERSIONING_SYSTEM = "apple-generic"; 1442 | }; 1443 | name = Debug; 1444 | }; 1445 | 13B07F951A680F5B00A75B9A /* Release */ = { 1446 | isa = XCBuildConfiguration; 1447 | buildSettings = { 1448 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1449 | CURRENT_PROJECT_VERSION = 1; 1450 | DEVELOPMENT_TEAM = 523S88GRF8; 1451 | HEADER_SEARCH_PATHS = ( 1452 | "$(inherited)", 1453 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1454 | "$(SRCROOT)/../node_modules/react-native-video/ios/**", 1455 | ); 1456 | INFOPLIST_FILE = InstaStories/Info.plist; 1457 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1458 | OTHER_LDFLAGS = ( 1459 | "$(inherited)", 1460 | "-ObjC", 1461 | "-lc++", 1462 | ); 1463 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1464 | PRODUCT_NAME = InstaStories; 1465 | VERSIONING_SYSTEM = "apple-generic"; 1466 | }; 1467 | name = Release; 1468 | }; 1469 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1470 | isa = XCBuildConfiguration; 1471 | buildSettings = { 1472 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1473 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1474 | CLANG_ANALYZER_NONNULL = YES; 1475 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1476 | CLANG_WARN_INFINITE_RECURSION = YES; 1477 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1478 | DEBUG_INFORMATION_FORMAT = dwarf; 1479 | ENABLE_TESTABILITY = YES; 1480 | GCC_NO_COMMON_BLOCKS = YES; 1481 | HEADER_SEARCH_PATHS = ( 1482 | "$(inherited)", 1483 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1484 | "$(SRCROOT)/../node_modules/react-native-video/ios/**", 1485 | ); 1486 | INFOPLIST_FILE = "InstaStories-tvOS/Info.plist"; 1487 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1488 | LIBRARY_SEARCH_PATHS = ( 1489 | "$(inherited)", 1490 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1491 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1492 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1493 | ); 1494 | OTHER_LDFLAGS = ( 1495 | "-ObjC", 1496 | "-lc++", 1497 | ); 1498 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.InstaStories-tvOS"; 1499 | PRODUCT_NAME = "$(TARGET_NAME)"; 1500 | SDKROOT = appletvos; 1501 | TARGETED_DEVICE_FAMILY = 3; 1502 | TVOS_DEPLOYMENT_TARGET = 9.2; 1503 | }; 1504 | name = Debug; 1505 | }; 1506 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1507 | isa = XCBuildConfiguration; 1508 | buildSettings = { 1509 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1510 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1511 | CLANG_ANALYZER_NONNULL = YES; 1512 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1513 | CLANG_WARN_INFINITE_RECURSION = YES; 1514 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1515 | COPY_PHASE_STRIP = NO; 1516 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1517 | GCC_NO_COMMON_BLOCKS = YES; 1518 | HEADER_SEARCH_PATHS = ( 1519 | "$(inherited)", 1520 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1521 | "$(SRCROOT)/../node_modules/react-native-video/ios/**", 1522 | ); 1523 | INFOPLIST_FILE = "InstaStories-tvOS/Info.plist"; 1524 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1525 | LIBRARY_SEARCH_PATHS = ( 1526 | "$(inherited)", 1527 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1528 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1529 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1530 | ); 1531 | OTHER_LDFLAGS = ( 1532 | "-ObjC", 1533 | "-lc++", 1534 | ); 1535 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.InstaStories-tvOS"; 1536 | PRODUCT_NAME = "$(TARGET_NAME)"; 1537 | SDKROOT = appletvos; 1538 | TARGETED_DEVICE_FAMILY = 3; 1539 | TVOS_DEPLOYMENT_TARGET = 9.2; 1540 | }; 1541 | name = Release; 1542 | }; 1543 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1544 | isa = XCBuildConfiguration; 1545 | buildSettings = { 1546 | BUNDLE_LOADER = "$(TEST_HOST)"; 1547 | CLANG_ANALYZER_NONNULL = YES; 1548 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1549 | CLANG_WARN_INFINITE_RECURSION = YES; 1550 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1551 | DEBUG_INFORMATION_FORMAT = dwarf; 1552 | ENABLE_TESTABILITY = YES; 1553 | GCC_NO_COMMON_BLOCKS = YES; 1554 | HEADER_SEARCH_PATHS = ( 1555 | "$(inherited)", 1556 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1557 | "$(SRCROOT)/../node_modules/react-native-video/ios/**", 1558 | ); 1559 | INFOPLIST_FILE = "InstaStories-tvOSTests/Info.plist"; 1560 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1561 | LIBRARY_SEARCH_PATHS = ( 1562 | "$(inherited)", 1563 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1564 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1565 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1566 | ); 1567 | OTHER_LDFLAGS = ( 1568 | "-ObjC", 1569 | "-lc++", 1570 | ); 1571 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.InstaStories-tvOSTests"; 1572 | PRODUCT_NAME = "$(TARGET_NAME)"; 1573 | SDKROOT = appletvos; 1574 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/InstaStories-tvOS.app/InstaStories-tvOS"; 1575 | TVOS_DEPLOYMENT_TARGET = 10.1; 1576 | }; 1577 | name = Debug; 1578 | }; 1579 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1580 | isa = XCBuildConfiguration; 1581 | buildSettings = { 1582 | BUNDLE_LOADER = "$(TEST_HOST)"; 1583 | CLANG_ANALYZER_NONNULL = YES; 1584 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1585 | CLANG_WARN_INFINITE_RECURSION = YES; 1586 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1587 | COPY_PHASE_STRIP = NO; 1588 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1589 | GCC_NO_COMMON_BLOCKS = YES; 1590 | HEADER_SEARCH_PATHS = ( 1591 | "$(inherited)", 1592 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1593 | "$(SRCROOT)/../node_modules/react-native-video/ios/**", 1594 | ); 1595 | INFOPLIST_FILE = "InstaStories-tvOSTests/Info.plist"; 1596 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1597 | LIBRARY_SEARCH_PATHS = ( 1598 | "$(inherited)", 1599 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1600 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1601 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1602 | ); 1603 | OTHER_LDFLAGS = ( 1604 | "-ObjC", 1605 | "-lc++", 1606 | ); 1607 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.InstaStories-tvOSTests"; 1608 | PRODUCT_NAME = "$(TARGET_NAME)"; 1609 | SDKROOT = appletvos; 1610 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/InstaStories-tvOS.app/InstaStories-tvOS"; 1611 | TVOS_DEPLOYMENT_TARGET = 10.1; 1612 | }; 1613 | name = Release; 1614 | }; 1615 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1616 | isa = XCBuildConfiguration; 1617 | buildSettings = { 1618 | ALWAYS_SEARCH_USER_PATHS = NO; 1619 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1620 | CLANG_CXX_LIBRARY = "libc++"; 1621 | CLANG_ENABLE_MODULES = YES; 1622 | CLANG_ENABLE_OBJC_ARC = YES; 1623 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1624 | CLANG_WARN_BOOL_CONVERSION = YES; 1625 | CLANG_WARN_COMMA = YES; 1626 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1627 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1628 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1629 | CLANG_WARN_EMPTY_BODY = YES; 1630 | CLANG_WARN_ENUM_CONVERSION = YES; 1631 | CLANG_WARN_INFINITE_RECURSION = YES; 1632 | CLANG_WARN_INT_CONVERSION = YES; 1633 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1634 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1635 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1636 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1637 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1638 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1639 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1640 | CLANG_WARN_UNREACHABLE_CODE = YES; 1641 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1642 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1643 | COPY_PHASE_STRIP = NO; 1644 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1645 | ENABLE_TESTABILITY = YES; 1646 | GCC_C_LANGUAGE_STANDARD = gnu99; 1647 | GCC_DYNAMIC_NO_PIC = NO; 1648 | GCC_NO_COMMON_BLOCKS = YES; 1649 | GCC_OPTIMIZATION_LEVEL = 0; 1650 | GCC_PREPROCESSOR_DEFINITIONS = ( 1651 | "DEBUG=1", 1652 | "$(inherited)", 1653 | ); 1654 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1655 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1656 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1657 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1658 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1659 | GCC_WARN_UNUSED_FUNCTION = YES; 1660 | GCC_WARN_UNUSED_VARIABLE = YES; 1661 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1662 | MTL_ENABLE_DEBUG_INFO = YES; 1663 | ONLY_ACTIVE_ARCH = YES; 1664 | SDKROOT = iphoneos; 1665 | }; 1666 | name = Debug; 1667 | }; 1668 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1669 | isa = XCBuildConfiguration; 1670 | buildSettings = { 1671 | ALWAYS_SEARCH_USER_PATHS = NO; 1672 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1673 | CLANG_CXX_LIBRARY = "libc++"; 1674 | CLANG_ENABLE_MODULES = YES; 1675 | CLANG_ENABLE_OBJC_ARC = YES; 1676 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1677 | CLANG_WARN_BOOL_CONVERSION = YES; 1678 | CLANG_WARN_COMMA = YES; 1679 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1680 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1681 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1682 | CLANG_WARN_EMPTY_BODY = YES; 1683 | CLANG_WARN_ENUM_CONVERSION = YES; 1684 | CLANG_WARN_INFINITE_RECURSION = YES; 1685 | CLANG_WARN_INT_CONVERSION = YES; 1686 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1687 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1688 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1689 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1690 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1691 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1692 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1693 | CLANG_WARN_UNREACHABLE_CODE = YES; 1694 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1695 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1696 | COPY_PHASE_STRIP = YES; 1697 | ENABLE_NS_ASSERTIONS = NO; 1698 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1699 | GCC_C_LANGUAGE_STANDARD = gnu99; 1700 | GCC_NO_COMMON_BLOCKS = YES; 1701 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1702 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1703 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1704 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1705 | GCC_WARN_UNUSED_FUNCTION = YES; 1706 | GCC_WARN_UNUSED_VARIABLE = YES; 1707 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1708 | MTL_ENABLE_DEBUG_INFO = NO; 1709 | SDKROOT = iphoneos; 1710 | VALIDATE_PRODUCT = YES; 1711 | }; 1712 | name = Release; 1713 | }; 1714 | /* End XCBuildConfiguration section */ 1715 | 1716 | /* Begin XCConfigurationList section */ 1717 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "InstaStoriesTests" */ = { 1718 | isa = XCConfigurationList; 1719 | buildConfigurations = ( 1720 | 00E356F61AD99517003FC87E /* Debug */, 1721 | 00E356F71AD99517003FC87E /* Release */, 1722 | ); 1723 | defaultConfigurationIsVisible = 0; 1724 | defaultConfigurationName = Release; 1725 | }; 1726 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "InstaStories" */ = { 1727 | isa = XCConfigurationList; 1728 | buildConfigurations = ( 1729 | 13B07F941A680F5B00A75B9A /* Debug */, 1730 | 13B07F951A680F5B00A75B9A /* Release */, 1731 | ); 1732 | defaultConfigurationIsVisible = 0; 1733 | defaultConfigurationName = Release; 1734 | }; 1735 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "InstaStories-tvOS" */ = { 1736 | isa = XCConfigurationList; 1737 | buildConfigurations = ( 1738 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1739 | 2D02E4981E0B4A5E006451C7 /* Release */, 1740 | ); 1741 | defaultConfigurationIsVisible = 0; 1742 | defaultConfigurationName = Release; 1743 | }; 1744 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "InstaStories-tvOSTests" */ = { 1745 | isa = XCConfigurationList; 1746 | buildConfigurations = ( 1747 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1748 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1749 | ); 1750 | defaultConfigurationIsVisible = 0; 1751 | defaultConfigurationName = Release; 1752 | }; 1753 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "InstaStories" */ = { 1754 | isa = XCConfigurationList; 1755 | buildConfigurations = ( 1756 | 83CBBA201A601CBA00E9B192 /* Debug */, 1757 | 83CBBA211A601CBA00E9B192 /* Release */, 1758 | ); 1759 | defaultConfigurationIsVisible = 0; 1760 | defaultConfigurationName = Release; 1761 | }; 1762 | /* End XCConfigurationList section */ 1763 | }; 1764 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1765 | } 1766 | --------------------------------------------------------------------------------