packages = new PackageList(this).getPackages();
27 | // Packages that cannot be autolinked yet can be added manually here, for example:
28 | // packages.add(new MyReactNativePackage());
29 | return packages;
30 | }
31 |
32 | @Override
33 | protected String getJSMainModuleName() {
34 | return "index";
35 | }
36 | };
37 |
38 | @Override
39 | public ReactNativeHost getReactNativeHost() {
40 | return mReactNativeHost;
41 | }
42 |
43 | @Override
44 | public void onCreate() {
45 | super.onCreate();
46 | SoLoader.init(this, /* native exopackage */ false);
47 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
48 | }
49 |
50 | /**
51 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like
52 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
53 | *
54 | * @param context
55 | * @param reactInstanceManager
56 | */
57 | private static void initializeFlipper(
58 | Context context, ReactInstanceManager reactInstanceManager) {
59 | if (BuildConfig.DEBUG) {
60 | try {
61 | /*
62 | We use reflection here to pick up the class that initializes Flipper,
63 | since Flipper library is not available in release mode
64 | */
65 | Class> aClass = Class.forName("com.instagramclone.ReactNativeFlipper");
66 | aClass
67 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
68 | .invoke(null, context, reactInstanceManager);
69 | } catch (ClassNotFoundException e) {
70 | e.printStackTrace();
71 | } catch (NoSuchMethodException e) {
72 | e.printStackTrace();
73 | } catch (IllegalAccessException e) {
74 | e.printStackTrace();
75 | } catch (InvocationTargetException e) {
76 | e.printStackTrace();
77 | }
78 | }
79 | }
80 | }
81 |
--------------------------------------------------------------------------------
/src/graphql/queries.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | // this is an auto generated file. This will be overwritten
3 |
4 | export const getUser = /* GraphQL */ `
5 | query GetUser($id: ID!) {
6 | getUser(id: $id) {
7 | id
8 | name
9 | image
10 | posts {
11 | items {
12 | id
13 | caption
14 | image
15 | userID
16 | likes
17 | createdAt
18 | updatedAt
19 | }
20 | nextToken
21 | }
22 | createdAt
23 | updatedAt
24 | }
25 | }
26 | `;
27 | export const listUsers = /* GraphQL */ `
28 | query ListUsers(
29 | $filter: ModelUserFilterInput
30 | $limit: Int
31 | $nextToken: String
32 | ) {
33 | listUsers(filter: $filter, limit: $limit, nextToken: $nextToken) {
34 | items {
35 | id
36 | name
37 | image
38 | posts {
39 | nextToken
40 | }
41 | createdAt
42 | updatedAt
43 | }
44 | nextToken
45 | }
46 | }
47 | `;
48 | export const getPost = /* GraphQL */ `
49 | query GetPost($id: ID!) {
50 | getPost(id: $id) {
51 | id
52 | caption
53 | image
54 | userID
55 | likes
56 | user {
57 | id
58 | name
59 | image
60 | posts {
61 | nextToken
62 | }
63 | createdAt
64 | updatedAt
65 | }
66 | createdAt
67 | updatedAt
68 | }
69 | }
70 | `;
71 | export const listPosts = /* GraphQL */ `
72 | query ListPosts(
73 | $filter: ModelPostFilterInput
74 | $limit: Int
75 | $nextToken: String
76 | ) {
77 | listPosts(filter: $filter, limit: $limit, nextToken: $nextToken) {
78 | items {
79 | id
80 | caption
81 | image
82 | userID
83 | likes
84 | user {
85 | id
86 | name
87 | image
88 | createdAt
89 | updatedAt
90 | }
91 | createdAt
92 | updatedAt
93 | }
94 | nextToken
95 | }
96 | }
97 | `;
98 | export const getStory = /* GraphQL */ `
99 | query GetStory($id: ID!) {
100 | getStory(id: $id) {
101 | id
102 | image
103 | userID
104 | user {
105 | id
106 | name
107 | image
108 | posts {
109 | nextToken
110 | }
111 | createdAt
112 | updatedAt
113 | }
114 | createdAt
115 | updatedAt
116 | }
117 | }
118 | `;
119 | export const listStorys = /* GraphQL */ `
120 | query ListStorys(
121 | $filter: ModelStoryFilterInput
122 | $limit: Int
123 | $nextToken: String
124 | ) {
125 | listStorys(filter: $filter, limit: $limit, nextToken: $nextToken) {
126 | items {
127 | id
128 | image
129 | userID
130 | user {
131 | id
132 | name
133 | image
134 | createdAt
135 | updatedAt
136 | }
137 | createdAt
138 | updatedAt
139 | }
140 | nextToken
141 | }
142 | }
143 | `;
144 |
--------------------------------------------------------------------------------
/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 https://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 Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if "%ERRORLEVEL%" == "0" goto init
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto init
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :init
68 | @rem Get command-line arguments, handling Windows variants
69 |
70 | if not "%OS%" == "Windows_NT" goto win9xME_args
71 |
72 | :win9xME_args
73 | @rem Slurp the command line arguments.
74 | set CMD_LINE_ARGS=
75 | set _SKIP=2
76 |
77 | :win9xME_args_slurp
78 | if "x%~1" == "x" goto execute
79 |
80 | set CMD_LINE_ARGS=%*
81 |
82 | :execute
83 | @rem Setup the command line
84 |
85 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
86 |
87 | @rem Execute Gradle
88 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
89 |
90 | :end
91 | @rem End local scope for the variables with windows NT shell
92 | if "%ERRORLEVEL%"=="0" goto mainEnd
93 |
94 | :fail
95 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
96 | rem the _cmd.exe /c_ return code!
97 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
98 | exit /b 1
99 |
100 | :mainEnd
101 | if "%OS%"=="Windows_NT" endlocal
102 |
103 | :omega
104 |
--------------------------------------------------------------------------------
/android/app/src/debug/java/com/instagramclone/ReactNativeFlipper.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Facebook, Inc. and its affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the LICENSE file in the root
5 | * directory of this source tree.
6 | */
7 | package com.instagramclone;
8 |
9 | import android.content.Context;
10 | import com.facebook.flipper.android.AndroidFlipperClient;
11 | import com.facebook.flipper.android.utils.FlipperUtils;
12 | import com.facebook.flipper.core.FlipperClient;
13 | import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
14 | import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
15 | import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
16 | import com.facebook.flipper.plugins.inspector.DescriptorMapping;
17 | import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
18 | import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
19 | import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
20 | import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
21 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
22 | import com.facebook.react.ReactInstanceManager;
23 | import com.facebook.react.bridge.ReactContext;
24 | import com.facebook.react.modules.network.NetworkingModule;
25 | import okhttp3.OkHttpClient;
26 |
27 | public class ReactNativeFlipper {
28 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
29 | if (FlipperUtils.shouldEnableFlipper(context)) {
30 | final FlipperClient client = AndroidFlipperClient.getInstance(context);
31 |
32 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
33 | client.addPlugin(new ReactFlipperPlugin());
34 | client.addPlugin(new DatabasesFlipperPlugin(context));
35 | client.addPlugin(new SharedPreferencesFlipperPlugin(context));
36 | client.addPlugin(CrashReporterPlugin.getInstance());
37 |
38 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
39 | NetworkingModule.setCustomClientBuilder(
40 | new NetworkingModule.CustomClientBuilder() {
41 | @Override
42 | public void apply(OkHttpClient.Builder builder) {
43 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
44 | }
45 | });
46 | client.addPlugin(networkFlipperPlugin);
47 | client.start();
48 |
49 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
50 | // Hence we run if after all native modules have been initialized
51 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
52 | if (reactContext == null) {
53 | reactInstanceManager.addReactInstanceEventListener(
54 | new ReactInstanceManager.ReactInstanceEventListener() {
55 | @Override
56 | public void onReactContextInitialized(ReactContext reactContext) {
57 | reactInstanceManager.removeReactInstanceEventListener(this);
58 | reactContext.runOnNativeModulesQueueThread(
59 | new Runnable() {
60 | @Override
61 | public void run() {
62 | client.addPlugin(new FrescoFlipperPlugin());
63 | }
64 | });
65 | }
66 | });
67 | } else {
68 | client.addPlugin(new FrescoFlipperPlugin());
69 | }
70 | }
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/src/screens/StoryScreen/index.js:
--------------------------------------------------------------------------------
1 | import React, {useEffect, useState} from 'react';
2 | import {
3 | View,
4 | Text,
5 | SafeAreaView,
6 | ImageBackground,
7 | ActivityIndicator,
8 | TextInput,
9 | TouchableWithoutFeedback,
10 | Dimensions,
11 | } from 'react-native';
12 | import { useRoute, useNavigation } from '@react-navigation/native';
13 | import { API, graphqlOperation } from 'aws-amplify';
14 |
15 | import { listStorys } from '../../graphql/queries';
16 | import styles from './styles';
17 | import storiesData from '../../data/stories';
18 | import ProfilePicture from "../../components/ProfilePicture";
19 | import Feather from "react-native-vector-icons/Feather";
20 | import Ionicons from "react-native-vector-icons/Ionicons";
21 |
22 | const StoryScreen = () => {
23 |
24 | const [stories, setStories] = useState([]);
25 | const [activeStoryIndex, setActiveStoryIndex] = useState(null);
26 |
27 | const route = useRoute();
28 |
29 | useEffect(() => {
30 | fetchStories();
31 | setActiveStoryIndex(0);
32 | }, []);
33 |
34 | const fetchStories = async () => {
35 | try {
36 | const storiesData = await API.graphql(graphqlOperation(listStorys));
37 | console.log(storiesData);
38 | setStories(storiesData.data.listStorys.items);
39 | } catch (e) {
40 | console.log('error fetching stories');
41 | console.log(e)
42 | }
43 | }
44 |
45 | const handleNextStory = () => {
46 | if (activeStoryIndex >= stories.length - 1) {
47 | return;
48 | }
49 | setActiveStoryIndex(activeStoryIndex + 1);
50 | }
51 |
52 | const handlePrevStory = () => {
53 | if (activeStoryIndex <= 0) {
54 | return;
55 | }
56 | setActiveStoryIndex(activeStoryIndex - 1);
57 | }
58 |
59 | const handlePress = (evt) => {
60 | const x = evt.nativeEvent.locationX;
61 | const screenWidth = Dimensions.get('window').width;
62 |
63 | if (x < screenWidth / 2) {
64 | handlePrevStory();
65 | } else {
66 | handleNextStory();
67 | }
68 | }
69 |
70 | if (!stories || stories.length === 0) {
71 | return (
72 |
73 |
74 |
75 | )
76 | }
77 |
78 | const activeStory = stories[activeStoryIndex];
79 |
80 | return (
81 |
82 |
83 |
84 |
85 |
86 | {activeStory.user.name}
87 | {activeStory.createdAt}
88 |
89 |
90 |
91 |
92 |
93 |
94 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 | )
109 | }
110 |
111 | export default StoryScreen;
112 |
--------------------------------------------------------------------------------
/ios/InstagramClone.xcodeproj/xcshareddata/xcschemes/InstagramClone.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/ios/InstagramClone.xcodeproj/xcshareddata/xcschemes/InstagramClone-tvOS.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/src/graphql/subscriptions.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | // this is an auto generated file. This will be overwritten
3 |
4 | export const onCreateUser = /* GraphQL */ `
5 | subscription OnCreateUser {
6 | onCreateUser {
7 | id
8 | name
9 | image
10 | posts {
11 | items {
12 | id
13 | caption
14 | image
15 | userID
16 | likes
17 | createdAt
18 | updatedAt
19 | }
20 | nextToken
21 | }
22 | createdAt
23 | updatedAt
24 | }
25 | }
26 | `;
27 | export const onUpdateUser = /* GraphQL */ `
28 | subscription OnUpdateUser {
29 | onUpdateUser {
30 | id
31 | name
32 | image
33 | posts {
34 | items {
35 | id
36 | caption
37 | image
38 | userID
39 | likes
40 | createdAt
41 | updatedAt
42 | }
43 | nextToken
44 | }
45 | createdAt
46 | updatedAt
47 | }
48 | }
49 | `;
50 | export const onDeleteUser = /* GraphQL */ `
51 | subscription OnDeleteUser {
52 | onDeleteUser {
53 | id
54 | name
55 | image
56 | posts {
57 | items {
58 | id
59 | caption
60 | image
61 | userID
62 | likes
63 | createdAt
64 | updatedAt
65 | }
66 | nextToken
67 | }
68 | createdAt
69 | updatedAt
70 | }
71 | }
72 | `;
73 | export const onCreatePost = /* GraphQL */ `
74 | subscription OnCreatePost {
75 | onCreatePost {
76 | id
77 | caption
78 | image
79 | userID
80 | likes
81 | user {
82 | id
83 | name
84 | image
85 | posts {
86 | nextToken
87 | }
88 | createdAt
89 | updatedAt
90 | }
91 | createdAt
92 | updatedAt
93 | }
94 | }
95 | `;
96 | export const onUpdatePost = /* GraphQL */ `
97 | subscription OnUpdatePost {
98 | onUpdatePost {
99 | id
100 | caption
101 | image
102 | userID
103 | likes
104 | user {
105 | id
106 | name
107 | image
108 | posts {
109 | nextToken
110 | }
111 | createdAt
112 | updatedAt
113 | }
114 | createdAt
115 | updatedAt
116 | }
117 | }
118 | `;
119 | export const onDeletePost = /* GraphQL */ `
120 | subscription OnDeletePost {
121 | onDeletePost {
122 | id
123 | caption
124 | image
125 | userID
126 | likes
127 | user {
128 | id
129 | name
130 | image
131 | posts {
132 | nextToken
133 | }
134 | createdAt
135 | updatedAt
136 | }
137 | createdAt
138 | updatedAt
139 | }
140 | }
141 | `;
142 | export const onCreateStory = /* GraphQL */ `
143 | subscription OnCreateStory {
144 | onCreateStory {
145 | id
146 | image
147 | userID
148 | user {
149 | id
150 | name
151 | image
152 | posts {
153 | nextToken
154 | }
155 | createdAt
156 | updatedAt
157 | }
158 | createdAt
159 | updatedAt
160 | }
161 | }
162 | `;
163 | export const onUpdateStory = /* GraphQL */ `
164 | subscription OnUpdateStory {
165 | onUpdateStory {
166 | id
167 | image
168 | userID
169 | user {
170 | id
171 | name
172 | image
173 | posts {
174 | nextToken
175 | }
176 | createdAt
177 | updatedAt
178 | }
179 | createdAt
180 | updatedAt
181 | }
182 | }
183 | `;
184 | export const onDeleteStory = /* GraphQL */ `
185 | subscription OnDeleteStory {
186 | onDeleteStory {
187 | id
188 | image
189 | userID
190 | user {
191 | id
192 | name
193 | image
194 | posts {
195 | nextToken
196 | }
197 | createdAt
198 | updatedAt
199 | }
200 | createdAt
201 | updatedAt
202 | }
203 | }
204 | `;
205 |
--------------------------------------------------------------------------------
/popuplateApi.js:
--------------------------------------------------------------------------------
1 | mutation user1 {
2 | createUser(input: {name: "Vadim", image: "https://scontent.fkiv3-1.fna.fbcdn.net/v/t31.0-1/p160x160/22256588_1932617800312085_5686197942193420542_o.jpg?_nc_cat=110&_nc_sid=dbb9e7&_nc_eui2=AeGjZbecmqwLvnlbx3STRUcixlokCBJZ6JPGWiQIElnok5b36VQxmkbd_xA74WOh5Md7TWZNOQ6TSiAdKeQf8RJ9&_nc_ohc=tq7CYqHvRYcAX_LwjFy&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=a7fda4462bbac7dcca956ac0c492e739&oe=5F40895B"}) {
3 | id
4 | name
5 | }
6 | }
7 |
8 | mutation user2 {
9 | createUser(input: {name: "Alex", image: "https://scontent.fkiv3-1.fna.fbcdn.net/v/t1.0-1/p160x160/107443858_3074598385966770_1929559809312242379_n.jpg?_nc_cat=107&_nc_sid=dbb9e7&_nc_eui2=AeGuvh6y7JdJyQ_sgjEaph-zDfw2T_M-BQMN_DZP8z4FA3OG-Qkjoajvba83y0-f60PUHDPn7-GUA0e8jDoxYkRC&_nc_ohc=mmDFGHC1nLAAX8ojlCt&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=4c8509718f3e6e49cd6cf9eb163eb3fc&oe=5F42657B"}) {
10 | id
11 | name
12 | }
13 | }
14 |
15 | mutation user3 {
16 | createUser(input: {name: "Lukas", image: "https://scontent.fkiv3-1.fna.fbcdn.net/v/t1.0-1/p160x160/101550839_2558540351026011_5343458796813418496_o.jpg?_nc_cat=100&_nc_sid=dbb9e7&_nc_eui2=AeGStRqlzx8Ffpbfczu6NNozefIpQnTPL0R58ilCdM8vRBhOrXGeOqGETI_lhHoXCUAvSLzVs6tG1zxDAtFZn4PN&_nc_ohc=mZM1p1QdLMoAX9QVenH&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=af7355936e01064d82372f3f26f70dd8&oe=5F426FFF"}) {
17 | id
18 | name
19 | }
20 | }
21 |
22 | mutation user4 {
23 | createUser(input: {name: "Danil", image: "https://scontent.fkiv3-1.fna.fbcdn.net/v/t31.0-1/p160x160/14242257_122280314893965_2111799435851825649_o.jpg?_nc_cat=100&_nc_sid=dbb9e7&_nc_eui2=AeGs9jG5hGVcbB1C9N0UQqdbXduE6cDoPWBd24TpwOg9YIDqQWWxeE87hXgFYgD8aqOX8f7me8cCBfYci34GWHbE&_nc_ohc=CFFbdCcsaYwAX9V0Ybz&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=b2cef9552fdd53440485d2f799a320d3&oe=5F40C3D6"}) {
24 | id
25 | name
26 | }
27 | }
28 |
29 | mutation post1 {
30 | createPost(input: {userID: "",likes: 0,caption: "Hey there", image: "https://i.insider.com/5d03aa8e6fc9201bc7002b43?width=1136&format=jpeg"}) {
31 | id
32 | image
33 | caption
34 | user {
35 | name
36 | }
37 | }
38 | }
39 |
40 | mutation story1 {
41 | createStory(input: {userID: "", image: "https://upload.wikimedia.org/wikipedia/commons/0/0f/Eiffel_Tower_Vertical.JPG"}) {
42 | id
43 | image
44 | user {
45 | name
46 | }
47 | }
48 | }
49 |
50 | mutation post2 {
51 | createPost(input: {userID: "",likes: 12,caption: "Check this out", image: "https://cdnuploads.aa.com.tr/uploads/Contents/2020/05/14/thumbs_b_c_88bedbc66bb57f0e884555e8250ae5f9.jpg?v=140708"}) {
52 | id
53 | image
54 | caption
55 | user {
56 | name
57 | }
58 | }
59 | }
60 |
61 | mutation story2 {
62 | createStory(input: {userID: "", image: "https://images.unsplash.com/photo-1526512340740-9217d0159da9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80"}) {
63 | id
64 | image
65 | user {
66 | name
67 | }
68 | }
69 | }
70 |
71 | mutation post3 {
72 | createPost(input: {userID: "", likes: 10,caption: "Like4Likes", image: "https://i.insider.com/5d03aa8e6fc9201bc7002b43?width=1136&format=jpeg"}) {
73 | id
74 | image
75 | caption
76 | user {
77 | name
78 | }
79 | }
80 | }
81 |
82 | mutation story3 {
83 | createStory(input: {userID: "", image: "https://upload.wikimedia.org/wikipedia/commons/0/0f/Eiffel_Tower_Vertical.JPG"}) {
84 | id
85 | image
86 | user {
87 | name
88 | }
89 | }
90 | }
91 |
92 | mutation post4 {
93 | createPost(input: {userID: "",likes: 40, caption: "isn't this awesome", image: "https://cdnuploads.aa.com.tr/uploads/Contents/2020/05/14/thumbs_b_c_88bedbc66bb57f0e884555e8250ae5f9.jpg?v=140708"}) {
94 | id
95 | image
96 | caption
97 | user {
98 | name
99 | }
100 | }
101 | }
102 |
103 | mutation story4 {
104 | createStory(input: {userID: "", image: "https://images.unsplash.com/photo-1526512340740-9217d0159da9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80"}) {
105 | id
106 | image
107 | user {
108 | name
109 | }
110 | }
111 | }
112 |
113 | query listPosts {
114 | listPosts {
115 | items {
116 | caption
117 | createdAt
118 | id
119 | image
120 | user {
121 | id
122 | image
123 | name
124 | }
125 | }
126 | }
127 | }
128 |
129 | query listStorys {
130 | listStorys {
131 | items {
132 | createdAt
133 | id
134 | image
135 | user {
136 | id
137 | image
138 | name
139 | }
140 | }
141 | }
142 | }
143 |
--------------------------------------------------------------------------------
/src/data/stories.js:
--------------------------------------------------------------------------------
1 | export default [
2 | {
3 | user: {
4 | id: '1',
5 | imageUri: 'https://scontent.fkiv3-1.fna.fbcdn.net/v/t31.0-1/p160x160/22256588_1932617800312085_5686197942193420542_o.jpg?_nc_cat=110&_nc_sid=dbb9e7&_nc_eui2=AeGjZbecmqwLvnlbx3STRUcixlokCBJZ6JPGWiQIElnok5b36VQxmkbd_xA74WOh5Md7TWZNOQ6TSiAdKeQf8RJ9&_nc_ohc=tq7CYqHvRYcAX_LwjFy&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=a7fda4462bbac7dcca956ac0c492e739&oe=5F40895B',
6 | name: 'Vadim',
7 | },
8 | stories: [
9 | {
10 | imageUri: 'https://i.insider.com/5d03aa8e6fc9201bc7002b43?width=1136&format=jpeg',
11 | postedTime: '25 m',
12 | }, {
13 | imageUri: 'https://images.unsplash.com/photo-1526512340740-9217d0159da9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80',
14 | postedTime: '25 m',
15 | }, {
16 | imageUri: 'https://lh3.googleusercontent.com/proxy/cTB66Af39yCQmn0Z5Dy9YGYG8NCTmtLVB4QzOYNMs6ejl3SpWcGK6rEsIKCDpeeetC8b5jE5iyDk-suYMRDJe5zvmfjYAmuzDG5JcKnQQ59pI9caMwYrg5aTjqoEgVzaBNH7BvUkGk8TXsqSYTutYCkuBYp6osmM',
17 | postedTime: '25 m',
18 | }
19 | ]
20 | }, {
21 | user: {
22 | id: '2',
23 | imageUri: 'https://scontent.fkiv3-1.fna.fbcdn.net/v/t1.0-1/p160x160/107443858_3074598385966770_1929559809312242379_n.jpg?_nc_cat=107&_nc_sid=dbb9e7&_nc_eui2=AeGuvh6y7JdJyQ_sgjEaph-zDfw2T_M-BQMN_DZP8z4FA3OG-Qkjoajvba83y0-f60PUHDPn7-GUA0e8jDoxYkRC&_nc_ohc=mmDFGHC1nLAAX8ojlCt&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=4c8509718f3e6e49cd6cf9eb163eb3fc&oe=5F42657B',
24 | name: 'Lukas',
25 | },
26 | stories: [
27 | {
28 | imageUri: 'https://i.pinimg.com/originals/0b/ac/f6/0bacf62a4bd456d02d02c6b8a5c98f67.jpg',
29 | postedTime: '25 m',
30 | }, {
31 | imageUri: 'https://images.unsplash.com/photo-1526512340740-9217d0159da9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80',
32 | postedTime: '25 m',
33 | }, {
34 | imageUri: 'https://lh3.googleusercontent.com/proxy/cTB66Af39yCQmn0Z5Dy9YGYG8NCTmtLVB4QzOYNMs6ejl3SpWcGK6rEsIKCDpeeetC8b5jE5iyDk-suYMRDJe5zvmfjYAmuzDG5JcKnQQ59pI9caMwYrg5aTjqoEgVzaBNH7BvUkGk8TXsqSYTutYCkuBYp6osmM',
35 | postedTime: '25 m',
36 | }
37 | ]
38 | }, {
39 | user: {
40 | id: '3',
41 | imageUri: 'https://scontent.fkiv3-1.fna.fbcdn.net/v/t1.0-1/p160x160/101550839_2558540351026011_5343458796813418496_o.jpg?_nc_cat=100&_nc_sid=dbb9e7&_nc_eui2=AeGStRqlzx8Ffpbfczu6NNozefIpQnTPL0R58ilCdM8vRBhOrXGeOqGETI_lhHoXCUAvSLzVs6tG1zxDAtFZn4PN&_nc_ohc=mZM1p1QdLMoAX9QVenH&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=af7355936e01064d82372f3f26f70dd8&oe=5F426FFF',
42 | name: 'Alex',
43 | },
44 | stories: [
45 | {
46 | imageUri: 'https://i.pinimg.com/originals/0b/ac/f6/0bacf62a4bd456d02d02c6b8a5c98f67.jpg',
47 | postedTime: '25 m',
48 | },
49 | ]
50 | }, {
51 | user: {
52 | id: '4',
53 | imageUri: 'https://scontent.fkiv3-1.fna.fbcdn.net/v/t31.0-1/p160x160/14242257_122280314893965_2111799435851825649_o.jpg?_nc_cat=100&_nc_sid=dbb9e7&_nc_eui2=AeGs9jG5hGVcbB1C9N0UQqdbXduE6cDoPWBd24TpwOg9YIDqQWWxeE87hXgFYgD8aqOX8f7me8cCBfYci34GWHbE&_nc_ohc=CFFbdCcsaYwAX9V0Ybz&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=b2cef9552fdd53440485d2f799a320d3&oe=5F40C3D6',
54 | name: 'Danil',
55 | },
56 | stories: [
57 | {
58 | imageUri: 'https://i.pinimg.com/originals/0b/ac/f6/0bacf62a4bd456d02d02c6b8a5c98f67.jpg',
59 | postedTime: '25 m',
60 | },
61 | ]
62 | }, {
63 | user: {
64 | id: '5',
65 | imageUri: 'https://scontent.fkiv3-1.fna.fbcdn.net/v/t31.0-1/p160x160/22256588_1932617800312085_5686197942193420542_o.jpg?_nc_cat=110&_nc_sid=dbb9e7&_nc_eui2=AeGjZbecmqwLvnlbx3STRUcixlokCBJZ6JPGWiQIElnok5b36VQxmkbd_xA74WOh5Md7TWZNOQ6TSiAdKeQf8RJ9&_nc_ohc=tq7CYqHvRYcAX_LwjFy&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=a7fda4462bbac7dcca956ac0c492e739&oe=5F40895B',
66 | name: 'Name',
67 | },
68 | stories: [
69 | {
70 | imageUri: 'https://i.pinimg.com/originals/0b/ac/f6/0bacf62a4bd456d02d02c6b8a5c98f67.jpg',
71 | postedTime: '25 m',
72 | },
73 | ]
74 | }, {
75 | user: {
76 | id: '6',
77 | imageUri: 'https://scontent.fkiv3-1.fna.fbcdn.net/v/t1.0-1/p160x160/107443858_3074598385966770_1929559809312242379_n.jpg?_nc_cat=107&_nc_sid=dbb9e7&_nc_eui2=AeGuvh6y7JdJyQ_sgjEaph-zDfw2T_M-BQMN_DZP8z4FA3OG-Qkjoajvba83y0-f60PUHDPn7-GUA0e8jDoxYkRC&_nc_ohc=mmDFGHC1nLAAX8ojlCt&_nc_ht=scontent.fkiv3-1.fna&_nc_tp=6&oh=4c8509718f3e6e49cd6cf9eb163eb3fc&oe=5F42657B',
78 | name: 'Lukdsaas',
79 | },
80 | stories: [
81 | {
82 | imageUri: 'https://i.pinimg.com/originals/0b/ac/f6/0bacf62a4bd456d02d02c6b8a5c98f67.jpg',
83 | postedTime: '25 m',
84 | },
85 | ]
86 | },
87 | ]
88 |
--------------------------------------------------------------------------------
/src/graphql/mutations.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | // this is an auto generated file. This will be overwritten
3 |
4 | export const createUser = /* GraphQL */ `
5 | mutation CreateUser(
6 | $input: CreateUserInput!
7 | $condition: ModelUserConditionInput
8 | ) {
9 | createUser(input: $input, condition: $condition) {
10 | id
11 | name
12 | image
13 | posts {
14 | items {
15 | id
16 | caption
17 | image
18 | userID
19 | likes
20 | createdAt
21 | updatedAt
22 | }
23 | nextToken
24 | }
25 | createdAt
26 | updatedAt
27 | }
28 | }
29 | `;
30 | export const updateUser = /* GraphQL */ `
31 | mutation UpdateUser(
32 | $input: UpdateUserInput!
33 | $condition: ModelUserConditionInput
34 | ) {
35 | updateUser(input: $input, condition: $condition) {
36 | id
37 | name
38 | image
39 | posts {
40 | items {
41 | id
42 | caption
43 | image
44 | userID
45 | likes
46 | createdAt
47 | updatedAt
48 | }
49 | nextToken
50 | }
51 | createdAt
52 | updatedAt
53 | }
54 | }
55 | `;
56 | export const deleteUser = /* GraphQL */ `
57 | mutation DeleteUser(
58 | $input: DeleteUserInput!
59 | $condition: ModelUserConditionInput
60 | ) {
61 | deleteUser(input: $input, condition: $condition) {
62 | id
63 | name
64 | image
65 | posts {
66 | items {
67 | id
68 | caption
69 | image
70 | userID
71 | likes
72 | createdAt
73 | updatedAt
74 | }
75 | nextToken
76 | }
77 | createdAt
78 | updatedAt
79 | }
80 | }
81 | `;
82 | export const createPost = /* GraphQL */ `
83 | mutation CreatePost(
84 | $input: CreatePostInput!
85 | $condition: ModelPostConditionInput
86 | ) {
87 | createPost(input: $input, condition: $condition) {
88 | id
89 | caption
90 | image
91 | userID
92 | likes
93 | user {
94 | id
95 | name
96 | image
97 | posts {
98 | nextToken
99 | }
100 | createdAt
101 | updatedAt
102 | }
103 | createdAt
104 | updatedAt
105 | }
106 | }
107 | `;
108 | export const updatePost = /* GraphQL */ `
109 | mutation UpdatePost(
110 | $input: UpdatePostInput!
111 | $condition: ModelPostConditionInput
112 | ) {
113 | updatePost(input: $input, condition: $condition) {
114 | id
115 | caption
116 | image
117 | userID
118 | likes
119 | user {
120 | id
121 | name
122 | image
123 | posts {
124 | nextToken
125 | }
126 | createdAt
127 | updatedAt
128 | }
129 | createdAt
130 | updatedAt
131 | }
132 | }
133 | `;
134 | export const deletePost = /* GraphQL */ `
135 | mutation DeletePost(
136 | $input: DeletePostInput!
137 | $condition: ModelPostConditionInput
138 | ) {
139 | deletePost(input: $input, condition: $condition) {
140 | id
141 | caption
142 | image
143 | userID
144 | likes
145 | user {
146 | id
147 | name
148 | image
149 | posts {
150 | nextToken
151 | }
152 | createdAt
153 | updatedAt
154 | }
155 | createdAt
156 | updatedAt
157 | }
158 | }
159 | `;
160 | export const createStory = /* GraphQL */ `
161 | mutation CreateStory(
162 | $input: CreateStoryInput!
163 | $condition: ModelStoryConditionInput
164 | ) {
165 | createStory(input: $input, condition: $condition) {
166 | id
167 | image
168 | userID
169 | user {
170 | id
171 | name
172 | image
173 | posts {
174 | nextToken
175 | }
176 | createdAt
177 | updatedAt
178 | }
179 | createdAt
180 | updatedAt
181 | }
182 | }
183 | `;
184 | export const updateStory = /* GraphQL */ `
185 | mutation UpdateStory(
186 | $input: UpdateStoryInput!
187 | $condition: ModelStoryConditionInput
188 | ) {
189 | updateStory(input: $input, condition: $condition) {
190 | id
191 | image
192 | userID
193 | user {
194 | id
195 | name
196 | image
197 | posts {
198 | nextToken
199 | }
200 | createdAt
201 | updatedAt
202 | }
203 | createdAt
204 | updatedAt
205 | }
206 | }
207 | `;
208 | export const deleteStory = /* GraphQL */ `
209 | mutation DeleteStory(
210 | $input: DeleteStoryInput!
211 | $condition: ModelStoryConditionInput
212 | ) {
213 | deleteStory(input: $input, condition: $condition) {
214 | id
215 | image
216 | userID
217 | user {
218 | id
219 | name
220 | image
221 | posts {
222 | nextToken
223 | }
224 | createdAt
225 | updatedAt
226 | }
227 | createdAt
228 | updatedAt
229 | }
230 | }
231 | `;
232 |
--------------------------------------------------------------------------------
/ios/InstagramClone/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
25 |
31 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/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 | # https://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 or MSYS, switch paths to Windows format before running java
129 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; 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=`expr $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 | exec "$JAVACMD" "$@"
184 |
--------------------------------------------------------------------------------
/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. If none specified and
19 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is
20 | * // default. Can be overridden with ENTRY_FILE environment variable.
21 | * entryFile: "index.android.js",
22 | *
23 | * // https://reactnative.dev/docs/performance#enable-the-ram-format
24 | * bundleCommand: "ram-bundle",
25 | *
26 | * // whether to bundle JS and assets in debug mode
27 | * bundleInDebug: false,
28 | *
29 | * // whether to bundle JS and assets in release mode
30 | * bundleInRelease: true,
31 | *
32 | * // whether to bundle JS and assets in another build variant (if configured).
33 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
34 | * // The configuration property can be in the following formats
35 | * // 'bundleIn${productFlavor}${buildType}'
36 | * // 'bundleIn${buildType}'
37 | * // bundleInFreeDebug: true,
38 | * // bundleInPaidRelease: true,
39 | * // bundleInBeta: true,
40 | *
41 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
42 | * // for example: to disable dev mode in the staging build type (if configured)
43 | * devDisabledInStaging: true,
44 | * // The configuration property can be in the following formats
45 | * // 'devDisabledIn${productFlavor}${buildType}'
46 | * // 'devDisabledIn${buildType}'
47 | *
48 | * // the root of your project, i.e. where "package.json" lives
49 | * root: "../../",
50 | *
51 | * // where to put the JS bundle asset in debug mode
52 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
53 | *
54 | * // where to put the JS bundle asset in release mode
55 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
56 | *
57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
58 | * // require('./image.png')), in debug mode
59 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
60 | *
61 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
62 | * // require('./image.png')), in release mode
63 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
64 | *
65 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
66 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
67 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
68 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
69 | * // for example, you might want to remove it from here.
70 | * inputExcludes: ["android/**", "ios/**"],
71 | *
72 | * // override which node gets called and with what additional arguments
73 | * nodeExecutableAndArgs: ["node"],
74 | *
75 | * // supply additional arguments to the packager
76 | * extraPackagerArgs: []
77 | * ]
78 | */
79 |
80 | project.ext.react = [
81 | enableHermes: false, // clean and rebuild if changing
82 | ]
83 |
84 | apply from: "../../node_modules/react-native/react.gradle"
85 |
86 | /**
87 | * Set this to true to create two separate APKs instead of one:
88 | * - An APK that only works on ARM devices
89 | * - An APK that only works on x86 devices
90 | * The advantage is the size of the APK is reduced by about 4MB.
91 | * Upload all the APKs to the Play Store and people will download
92 | * the correct one based on the CPU architecture of their device.
93 | */
94 | def enableSeparateBuildPerCPUArchitecture = false
95 |
96 | /**
97 | * Run Proguard to shrink the Java bytecode in release builds.
98 | */
99 | def enableProguardInReleaseBuilds = false
100 |
101 | /**
102 | * The preferred build flavor of JavaScriptCore.
103 | *
104 | * For example, to use the international variant, you can use:
105 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
106 | *
107 | * The international variant includes ICU i18n library and necessary data
108 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
109 | * give correct results when using with locales other than en-US. Note that
110 | * this variant is about 6MiB larger per architecture than default.
111 | */
112 | def jscFlavor = 'org.webkit:android-jsc:+'
113 |
114 | /**
115 | * Whether to enable the Hermes VM.
116 | *
117 | * This should be set on project.ext.react and mirrored here. If it is not set
118 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
119 | * and the benefits of using Hermes will therefore be sharply reduced.
120 | */
121 | def enableHermes = project.ext.react.get("enableHermes", false);
122 |
123 | android {
124 | compileSdkVersion rootProject.ext.compileSdkVersion
125 |
126 | compileOptions {
127 | sourceCompatibility JavaVersion.VERSION_1_8
128 | targetCompatibility JavaVersion.VERSION_1_8
129 | }
130 |
131 | defaultConfig {
132 | applicationId "com.instagramclone"
133 | minSdkVersion rootProject.ext.minSdkVersion
134 | targetSdkVersion rootProject.ext.targetSdkVersion
135 | versionCode 1
136 | versionName "1.0"
137 | }
138 | splits {
139 | abi {
140 | reset()
141 | enable enableSeparateBuildPerCPUArchitecture
142 | universalApk false // If true, also generate a universal APK
143 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
144 | }
145 | }
146 | signingConfigs {
147 | debug {
148 | storeFile file('debug.keystore')
149 | storePassword 'android'
150 | keyAlias 'androiddebugkey'
151 | keyPassword 'android'
152 | }
153 | }
154 | buildTypes {
155 | debug {
156 | signingConfig signingConfigs.debug
157 | }
158 | release {
159 | // Caution! In production, you need to generate your own keystore file.
160 | // see https://reactnative.dev/docs/signed-apk-android.
161 | signingConfig signingConfigs.debug
162 | minifyEnabled enableProguardInReleaseBuilds
163 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
164 | }
165 | }
166 |
167 | // applicationVariants are e.g. debug, release
168 | applicationVariants.all { variant ->
169 | variant.outputs.each { output ->
170 | // For each separate APK per architecture, set a unique version code as described here:
171 | // https://developer.android.com/studio/build/configure-apk-splits.html
172 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
173 | def abi = output.getFilter(OutputFile.ABI)
174 | if (abi != null) { // null for the universal-debug, universal-release variants
175 | output.versionCodeOverride =
176 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
177 | }
178 |
179 | }
180 | }
181 | }
182 |
183 | dependencies {
184 | implementation fileTree(dir: "libs", include: ["*.jar"])
185 | //noinspection GradleDynamicVersion
186 | implementation "com.facebook.react:react-native:+" // From node_modules
187 |
188 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
189 |
190 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
191 | exclude group:'com.facebook.fbjni'
192 | }
193 |
194 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
195 | exclude group:'com.facebook.flipper'
196 | exclude group:'com.squareup.okhttp3', module:'okhttp'
197 | }
198 |
199 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
200 | exclude group:'com.facebook.flipper'
201 | }
202 |
203 | if (enableHermes) {
204 | def hermesPath = "../../node_modules/hermes-engine/android/";
205 | debugImplementation files(hermesPath + "hermes-debug.aar")
206 | releaseImplementation files(hermesPath + "hermes-release.aar")
207 | } else {
208 | implementation jscFlavor
209 | }
210 | }
211 |
212 | // Run this once to be able to run the application with BUCK
213 | // puts all compile dependencies into folder libs for BUCK to use
214 | task copyDownloadableDepsToLibs(type: Copy) {
215 | from configurations.compile
216 | into 'libs'
217 | }
218 |
219 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
220 |
--------------------------------------------------------------------------------
/amplify/backend/auth/instagramclonee9ad3f24/instagramclonee9ad3f24-cloudformation-template.yml:
--------------------------------------------------------------------------------
1 | AWSTemplateFormatVersion: 2010-09-09
2 |
3 | Parameters:
4 | env:
5 | Type: String
6 | authRoleArn:
7 | Type: String
8 | unauthRoleArn:
9 | Type: String
10 |
11 |
12 |
13 |
14 | identityPoolName:
15 | Type: String
16 |
17 | allowUnauthenticatedIdentities:
18 | Type: String
19 |
20 | resourceNameTruncated:
21 | Type: String
22 |
23 | userPoolName:
24 | Type: String
25 |
26 | autoVerifiedAttributes:
27 | Type: CommaDelimitedList
28 |
29 | mfaConfiguration:
30 | Type: String
31 |
32 | mfaTypes:
33 | Type: CommaDelimitedList
34 |
35 | smsAuthenticationMessage:
36 | Type: String
37 |
38 | smsVerificationMessage:
39 | Type: String
40 |
41 | emailVerificationSubject:
42 | Type: String
43 |
44 | emailVerificationMessage:
45 | Type: String
46 |
47 | defaultPasswordPolicy:
48 | Type: String
49 |
50 | passwordPolicyMinLength:
51 | Type: Number
52 |
53 | passwordPolicyCharacters:
54 | Type: CommaDelimitedList
55 |
56 | requiredAttributes:
57 | Type: CommaDelimitedList
58 |
59 | userpoolClientGenerateSecret:
60 | Type: String
61 |
62 | userpoolClientRefreshTokenValidity:
63 | Type: Number
64 |
65 | userpoolClientWriteAttributes:
66 | Type: CommaDelimitedList
67 |
68 | userpoolClientReadAttributes:
69 | Type: CommaDelimitedList
70 |
71 | userpoolClientLambdaRole:
72 | Type: String
73 |
74 | userpoolClientSetAttributes:
75 | Type: String
76 |
77 | sharedId:
78 | Type: String
79 |
80 | resourceName:
81 | Type: String
82 |
83 | authSelections:
84 | Type: String
85 |
86 | useDefault:
87 | Type: String
88 |
89 | userPoolGroupList:
90 | Type: CommaDelimitedList
91 |
92 | dependsOn:
93 | Type: CommaDelimitedList
94 |
95 | Conditions:
96 | ShouldNotCreateEnvResources: !Equals [ !Ref env, NONE ]
97 |
98 | Resources:
99 |
100 |
101 | # BEGIN SNS ROLE RESOURCE
102 | SNSRole:
103 | # Created to allow the UserPool SMS Config to publish via the Simple Notification Service during MFA Process
104 | Type: AWS::IAM::Role
105 | Properties:
106 | RoleName: !If [ShouldNotCreateEnvResources, 'instage9ad3f24_sns-role', !Join ['',[ 'sns', 'e9ad3f24', !Select [3, !Split ['-', !Ref 'AWS::StackName']], '-', !Ref env]]]
107 | AssumeRolePolicyDocument:
108 | Version: "2012-10-17"
109 | Statement:
110 | - Sid: ""
111 | Effect: "Allow"
112 | Principal:
113 | Service: "cognito-idp.amazonaws.com"
114 | Action:
115 | - "sts:AssumeRole"
116 | Condition:
117 | StringEquals:
118 | sts:ExternalId: instage9ad3f24_role_external_id
119 | Policies:
120 | -
121 | PolicyName: instage9ad3f24-sns-policy
122 | PolicyDocument:
123 | Version: "2012-10-17"
124 | Statement:
125 | -
126 | Effect: "Allow"
127 | Action:
128 | - "sns:Publish"
129 | Resource: "*"
130 | # BEGIN USER POOL RESOURCES
131 | UserPool:
132 | # Created upon user selection
133 | # Depends on SNS Role for Arn if MFA is enabled
134 | Type: AWS::Cognito::UserPool
135 | UpdateReplacePolicy: Retain
136 | Properties:
137 | UserPoolName: !If [ShouldNotCreateEnvResources, !Ref userPoolName, !Join ['',[!Ref userPoolName, '-', !Ref env]]]
138 |
139 | Schema:
140 |
141 | -
142 | Name: email
143 | Required: true
144 | Mutable: true
145 |
146 |
147 |
148 |
149 | AutoVerifiedAttributes: !Ref autoVerifiedAttributes
150 |
151 |
152 | EmailVerificationMessage: !Ref emailVerificationMessage
153 | EmailVerificationSubject: !Ref emailVerificationSubject
154 |
155 | Policies:
156 | PasswordPolicy:
157 | MinimumLength: !Ref passwordPolicyMinLength
158 | RequireLowercase: false
159 | RequireNumbers: false
160 | RequireSymbols: false
161 | RequireUppercase: false
162 |
163 | MfaConfiguration: !Ref mfaConfiguration
164 | SmsVerificationMessage: !Ref smsVerificationMessage
165 | SmsConfiguration:
166 | SnsCallerArn: !GetAtt SNSRole.Arn
167 | ExternalId: instage9ad3f24_role_external_id
168 |
169 |
170 | UserPoolClientWeb:
171 | # Created provide application access to user pool
172 | # Depends on UserPool for ID reference
173 | Type: "AWS::Cognito::UserPoolClient"
174 | Properties:
175 | ClientName: instage9ad3f24_app_clientWeb
176 |
177 | RefreshTokenValidity: !Ref userpoolClientRefreshTokenValidity
178 | UserPoolId: !Ref UserPool
179 | DependsOn: UserPool
180 | UserPoolClient:
181 | # Created provide application access to user pool
182 | # Depends on UserPool for ID reference
183 | Type: "AWS::Cognito::UserPoolClient"
184 | Properties:
185 | ClientName: instage9ad3f24_app_client
186 |
187 | GenerateSecret: !Ref userpoolClientGenerateSecret
188 | RefreshTokenValidity: !Ref userpoolClientRefreshTokenValidity
189 | UserPoolId: !Ref UserPool
190 | DependsOn: UserPool
191 | # BEGIN USER POOL LAMBDA RESOURCES
192 | UserPoolClientRole:
193 | # Created to execute Lambda which gets userpool app client config values
194 | Type: 'AWS::IAM::Role'
195 | Properties:
196 | RoleName: !If [ShouldNotCreateEnvResources, !Ref userpoolClientLambdaRole, !Join ['',['upClientLambdaRole', 'e9ad3f24', !Select [3, !Split ['-', !Ref 'AWS::StackName']], '-', !Ref env]]]
197 | AssumeRolePolicyDocument:
198 | Version: '2012-10-17'
199 | Statement:
200 | - Effect: Allow
201 | Principal:
202 | Service:
203 | - lambda.amazonaws.com
204 | Action:
205 | - 'sts:AssumeRole'
206 | DependsOn: UserPoolClient
207 | UserPoolClientLambda:
208 | # Lambda which gets userpool app client config values
209 | # Depends on UserPool for id
210 | # Depends on UserPoolClientRole for role ARN
211 | Type: 'AWS::Lambda::Function'
212 | Properties:
213 | Code:
214 | ZipFile: !Join
215 | - |+
216 | - - 'const response = require(''cfn-response'');'
217 | - 'const aws = require(''aws-sdk'');'
218 | - 'const identity = new aws.CognitoIdentityServiceProvider();'
219 | - 'exports.handler = (event, context, callback) => {'
220 | - ' if (event.RequestType == ''Delete'') { '
221 | - ' response.send(event, context, response.SUCCESS, {})'
222 | - ' }'
223 | - ' if (event.RequestType == ''Update'' || event.RequestType == ''Create'') {'
224 | - ' const params = {'
225 | - ' ClientId: event.ResourceProperties.clientId,'
226 | - ' UserPoolId: event.ResourceProperties.userpoolId'
227 | - ' };'
228 | - ' identity.describeUserPoolClient(params).promise()'
229 | - ' .then((res) => {'
230 | - ' response.send(event, context, response.SUCCESS, {''appSecret'': res.UserPoolClient.ClientSecret});'
231 | - ' })'
232 | - ' .catch((err) => {'
233 | - ' response.send(event, context, response.FAILED, {err});'
234 | - ' });'
235 | - ' }'
236 | - '};'
237 | Handler: index.handler
238 | Runtime: nodejs10.x
239 | Timeout: '300'
240 | Role: !GetAtt
241 | - UserPoolClientRole
242 | - Arn
243 | DependsOn: UserPoolClientRole
244 | UserPoolClientLambdaPolicy:
245 | # Sets userpool policy for the role that executes the Userpool Client Lambda
246 | # Depends on UserPool for Arn
247 | # Marked as depending on UserPoolClientRole for easier to understand CFN sequencing
248 | Type: 'AWS::IAM::Policy'
249 | Properties:
250 | PolicyName: instage9ad3f24_userpoolclient_lambda_iam_policy
251 | Roles:
252 | - !Ref UserPoolClientRole
253 | PolicyDocument:
254 | Version: '2012-10-17'
255 | Statement:
256 | - Effect: Allow
257 | Action:
258 | - 'cognito-idp:DescribeUserPoolClient'
259 | Resource: !GetAtt UserPool.Arn
260 | DependsOn: UserPoolClientLambda
261 | UserPoolClientLogPolicy:
262 | # Sets log policy for the role that executes the Userpool Client Lambda
263 | # Depends on UserPool for Arn
264 | # Marked as depending on UserPoolClientLambdaPolicy for easier to understand CFN sequencing
265 | Type: 'AWS::IAM::Policy'
266 | Properties:
267 | PolicyName: instage9ad3f24_userpoolclient_lambda_log_policy
268 | Roles:
269 | - !Ref UserPoolClientRole
270 | PolicyDocument:
271 | Version: 2012-10-17
272 | Statement:
273 | - Effect: Allow
274 | Action:
275 | - 'logs:CreateLogGroup'
276 | - 'logs:CreateLogStream'
277 | - 'logs:PutLogEvents'
278 | Resource: !Sub
279 | - arn:aws:logs:${region}:${account}:log-group:/aws/lambda/${lambda}:log-stream:*
280 | - { region: !Ref "AWS::Region", account: !Ref "AWS::AccountId", lambda: !Ref UserPoolClientLambda}
281 | DependsOn: UserPoolClientLambdaPolicy
282 | UserPoolClientInputs:
283 | # Values passed to Userpool client Lambda
284 | # Depends on UserPool for Id
285 | # Depends on UserPoolClient for Id
286 | # Marked as depending on UserPoolClientLambdaPolicy for easier to understand CFN sequencing
287 | Type: 'Custom::LambdaCallout'
288 | Properties:
289 | ServiceToken: !GetAtt UserPoolClientLambda.Arn
290 | clientId: !Ref UserPoolClient
291 | userpoolId: !Ref UserPool
292 | DependsOn: UserPoolClientLogPolicy
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 | # BEGIN IDENTITY POOL RESOURCES
301 |
302 |
303 | IdentityPool:
304 | # Always created
305 | Type: AWS::Cognito::IdentityPool
306 | Properties:
307 | IdentityPoolName: !If [ShouldNotCreateEnvResources, 'instagramclonee9ad3f24_identitypool_e9ad3f24', !Join ['',['instagramclonee9ad3f24_identitypool_e9ad3f24', '__', !Ref env]]]
308 |
309 | CognitoIdentityProviders:
310 | - ClientId: !Ref UserPoolClient
311 | ProviderName: !Sub
312 | - cognito-idp.${region}.amazonaws.com/${client}
313 | - { region: !Ref "AWS::Region", client: !Ref UserPool}
314 | - ClientId: !Ref UserPoolClientWeb
315 | ProviderName: !Sub
316 | - cognito-idp.${region}.amazonaws.com/${client}
317 | - { region: !Ref "AWS::Region", client: !Ref UserPool}
318 |
319 | AllowUnauthenticatedIdentities: !Ref allowUnauthenticatedIdentities
320 |
321 |
322 | DependsOn: UserPoolClientInputs
323 |
324 |
325 | IdentityPoolRoleMap:
326 | # Created to map Auth and Unauth roles to the identity pool
327 | # Depends on Identity Pool for ID ref
328 | Type: AWS::Cognito::IdentityPoolRoleAttachment
329 | Properties:
330 | IdentityPoolId: !Ref IdentityPool
331 | Roles:
332 | unauthenticated: !Ref unauthRoleArn
333 | authenticated: !Ref authRoleArn
334 | DependsOn: IdentityPool
335 |
336 |
337 | Outputs :
338 |
339 | IdentityPoolId:
340 | Value: !Ref 'IdentityPool'
341 | Description: Id for the identity pool
342 | IdentityPoolName:
343 | Value: !GetAtt IdentityPool.Name
344 |
345 |
346 |
347 |
348 | UserPoolId:
349 | Value: !Ref 'UserPool'
350 | Description: Id for the user pool
351 | UserPoolName:
352 | Value: !Ref userPoolName
353 | AppClientIDWeb:
354 | Value: !Ref 'UserPoolClientWeb'
355 | Description: The user pool app client id for web
356 | AppClientID:
357 | Value: !Ref 'UserPoolClient'
358 | Description: The user pool app client id
359 | AppClientSecret:
360 | Value: !GetAtt UserPoolClientInputs.appSecret
361 |
362 |
363 |
364 |
365 |
366 |
367 |
368 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost-for-react-native (1.63.0)
3 | - CocoaAsyncSocket (7.6.4)
4 | - CocoaLibEvent (1.0.0)
5 | - DoubleConversion (1.1.6)
6 | - FBLazyVector (0.63.2)
7 | - FBReactNativeSpec (0.63.2):
8 | - Folly (= 2020.01.13.00)
9 | - RCTRequired (= 0.63.2)
10 | - RCTTypeSafety (= 0.63.2)
11 | - React-Core (= 0.63.2)
12 | - React-jsi (= 0.63.2)
13 | - ReactCommon/turbomodule/core (= 0.63.2)
14 | - Flipper (0.41.5):
15 | - Flipper-Folly (~> 2.2)
16 | - Flipper-RSocket (~> 1.1)
17 | - Flipper-DoubleConversion (1.1.7)
18 | - Flipper-Folly (2.2.0):
19 | - boost-for-react-native
20 | - CocoaLibEvent (~> 1.0)
21 | - Flipper-DoubleConversion
22 | - Flipper-Glog
23 | - OpenSSL-Universal (= 1.0.2.19)
24 | - Flipper-Glog (0.3.6)
25 | - Flipper-PeerTalk (0.0.4)
26 | - Flipper-RSocket (1.1.0):
27 | - Flipper-Folly (~> 2.2)
28 | - FlipperKit (0.41.5):
29 | - FlipperKit/Core (= 0.41.5)
30 | - FlipperKit/Core (0.41.5):
31 | - Flipper (~> 0.41.5)
32 | - FlipperKit/CppBridge
33 | - FlipperKit/FBCxxFollyDynamicConvert
34 | - FlipperKit/FBDefines
35 | - FlipperKit/FKPortForwarding
36 | - FlipperKit/CppBridge (0.41.5):
37 | - Flipper (~> 0.41.5)
38 | - FlipperKit/FBCxxFollyDynamicConvert (0.41.5):
39 | - Flipper-Folly (~> 2.2)
40 | - FlipperKit/FBDefines (0.41.5)
41 | - FlipperKit/FKPortForwarding (0.41.5):
42 | - CocoaAsyncSocket (~> 7.6)
43 | - Flipper-PeerTalk (~> 0.0.4)
44 | - FlipperKit/FlipperKitHighlightOverlay (0.41.5)
45 | - FlipperKit/FlipperKitLayoutPlugin (0.41.5):
46 | - FlipperKit/Core
47 | - FlipperKit/FlipperKitHighlightOverlay
48 | - FlipperKit/FlipperKitLayoutTextSearchable
49 | - YogaKit (~> 1.18)
50 | - FlipperKit/FlipperKitLayoutTextSearchable (0.41.5)
51 | - FlipperKit/FlipperKitNetworkPlugin (0.41.5):
52 | - FlipperKit/Core
53 | - FlipperKit/FlipperKitReactPlugin (0.41.5):
54 | - FlipperKit/Core
55 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.41.5):
56 | - FlipperKit/Core
57 | - FlipperKit/SKIOSNetworkPlugin (0.41.5):
58 | - FlipperKit/Core
59 | - FlipperKit/FlipperKitNetworkPlugin
60 | - Folly (2020.01.13.00):
61 | - boost-for-react-native
62 | - DoubleConversion
63 | - Folly/Default (= 2020.01.13.00)
64 | - glog
65 | - Folly/Default (2020.01.13.00):
66 | - boost-for-react-native
67 | - DoubleConversion
68 | - glog
69 | - glog (0.3.5)
70 | - JKBigInteger2 (0.0.5)
71 | - OpenSSL-Universal (1.0.2.19):
72 | - OpenSSL-Universal/Static (= 1.0.2.19)
73 | - OpenSSL-Universal/Static (1.0.2.19)
74 | - RCTRequired (0.63.2)
75 | - RCTTypeSafety (0.63.2):
76 | - FBLazyVector (= 0.63.2)
77 | - Folly (= 2020.01.13.00)
78 | - RCTRequired (= 0.63.2)
79 | - React-Core (= 0.63.2)
80 | - React (0.63.2):
81 | - React-Core (= 0.63.2)
82 | - React-Core/DevSupport (= 0.63.2)
83 | - React-Core/RCTWebSocket (= 0.63.2)
84 | - React-RCTActionSheet (= 0.63.2)
85 | - React-RCTAnimation (= 0.63.2)
86 | - React-RCTBlob (= 0.63.2)
87 | - React-RCTImage (= 0.63.2)
88 | - React-RCTLinking (= 0.63.2)
89 | - React-RCTNetwork (= 0.63.2)
90 | - React-RCTSettings (= 0.63.2)
91 | - React-RCTText (= 0.63.2)
92 | - React-RCTVibration (= 0.63.2)
93 | - React-callinvoker (0.63.2)
94 | - React-Core (0.63.2):
95 | - Folly (= 2020.01.13.00)
96 | - glog
97 | - React-Core/Default (= 0.63.2)
98 | - React-cxxreact (= 0.63.2)
99 | - React-jsi (= 0.63.2)
100 | - React-jsiexecutor (= 0.63.2)
101 | - Yoga
102 | - React-Core/CoreModulesHeaders (0.63.2):
103 | - Folly (= 2020.01.13.00)
104 | - glog
105 | - React-Core/Default
106 | - React-cxxreact (= 0.63.2)
107 | - React-jsi (= 0.63.2)
108 | - React-jsiexecutor (= 0.63.2)
109 | - Yoga
110 | - React-Core/Default (0.63.2):
111 | - Folly (= 2020.01.13.00)
112 | - glog
113 | - React-cxxreact (= 0.63.2)
114 | - React-jsi (= 0.63.2)
115 | - React-jsiexecutor (= 0.63.2)
116 | - Yoga
117 | - React-Core/DevSupport (0.63.2):
118 | - Folly (= 2020.01.13.00)
119 | - glog
120 | - React-Core/Default (= 0.63.2)
121 | - React-Core/RCTWebSocket (= 0.63.2)
122 | - React-cxxreact (= 0.63.2)
123 | - React-jsi (= 0.63.2)
124 | - React-jsiexecutor (= 0.63.2)
125 | - React-jsinspector (= 0.63.2)
126 | - Yoga
127 | - React-Core/RCTActionSheetHeaders (0.63.2):
128 | - Folly (= 2020.01.13.00)
129 | - glog
130 | - React-Core/Default
131 | - React-cxxreact (= 0.63.2)
132 | - React-jsi (= 0.63.2)
133 | - React-jsiexecutor (= 0.63.2)
134 | - Yoga
135 | - React-Core/RCTAnimationHeaders (0.63.2):
136 | - Folly (= 2020.01.13.00)
137 | - glog
138 | - React-Core/Default
139 | - React-cxxreact (= 0.63.2)
140 | - React-jsi (= 0.63.2)
141 | - React-jsiexecutor (= 0.63.2)
142 | - Yoga
143 | - React-Core/RCTBlobHeaders (0.63.2):
144 | - Folly (= 2020.01.13.00)
145 | - glog
146 | - React-Core/Default
147 | - React-cxxreact (= 0.63.2)
148 | - React-jsi (= 0.63.2)
149 | - React-jsiexecutor (= 0.63.2)
150 | - Yoga
151 | - React-Core/RCTImageHeaders (0.63.2):
152 | - Folly (= 2020.01.13.00)
153 | - glog
154 | - React-Core/Default
155 | - React-cxxreact (= 0.63.2)
156 | - React-jsi (= 0.63.2)
157 | - React-jsiexecutor (= 0.63.2)
158 | - Yoga
159 | - React-Core/RCTLinkingHeaders (0.63.2):
160 | - Folly (= 2020.01.13.00)
161 | - glog
162 | - React-Core/Default
163 | - React-cxxreact (= 0.63.2)
164 | - React-jsi (= 0.63.2)
165 | - React-jsiexecutor (= 0.63.2)
166 | - Yoga
167 | - React-Core/RCTNetworkHeaders (0.63.2):
168 | - Folly (= 2020.01.13.00)
169 | - glog
170 | - React-Core/Default
171 | - React-cxxreact (= 0.63.2)
172 | - React-jsi (= 0.63.2)
173 | - React-jsiexecutor (= 0.63.2)
174 | - Yoga
175 | - React-Core/RCTSettingsHeaders (0.63.2):
176 | - Folly (= 2020.01.13.00)
177 | - glog
178 | - React-Core/Default
179 | - React-cxxreact (= 0.63.2)
180 | - React-jsi (= 0.63.2)
181 | - React-jsiexecutor (= 0.63.2)
182 | - Yoga
183 | - React-Core/RCTTextHeaders (0.63.2):
184 | - Folly (= 2020.01.13.00)
185 | - glog
186 | - React-Core/Default
187 | - React-cxxreact (= 0.63.2)
188 | - React-jsi (= 0.63.2)
189 | - React-jsiexecutor (= 0.63.2)
190 | - Yoga
191 | - React-Core/RCTVibrationHeaders (0.63.2):
192 | - Folly (= 2020.01.13.00)
193 | - glog
194 | - React-Core/Default
195 | - React-cxxreact (= 0.63.2)
196 | - React-jsi (= 0.63.2)
197 | - React-jsiexecutor (= 0.63.2)
198 | - Yoga
199 | - React-Core/RCTWebSocket (0.63.2):
200 | - Folly (= 2020.01.13.00)
201 | - glog
202 | - React-Core/Default (= 0.63.2)
203 | - React-cxxreact (= 0.63.2)
204 | - React-jsi (= 0.63.2)
205 | - React-jsiexecutor (= 0.63.2)
206 | - Yoga
207 | - React-CoreModules (0.63.2):
208 | - FBReactNativeSpec (= 0.63.2)
209 | - Folly (= 2020.01.13.00)
210 | - RCTTypeSafety (= 0.63.2)
211 | - React-Core/CoreModulesHeaders (= 0.63.2)
212 | - React-jsi (= 0.63.2)
213 | - React-RCTImage (= 0.63.2)
214 | - ReactCommon/turbomodule/core (= 0.63.2)
215 | - React-cxxreact (0.63.2):
216 | - boost-for-react-native (= 1.63.0)
217 | - DoubleConversion
218 | - Folly (= 2020.01.13.00)
219 | - glog
220 | - React-callinvoker (= 0.63.2)
221 | - React-jsinspector (= 0.63.2)
222 | - React-jsi (0.63.2):
223 | - boost-for-react-native (= 1.63.0)
224 | - DoubleConversion
225 | - Folly (= 2020.01.13.00)
226 | - glog
227 | - React-jsi/Default (= 0.63.2)
228 | - React-jsi/Default (0.63.2):
229 | - boost-for-react-native (= 1.63.0)
230 | - DoubleConversion
231 | - Folly (= 2020.01.13.00)
232 | - glog
233 | - React-jsiexecutor (0.63.2):
234 | - DoubleConversion
235 | - Folly (= 2020.01.13.00)
236 | - glog
237 | - React-cxxreact (= 0.63.2)
238 | - React-jsi (= 0.63.2)
239 | - React-jsinspector (0.63.2)
240 | - react-native-netinfo (5.9.6):
241 | - React
242 | - react-native-safe-area-context (3.1.1):
243 | - React
244 | - React-RCTActionSheet (0.63.2):
245 | - React-Core/RCTActionSheetHeaders (= 0.63.2)
246 | - React-RCTAnimation (0.63.2):
247 | - FBReactNativeSpec (= 0.63.2)
248 | - Folly (= 2020.01.13.00)
249 | - RCTTypeSafety (= 0.63.2)
250 | - React-Core/RCTAnimationHeaders (= 0.63.2)
251 | - React-jsi (= 0.63.2)
252 | - ReactCommon/turbomodule/core (= 0.63.2)
253 | - React-RCTBlob (0.63.2):
254 | - FBReactNativeSpec (= 0.63.2)
255 | - Folly (= 2020.01.13.00)
256 | - React-Core/RCTBlobHeaders (= 0.63.2)
257 | - React-Core/RCTWebSocket (= 0.63.2)
258 | - React-jsi (= 0.63.2)
259 | - React-RCTNetwork (= 0.63.2)
260 | - ReactCommon/turbomodule/core (= 0.63.2)
261 | - React-RCTImage (0.63.2):
262 | - FBReactNativeSpec (= 0.63.2)
263 | - Folly (= 2020.01.13.00)
264 | - RCTTypeSafety (= 0.63.2)
265 | - React-Core/RCTImageHeaders (= 0.63.2)
266 | - React-jsi (= 0.63.2)
267 | - React-RCTNetwork (= 0.63.2)
268 | - ReactCommon/turbomodule/core (= 0.63.2)
269 | - React-RCTLinking (0.63.2):
270 | - FBReactNativeSpec (= 0.63.2)
271 | - React-Core/RCTLinkingHeaders (= 0.63.2)
272 | - React-jsi (= 0.63.2)
273 | - ReactCommon/turbomodule/core (= 0.63.2)
274 | - React-RCTNetwork (0.63.2):
275 | - FBReactNativeSpec (= 0.63.2)
276 | - Folly (= 2020.01.13.00)
277 | - RCTTypeSafety (= 0.63.2)
278 | - React-Core/RCTNetworkHeaders (= 0.63.2)
279 | - React-jsi (= 0.63.2)
280 | - ReactCommon/turbomodule/core (= 0.63.2)
281 | - React-RCTSettings (0.63.2):
282 | - FBReactNativeSpec (= 0.63.2)
283 | - Folly (= 2020.01.13.00)
284 | - RCTTypeSafety (= 0.63.2)
285 | - React-Core/RCTSettingsHeaders (= 0.63.2)
286 | - React-jsi (= 0.63.2)
287 | - ReactCommon/turbomodule/core (= 0.63.2)
288 | - React-RCTText (0.63.2):
289 | - React-Core/RCTTextHeaders (= 0.63.2)
290 | - React-RCTVibration (0.63.2):
291 | - FBReactNativeSpec (= 0.63.2)
292 | - Folly (= 2020.01.13.00)
293 | - React-Core/RCTVibrationHeaders (= 0.63.2)
294 | - React-jsi (= 0.63.2)
295 | - ReactCommon/turbomodule/core (= 0.63.2)
296 | - ReactCommon/turbomodule/core (0.63.2):
297 | - DoubleConversion
298 | - Folly (= 2020.01.13.00)
299 | - glog
300 | - React-callinvoker (= 0.63.2)
301 | - React-Core (= 0.63.2)
302 | - React-cxxreact (= 0.63.2)
303 | - React-jsi (= 0.63.2)
304 | - RNAWSCognito (4.3.4):
305 | - JKBigInteger2 (= 0.0.5)
306 | - React
307 | - RNCMaskedView (0.1.10):
308 | - React
309 | - RNGestureHandler (1.7.0):
310 | - React
311 | - RNReanimated (1.10.1):
312 | - React
313 | - RNScreens (2.9.0):
314 | - React
315 | - RNVectorIcons (7.0.0):
316 | - React
317 | - Yoga (1.14.0)
318 | - YogaKit (1.18.1):
319 | - Yoga (~> 1.14)
320 |
321 | DEPENDENCIES:
322 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
323 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
324 | - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
325 | - Flipper (~> 0.41.1)
326 | - Flipper-DoubleConversion (= 1.1.7)
327 | - Flipper-Folly (~> 2.2)
328 | - Flipper-Glog (= 0.3.6)
329 | - Flipper-PeerTalk (~> 0.0.4)
330 | - Flipper-RSocket (~> 1.1)
331 | - FlipperKit (~> 0.41.1)
332 | - FlipperKit/Core (~> 0.41.1)
333 | - FlipperKit/CppBridge (~> 0.41.1)
334 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.41.1)
335 | - FlipperKit/FBDefines (~> 0.41.1)
336 | - FlipperKit/FKPortForwarding (~> 0.41.1)
337 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.41.1)
338 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.41.1)
339 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.41.1)
340 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.41.1)
341 | - FlipperKit/FlipperKitReactPlugin (~> 0.41.1)
342 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.41.1)
343 | - FlipperKit/SKIOSNetworkPlugin (~> 0.41.1)
344 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
345 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
346 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
347 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
348 | - React (from `../node_modules/react-native/`)
349 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
350 | - React-Core (from `../node_modules/react-native/`)
351 | - React-Core/DevSupport (from `../node_modules/react-native/`)
352 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
353 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
354 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
355 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
356 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
357 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
358 | - "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
359 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
360 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
361 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
362 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
363 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
364 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
365 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
366 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
367 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
368 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
369 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
370 | - RNAWSCognito (from `../node_modules/amazon-cognito-identity-js`)
371 | - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
372 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
373 | - RNReanimated (from `../node_modules/react-native-reanimated`)
374 | - RNScreens (from `../node_modules/react-native-screens`)
375 | - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
376 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
377 |
378 | SPEC REPOS:
379 | trunk:
380 | - boost-for-react-native
381 | - CocoaAsyncSocket
382 | - CocoaLibEvent
383 | - Flipper
384 | - Flipper-DoubleConversion
385 | - Flipper-Folly
386 | - Flipper-Glog
387 | - Flipper-PeerTalk
388 | - Flipper-RSocket
389 | - FlipperKit
390 | - JKBigInteger2
391 | - OpenSSL-Universal
392 | - YogaKit
393 |
394 | EXTERNAL SOURCES:
395 | DoubleConversion:
396 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
397 | FBLazyVector:
398 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
399 | FBReactNativeSpec:
400 | :path: "../node_modules/react-native/Libraries/FBReactNativeSpec"
401 | Folly:
402 | :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
403 | glog:
404 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
405 | RCTRequired:
406 | :path: "../node_modules/react-native/Libraries/RCTRequired"
407 | RCTTypeSafety:
408 | :path: "../node_modules/react-native/Libraries/TypeSafety"
409 | React:
410 | :path: "../node_modules/react-native/"
411 | React-callinvoker:
412 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
413 | React-Core:
414 | :path: "../node_modules/react-native/"
415 | React-CoreModules:
416 | :path: "../node_modules/react-native/React/CoreModules"
417 | React-cxxreact:
418 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
419 | React-jsi:
420 | :path: "../node_modules/react-native/ReactCommon/jsi"
421 | React-jsiexecutor:
422 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
423 | React-jsinspector:
424 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
425 | react-native-netinfo:
426 | :path: "../node_modules/@react-native-community/netinfo"
427 | react-native-safe-area-context:
428 | :path: "../node_modules/react-native-safe-area-context"
429 | React-RCTActionSheet:
430 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
431 | React-RCTAnimation:
432 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
433 | React-RCTBlob:
434 | :path: "../node_modules/react-native/Libraries/Blob"
435 | React-RCTImage:
436 | :path: "../node_modules/react-native/Libraries/Image"
437 | React-RCTLinking:
438 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
439 | React-RCTNetwork:
440 | :path: "../node_modules/react-native/Libraries/Network"
441 | React-RCTSettings:
442 | :path: "../node_modules/react-native/Libraries/Settings"
443 | React-RCTText:
444 | :path: "../node_modules/react-native/Libraries/Text"
445 | React-RCTVibration:
446 | :path: "../node_modules/react-native/Libraries/Vibration"
447 | ReactCommon:
448 | :path: "../node_modules/react-native/ReactCommon"
449 | RNAWSCognito:
450 | :path: "../node_modules/amazon-cognito-identity-js"
451 | RNCMaskedView:
452 | :path: "../node_modules/@react-native-community/masked-view"
453 | RNGestureHandler:
454 | :path: "../node_modules/react-native-gesture-handler"
455 | RNReanimated:
456 | :path: "../node_modules/react-native-reanimated"
457 | RNScreens:
458 | :path: "../node_modules/react-native-screens"
459 | RNVectorIcons:
460 | :path: "../node_modules/react-native-vector-icons"
461 | Yoga:
462 | :path: "../node_modules/react-native/ReactCommon/yoga"
463 |
464 | SPEC CHECKSUMS:
465 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
466 | CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845
467 | CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f
468 | DoubleConversion: cde416483dac037923206447da6e1454df403714
469 | FBLazyVector: 3ef4a7f62e7db01092f9d517d2ebc0d0677c4a37
470 | FBReactNativeSpec: dc7fa9088f0f2a998503a352b0554d69a4391c5a
471 | Flipper: 33585e2d9810fe5528346be33bcf71b37bb7ae13
472 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
473 | Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3
474 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
475 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
476 | Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7
477 | FlipperKit: bc68102cd4952a258a23c9c1b316c7bec1fecf83
478 | Folly: b73c3869541e86821df3c387eb0af5f65addfab4
479 | glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
480 | JKBigInteger2: e91672035c42328c48b7dd015b66812ddf40ca9b
481 | OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355
482 | RCTRequired: f13f25e7b12f925f1f6a6a8c69d929a03c0129fe
483 | RCTTypeSafety: 44982c5c8e43ff4141eb519a8ddc88059acd1f3a
484 | React: e1c65dd41cb9db13b99f24608e47dd595f28ca9a
485 | React-callinvoker: 552a6a6bc8b3bb794cf108ad59e5a9e2e3b4fc98
486 | React-Core: 9d341e725dc9cd2f49e4c49ad1fc4e8776aa2639
487 | React-CoreModules: 5335e168165da7f7083ce7147768d36d3e292318
488 | React-cxxreact: d3261ec5f7d11743fbf21e263a34ea51d1f13ebc
489 | React-jsi: 54245e1d5f4b690dec614a73a3795964eeef13a8
490 | React-jsiexecutor: 8ca588cc921e70590820ce72b8789b02c67cce38
491 | React-jsinspector: b14e62ebe7a66e9231e9581279909f2fc3db6606
492 | react-native-netinfo: 38a1e0b3e89b48e4b5833ed475d8df5f049f6f90
493 | react-native-safe-area-context: 344b969c45af3d8464d36e8dea264942992ef033
494 | React-RCTActionSheet: 910163b6b09685a35c4ebbc52b66d1bfbbe39fc5
495 | React-RCTAnimation: 9a883bbe1e9d2e158d4fb53765ed64c8dc2200c6
496 | React-RCTBlob: 39cf0ece1927996c4466510e25d2105f67010e13
497 | React-RCTImage: de355d738727b09ad3692f2a979affbd54b5f378
498 | React-RCTLinking: 8122f221d395a63364b2c0078ce284214bd04575
499 | React-RCTNetwork: 8f96c7b49ea6a0f28f98258f347b6ad218bc0830
500 | React-RCTSettings: 8a49622aff9c1925f5455fa340b6fe4853d64ab6
501 | React-RCTText: 1b6773e776e4b33f90468c20fe3b16ca3e224bb8
502 | React-RCTVibration: 4d2e726957f4087449739b595f107c0d4b6c2d2d
503 | ReactCommon: a0a1edbebcac5e91338371b72ffc66aa822792ce
504 | RNAWSCognito: c84eb1020796f0f9ae1112671b0cc775a72080dc
505 | RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f
506 | RNGestureHandler: b6b359bb800ae399a9c8b27032bdbf7c18f08a08
507 | RNReanimated: c2bb7438b57a3d987bb2e4e6e4bca94787e30b02
508 | RNScreens: c526239bbe0e957b988dacc8d75ac94ec9cb19da
509 | RNVectorIcons: da6fe858f5a65d7bbc3379540a889b0b12aa5976
510 | Yoga: 7740b94929bbacbddda59bf115b5317e9a161598
511 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
512 |
513 | PODFILE CHECKSUM: 051ed6c4bafc86cae5f2d84ada6ad3c3b9621e5f
514 |
515 | COCOAPODS: 1.9.1
516 |
--------------------------------------------------------------------------------
/ios/InstagramClone.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* InstagramCloneTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* InstagramCloneTests.m */; };
11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
12 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14 | 24BB1710CD74EB0B2AA72682 /* libPods-InstagramClone-InstagramCloneTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 46D8B78EC7121081E8301954 /* libPods-InstagramClone-InstagramCloneTests.a */; };
15 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
16 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
17 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
18 | 2DCD954D1E0B4F2C00145EB5 /* InstagramCloneTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* InstagramCloneTests.m */; };
19 | 7812F0754C70C39A683CEC35 /* libPods-InstagramClone-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 66AC383E120FB07D433FA1B8 /* libPods-InstagramClone-tvOS.a */; };
20 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
21 | AFF569CBCF6C1B85FB6DB66A /* libPods-InstagramClone-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 996569DF69D4A2685432B733 /* libPods-InstagramClone-tvOSTests.a */; };
22 | CC81201C3144E1FE91EE7006 /* libPods-InstagramClone.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 750D52EFF5DB5EDBB99E8720 /* libPods-InstagramClone.a */; };
23 | /* End PBXBuildFile section */
24 |
25 | /* Begin PBXContainerItemProxy section */
26 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
27 | isa = PBXContainerItemProxy;
28 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
29 | proxyType = 1;
30 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
31 | remoteInfo = InstagramClone;
32 | };
33 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
34 | isa = PBXContainerItemProxy;
35 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
36 | proxyType = 1;
37 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
38 | remoteInfo = "InstagramClone-tvOS";
39 | };
40 | /* End PBXContainerItemProxy section */
41 |
42 | /* Begin PBXFileReference section */
43 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
44 | 00E356EE1AD99517003FC87E /* InstagramCloneTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = InstagramCloneTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
45 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
46 | 00E356F21AD99517003FC87E /* InstagramCloneTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstagramCloneTests.m; sourceTree = ""; };
47 | 13B07F961A680F5B00A75B9A /* InstagramClone.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = InstagramClone.app; sourceTree = BUILT_PRODUCTS_DIR; };
48 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = InstagramClone/AppDelegate.h; sourceTree = ""; };
49 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = InstagramClone/AppDelegate.m; sourceTree = ""; };
50 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = InstagramClone/Images.xcassets; sourceTree = ""; };
51 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = InstagramClone/Info.plist; sourceTree = ""; };
52 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = InstagramClone/main.m; sourceTree = ""; };
53 | 2A2ABBC44AA7A71B13C42161 /* Pods-InstagramClone-InstagramCloneTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InstagramClone-InstagramCloneTests.debug.xcconfig"; path = "Target Support Files/Pods-InstagramClone-InstagramCloneTests/Pods-InstagramClone-InstagramCloneTests.debug.xcconfig"; sourceTree = ""; };
54 | 2D02E47B1E0B4A5D006451C7 /* InstagramClone-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "InstagramClone-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
55 | 2D02E4901E0B4A5D006451C7 /* InstagramClone-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "InstagramClone-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
56 | 377E42526BB3CC61B8F849E2 /* Pods-InstagramClone-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InstagramClone-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-InstagramClone-tvOS/Pods-InstagramClone-tvOS.debug.xcconfig"; sourceTree = ""; };
57 | 3C36B89AC2690BFC54928288 /* Pods-InstagramClone-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InstagramClone-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-InstagramClone-tvOSTests/Pods-InstagramClone-tvOSTests.release.xcconfig"; sourceTree = ""; };
58 | 46D8B78EC7121081E8301954 /* libPods-InstagramClone-InstagramCloneTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-InstagramClone-InstagramCloneTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
59 | 66AC383E120FB07D433FA1B8 /* libPods-InstagramClone-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-InstagramClone-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
60 | 750D52EFF5DB5EDBB99E8720 /* libPods-InstagramClone.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-InstagramClone.a"; sourceTree = BUILT_PRODUCTS_DIR; };
61 | 7BA8D0399034CA238599D8C6 /* Pods-InstagramClone-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InstagramClone-tvOS.release.xcconfig"; path = "Target Support Files/Pods-InstagramClone-tvOS/Pods-InstagramClone-tvOS.release.xcconfig"; sourceTree = ""; };
62 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = InstagramClone/LaunchScreen.storyboard; sourceTree = ""; };
63 | 996569DF69D4A2685432B733 /* libPods-InstagramClone-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-InstagramClone-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
64 | C8665F612F0428D3684DA9F3 /* Pods-InstagramClone-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InstagramClone-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-InstagramClone-tvOSTests/Pods-InstagramClone-tvOSTests.debug.xcconfig"; sourceTree = ""; };
65 | E4DA48255CE51D59F6F45790 /* Pods-InstagramClone.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InstagramClone.release.xcconfig"; path = "Target Support Files/Pods-InstagramClone/Pods-InstagramClone.release.xcconfig"; sourceTree = ""; };
66 | E905BE8DF381DC7A7D50ECD4 /* Pods-InstagramClone.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InstagramClone.debug.xcconfig"; path = "Target Support Files/Pods-InstagramClone/Pods-InstagramClone.debug.xcconfig"; sourceTree = ""; };
67 | EA8D91EEBD6030CE66C899E7 /* Pods-InstagramClone-InstagramCloneTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InstagramClone-InstagramCloneTests.release.xcconfig"; path = "Target Support Files/Pods-InstagramClone-InstagramCloneTests/Pods-InstagramClone-InstagramCloneTests.release.xcconfig"; sourceTree = ""; };
68 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
69 | 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; };
70 | /* End PBXFileReference section */
71 |
72 | /* Begin PBXFrameworksBuildPhase section */
73 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
74 | isa = PBXFrameworksBuildPhase;
75 | buildActionMask = 2147483647;
76 | files = (
77 | 24BB1710CD74EB0B2AA72682 /* libPods-InstagramClone-InstagramCloneTests.a in Frameworks */,
78 | );
79 | runOnlyForDeploymentPostprocessing = 0;
80 | };
81 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
82 | isa = PBXFrameworksBuildPhase;
83 | buildActionMask = 2147483647;
84 | files = (
85 | CC81201C3144E1FE91EE7006 /* libPods-InstagramClone.a in Frameworks */,
86 | );
87 | runOnlyForDeploymentPostprocessing = 0;
88 | };
89 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
90 | isa = PBXFrameworksBuildPhase;
91 | buildActionMask = 2147483647;
92 | files = (
93 | 7812F0754C70C39A683CEC35 /* libPods-InstagramClone-tvOS.a in Frameworks */,
94 | );
95 | runOnlyForDeploymentPostprocessing = 0;
96 | };
97 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
98 | isa = PBXFrameworksBuildPhase;
99 | buildActionMask = 2147483647;
100 | files = (
101 | AFF569CBCF6C1B85FB6DB66A /* libPods-InstagramClone-tvOSTests.a in Frameworks */,
102 | );
103 | runOnlyForDeploymentPostprocessing = 0;
104 | };
105 | /* End PBXFrameworksBuildPhase section */
106 |
107 | /* Begin PBXGroup section */
108 | 00E356EF1AD99517003FC87E /* InstagramCloneTests */ = {
109 | isa = PBXGroup;
110 | children = (
111 | 00E356F21AD99517003FC87E /* InstagramCloneTests.m */,
112 | 00E356F01AD99517003FC87E /* Supporting Files */,
113 | );
114 | path = InstagramCloneTests;
115 | sourceTree = "";
116 | };
117 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
118 | isa = PBXGroup;
119 | children = (
120 | 00E356F11AD99517003FC87E /* Info.plist */,
121 | );
122 | name = "Supporting Files";
123 | sourceTree = "";
124 | };
125 | 13B07FAE1A68108700A75B9A /* InstagramClone */ = {
126 | isa = PBXGroup;
127 | children = (
128 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
129 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
130 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
131 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
132 | 13B07FB61A68108700A75B9A /* Info.plist */,
133 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
134 | 13B07FB71A68108700A75B9A /* main.m */,
135 | );
136 | name = InstagramClone;
137 | sourceTree = "";
138 | };
139 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
140 | isa = PBXGroup;
141 | children = (
142 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
143 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
144 | 750D52EFF5DB5EDBB99E8720 /* libPods-InstagramClone.a */,
145 | 46D8B78EC7121081E8301954 /* libPods-InstagramClone-InstagramCloneTests.a */,
146 | 66AC383E120FB07D433FA1B8 /* libPods-InstagramClone-tvOS.a */,
147 | 996569DF69D4A2685432B733 /* libPods-InstagramClone-tvOSTests.a */,
148 | );
149 | name = Frameworks;
150 | sourceTree = "";
151 | };
152 | 3D44256807E081F73DA40115 /* Pods */ = {
153 | isa = PBXGroup;
154 | children = (
155 | E905BE8DF381DC7A7D50ECD4 /* Pods-InstagramClone.debug.xcconfig */,
156 | E4DA48255CE51D59F6F45790 /* Pods-InstagramClone.release.xcconfig */,
157 | 2A2ABBC44AA7A71B13C42161 /* Pods-InstagramClone-InstagramCloneTests.debug.xcconfig */,
158 | EA8D91EEBD6030CE66C899E7 /* Pods-InstagramClone-InstagramCloneTests.release.xcconfig */,
159 | 377E42526BB3CC61B8F849E2 /* Pods-InstagramClone-tvOS.debug.xcconfig */,
160 | 7BA8D0399034CA238599D8C6 /* Pods-InstagramClone-tvOS.release.xcconfig */,
161 | C8665F612F0428D3684DA9F3 /* Pods-InstagramClone-tvOSTests.debug.xcconfig */,
162 | 3C36B89AC2690BFC54928288 /* Pods-InstagramClone-tvOSTests.release.xcconfig */,
163 | );
164 | name = Pods;
165 | path = Pods;
166 | sourceTree = "";
167 | };
168 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
169 | isa = PBXGroup;
170 | children = (
171 | );
172 | name = Libraries;
173 | sourceTree = "";
174 | };
175 | 83CBB9F61A601CBA00E9B192 = {
176 | isa = PBXGroup;
177 | children = (
178 | 13B07FAE1A68108700A75B9A /* InstagramClone */,
179 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
180 | 00E356EF1AD99517003FC87E /* InstagramCloneTests */,
181 | 83CBBA001A601CBA00E9B192 /* Products */,
182 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
183 | 3D44256807E081F73DA40115 /* Pods */,
184 | );
185 | indentWidth = 2;
186 | sourceTree = "";
187 | tabWidth = 2;
188 | usesTabs = 0;
189 | };
190 | 83CBBA001A601CBA00E9B192 /* Products */ = {
191 | isa = PBXGroup;
192 | children = (
193 | 13B07F961A680F5B00A75B9A /* InstagramClone.app */,
194 | 00E356EE1AD99517003FC87E /* InstagramCloneTests.xctest */,
195 | 2D02E47B1E0B4A5D006451C7 /* InstagramClone-tvOS.app */,
196 | 2D02E4901E0B4A5D006451C7 /* InstagramClone-tvOSTests.xctest */,
197 | );
198 | name = Products;
199 | sourceTree = "";
200 | };
201 | /* End PBXGroup section */
202 |
203 | /* Begin PBXNativeTarget section */
204 | 00E356ED1AD99517003FC87E /* InstagramCloneTests */ = {
205 | isa = PBXNativeTarget;
206 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "InstagramCloneTests" */;
207 | buildPhases = (
208 | 34DE26B95A919E713704C1B8 /* [CP] Check Pods Manifest.lock */,
209 | 00E356EA1AD99517003FC87E /* Sources */,
210 | 00E356EB1AD99517003FC87E /* Frameworks */,
211 | 00E356EC1AD99517003FC87E /* Resources */,
212 | D95EFBB6BE25AF7A02D74030 /* [CP] Copy Pods Resources */,
213 | );
214 | buildRules = (
215 | );
216 | dependencies = (
217 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
218 | );
219 | name = InstagramCloneTests;
220 | productName = InstagramCloneTests;
221 | productReference = 00E356EE1AD99517003FC87E /* InstagramCloneTests.xctest */;
222 | productType = "com.apple.product-type.bundle.unit-test";
223 | };
224 | 13B07F861A680F5B00A75B9A /* InstagramClone */ = {
225 | isa = PBXNativeTarget;
226 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "InstagramClone" */;
227 | buildPhases = (
228 | 879FE8025A9F18EB916AC2B1 /* [CP] Check Pods Manifest.lock */,
229 | FD10A7F022414F080027D42C /* Start Packager */,
230 | 13B07F871A680F5B00A75B9A /* Sources */,
231 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
232 | 13B07F8E1A680F5B00A75B9A /* Resources */,
233 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
234 | 69BD5925538B90B748D81814 /* [CP] Copy Pods Resources */,
235 | );
236 | buildRules = (
237 | );
238 | dependencies = (
239 | );
240 | name = InstagramClone;
241 | productName = InstagramClone;
242 | productReference = 13B07F961A680F5B00A75B9A /* InstagramClone.app */;
243 | productType = "com.apple.product-type.application";
244 | };
245 | 2D02E47A1E0B4A5D006451C7 /* InstagramClone-tvOS */ = {
246 | isa = PBXNativeTarget;
247 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "InstagramClone-tvOS" */;
248 | buildPhases = (
249 | 9A7867B7A35B3D26B390973B /* [CP] Check Pods Manifest.lock */,
250 | FD10A7F122414F3F0027D42C /* Start Packager */,
251 | 2D02E4771E0B4A5D006451C7 /* Sources */,
252 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
253 | 2D02E4791E0B4A5D006451C7 /* Resources */,
254 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
255 | );
256 | buildRules = (
257 | );
258 | dependencies = (
259 | );
260 | name = "InstagramClone-tvOS";
261 | productName = "InstagramClone-tvOS";
262 | productReference = 2D02E47B1E0B4A5D006451C7 /* InstagramClone-tvOS.app */;
263 | productType = "com.apple.product-type.application";
264 | };
265 | 2D02E48F1E0B4A5D006451C7 /* InstagramClone-tvOSTests */ = {
266 | isa = PBXNativeTarget;
267 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "InstagramClone-tvOSTests" */;
268 | buildPhases = (
269 | 95224E1B3D04AFF35FED08E9 /* [CP] Check Pods Manifest.lock */,
270 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
271 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
272 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
273 | );
274 | buildRules = (
275 | );
276 | dependencies = (
277 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
278 | );
279 | name = "InstagramClone-tvOSTests";
280 | productName = "InstagramClone-tvOSTests";
281 | productReference = 2D02E4901E0B4A5D006451C7 /* InstagramClone-tvOSTests.xctest */;
282 | productType = "com.apple.product-type.bundle.unit-test";
283 | };
284 | /* End PBXNativeTarget section */
285 |
286 | /* Begin PBXProject section */
287 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
288 | isa = PBXProject;
289 | attributes = {
290 | LastUpgradeCheck = 1130;
291 | TargetAttributes = {
292 | 00E356ED1AD99517003FC87E = {
293 | CreatedOnToolsVersion = 6.2;
294 | TestTargetID = 13B07F861A680F5B00A75B9A;
295 | };
296 | 13B07F861A680F5B00A75B9A = {
297 | LastSwiftMigration = 1120;
298 | };
299 | 2D02E47A1E0B4A5D006451C7 = {
300 | CreatedOnToolsVersion = 8.2.1;
301 | ProvisioningStyle = Automatic;
302 | };
303 | 2D02E48F1E0B4A5D006451C7 = {
304 | CreatedOnToolsVersion = 8.2.1;
305 | ProvisioningStyle = Automatic;
306 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
307 | };
308 | };
309 | };
310 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "InstagramClone" */;
311 | compatibilityVersion = "Xcode 3.2";
312 | developmentRegion = en;
313 | hasScannedForEncodings = 0;
314 | knownRegions = (
315 | en,
316 | Base,
317 | );
318 | mainGroup = 83CBB9F61A601CBA00E9B192;
319 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
320 | projectDirPath = "";
321 | projectRoot = "";
322 | targets = (
323 | 13B07F861A680F5B00A75B9A /* InstagramClone */,
324 | 00E356ED1AD99517003FC87E /* InstagramCloneTests */,
325 | 2D02E47A1E0B4A5D006451C7 /* InstagramClone-tvOS */,
326 | 2D02E48F1E0B4A5D006451C7 /* InstagramClone-tvOSTests */,
327 | );
328 | };
329 | /* End PBXProject section */
330 |
331 | /* Begin PBXResourcesBuildPhase section */
332 | 00E356EC1AD99517003FC87E /* Resources */ = {
333 | isa = PBXResourcesBuildPhase;
334 | buildActionMask = 2147483647;
335 | files = (
336 | );
337 | runOnlyForDeploymentPostprocessing = 0;
338 | };
339 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
340 | isa = PBXResourcesBuildPhase;
341 | buildActionMask = 2147483647;
342 | files = (
343 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
344 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
345 | );
346 | runOnlyForDeploymentPostprocessing = 0;
347 | };
348 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
349 | isa = PBXResourcesBuildPhase;
350 | buildActionMask = 2147483647;
351 | files = (
352 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
353 | );
354 | runOnlyForDeploymentPostprocessing = 0;
355 | };
356 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
357 | isa = PBXResourcesBuildPhase;
358 | buildActionMask = 2147483647;
359 | files = (
360 | );
361 | runOnlyForDeploymentPostprocessing = 0;
362 | };
363 | /* End PBXResourcesBuildPhase section */
364 |
365 | /* Begin PBXShellScriptBuildPhase section */
366 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
367 | isa = PBXShellScriptBuildPhase;
368 | buildActionMask = 2147483647;
369 | files = (
370 | );
371 | inputPaths = (
372 | );
373 | name = "Bundle React Native code and images";
374 | outputPaths = (
375 | );
376 | runOnlyForDeploymentPostprocessing = 0;
377 | shellPath = /bin/sh;
378 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
379 | };
380 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
381 | isa = PBXShellScriptBuildPhase;
382 | buildActionMask = 2147483647;
383 | files = (
384 | );
385 | inputPaths = (
386 | );
387 | name = "Bundle React Native Code And Images";
388 | outputPaths = (
389 | );
390 | runOnlyForDeploymentPostprocessing = 0;
391 | shellPath = /bin/sh;
392 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
393 | };
394 | 34DE26B95A919E713704C1B8 /* [CP] Check Pods Manifest.lock */ = {
395 | isa = PBXShellScriptBuildPhase;
396 | buildActionMask = 2147483647;
397 | files = (
398 | );
399 | inputFileListPaths = (
400 | );
401 | inputPaths = (
402 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
403 | "${PODS_ROOT}/Manifest.lock",
404 | );
405 | name = "[CP] Check Pods Manifest.lock";
406 | outputFileListPaths = (
407 | );
408 | outputPaths = (
409 | "$(DERIVED_FILE_DIR)/Pods-InstagramClone-InstagramCloneTests-checkManifestLockResult.txt",
410 | );
411 | runOnlyForDeploymentPostprocessing = 0;
412 | shellPath = /bin/sh;
413 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
414 | showEnvVarsInLog = 0;
415 | };
416 | 69BD5925538B90B748D81814 /* [CP] Copy Pods Resources */ = {
417 | isa = PBXShellScriptBuildPhase;
418 | buildActionMask = 2147483647;
419 | files = (
420 | );
421 | inputPaths = (
422 | "${PODS_ROOT}/Target Support Files/Pods-InstagramClone/Pods-InstagramClone-resources.sh",
423 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
424 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
425 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
426 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
427 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
428 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
429 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
430 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
431 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
432 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
433 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
434 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
435 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
436 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
437 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
438 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
439 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
440 | );
441 | name = "[CP] Copy Pods Resources";
442 | outputPaths = (
443 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
444 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
445 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
446 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
447 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
448 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
449 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
450 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
451 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
452 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
453 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
454 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
455 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
456 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
457 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
458 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
459 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
460 | );
461 | runOnlyForDeploymentPostprocessing = 0;
462 | shellPath = /bin/sh;
463 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-InstagramClone/Pods-InstagramClone-resources.sh\"\n";
464 | showEnvVarsInLog = 0;
465 | };
466 | 879FE8025A9F18EB916AC2B1 /* [CP] Check Pods Manifest.lock */ = {
467 | isa = PBXShellScriptBuildPhase;
468 | buildActionMask = 2147483647;
469 | files = (
470 | );
471 | inputFileListPaths = (
472 | );
473 | inputPaths = (
474 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
475 | "${PODS_ROOT}/Manifest.lock",
476 | );
477 | name = "[CP] Check Pods Manifest.lock";
478 | outputFileListPaths = (
479 | );
480 | outputPaths = (
481 | "$(DERIVED_FILE_DIR)/Pods-InstagramClone-checkManifestLockResult.txt",
482 | );
483 | runOnlyForDeploymentPostprocessing = 0;
484 | shellPath = /bin/sh;
485 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
486 | showEnvVarsInLog = 0;
487 | };
488 | 95224E1B3D04AFF35FED08E9 /* [CP] Check Pods Manifest.lock */ = {
489 | isa = PBXShellScriptBuildPhase;
490 | buildActionMask = 2147483647;
491 | files = (
492 | );
493 | inputFileListPaths = (
494 | );
495 | inputPaths = (
496 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
497 | "${PODS_ROOT}/Manifest.lock",
498 | );
499 | name = "[CP] Check Pods Manifest.lock";
500 | outputFileListPaths = (
501 | );
502 | outputPaths = (
503 | "$(DERIVED_FILE_DIR)/Pods-InstagramClone-tvOSTests-checkManifestLockResult.txt",
504 | );
505 | runOnlyForDeploymentPostprocessing = 0;
506 | shellPath = /bin/sh;
507 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
508 | showEnvVarsInLog = 0;
509 | };
510 | 9A7867B7A35B3D26B390973B /* [CP] Check Pods Manifest.lock */ = {
511 | isa = PBXShellScriptBuildPhase;
512 | buildActionMask = 2147483647;
513 | files = (
514 | );
515 | inputFileListPaths = (
516 | );
517 | inputPaths = (
518 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
519 | "${PODS_ROOT}/Manifest.lock",
520 | );
521 | name = "[CP] Check Pods Manifest.lock";
522 | outputFileListPaths = (
523 | );
524 | outputPaths = (
525 | "$(DERIVED_FILE_DIR)/Pods-InstagramClone-tvOS-checkManifestLockResult.txt",
526 | );
527 | runOnlyForDeploymentPostprocessing = 0;
528 | shellPath = /bin/sh;
529 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
530 | showEnvVarsInLog = 0;
531 | };
532 | D95EFBB6BE25AF7A02D74030 /* [CP] Copy Pods Resources */ = {
533 | isa = PBXShellScriptBuildPhase;
534 | buildActionMask = 2147483647;
535 | files = (
536 | );
537 | inputPaths = (
538 | "${PODS_ROOT}/Target Support Files/Pods-InstagramClone-InstagramCloneTests/Pods-InstagramClone-InstagramCloneTests-resources.sh",
539 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
540 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
541 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
542 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
543 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
544 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
545 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
546 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
547 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
548 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
549 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
550 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
551 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
552 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
553 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
554 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
555 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
556 | );
557 | name = "[CP] Copy Pods Resources";
558 | outputPaths = (
559 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
560 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
561 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
562 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
563 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
564 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
565 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
566 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
567 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
568 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
569 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
570 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
571 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
572 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
573 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
574 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
575 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
576 | );
577 | runOnlyForDeploymentPostprocessing = 0;
578 | shellPath = /bin/sh;
579 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-InstagramClone-InstagramCloneTests/Pods-InstagramClone-InstagramCloneTests-resources.sh\"\n";
580 | showEnvVarsInLog = 0;
581 | };
582 | FD10A7F022414F080027D42C /* Start Packager */ = {
583 | isa = PBXShellScriptBuildPhase;
584 | buildActionMask = 2147483647;
585 | files = (
586 | );
587 | inputFileListPaths = (
588 | );
589 | inputPaths = (
590 | );
591 | name = "Start Packager";
592 | outputFileListPaths = (
593 | );
594 | outputPaths = (
595 | );
596 | runOnlyForDeploymentPostprocessing = 0;
597 | shellPath = /bin/sh;
598 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
599 | showEnvVarsInLog = 0;
600 | };
601 | FD10A7F122414F3F0027D42C /* Start Packager */ = {
602 | isa = PBXShellScriptBuildPhase;
603 | buildActionMask = 2147483647;
604 | files = (
605 | );
606 | inputFileListPaths = (
607 | );
608 | inputPaths = (
609 | );
610 | name = "Start Packager";
611 | outputFileListPaths = (
612 | );
613 | outputPaths = (
614 | );
615 | runOnlyForDeploymentPostprocessing = 0;
616 | shellPath = /bin/sh;
617 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
618 | showEnvVarsInLog = 0;
619 | };
620 | /* End PBXShellScriptBuildPhase section */
621 |
622 | /* Begin PBXSourcesBuildPhase section */
623 | 00E356EA1AD99517003FC87E /* Sources */ = {
624 | isa = PBXSourcesBuildPhase;
625 | buildActionMask = 2147483647;
626 | files = (
627 | 00E356F31AD99517003FC87E /* InstagramCloneTests.m in Sources */,
628 | );
629 | runOnlyForDeploymentPostprocessing = 0;
630 | };
631 | 13B07F871A680F5B00A75B9A /* Sources */ = {
632 | isa = PBXSourcesBuildPhase;
633 | buildActionMask = 2147483647;
634 | files = (
635 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
636 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
637 | );
638 | runOnlyForDeploymentPostprocessing = 0;
639 | };
640 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
641 | isa = PBXSourcesBuildPhase;
642 | buildActionMask = 2147483647;
643 | files = (
644 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
645 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
646 | );
647 | runOnlyForDeploymentPostprocessing = 0;
648 | };
649 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
650 | isa = PBXSourcesBuildPhase;
651 | buildActionMask = 2147483647;
652 | files = (
653 | 2DCD954D1E0B4F2C00145EB5 /* InstagramCloneTests.m in Sources */,
654 | );
655 | runOnlyForDeploymentPostprocessing = 0;
656 | };
657 | /* End PBXSourcesBuildPhase section */
658 |
659 | /* Begin PBXTargetDependency section */
660 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
661 | isa = PBXTargetDependency;
662 | target = 13B07F861A680F5B00A75B9A /* InstagramClone */;
663 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
664 | };
665 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
666 | isa = PBXTargetDependency;
667 | target = 2D02E47A1E0B4A5D006451C7 /* InstagramClone-tvOS */;
668 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
669 | };
670 | /* End PBXTargetDependency section */
671 |
672 | /* Begin XCBuildConfiguration section */
673 | 00E356F61AD99517003FC87E /* Debug */ = {
674 | isa = XCBuildConfiguration;
675 | baseConfigurationReference = 2A2ABBC44AA7A71B13C42161 /* Pods-InstagramClone-InstagramCloneTests.debug.xcconfig */;
676 | buildSettings = {
677 | BUNDLE_LOADER = "$(TEST_HOST)";
678 | GCC_PREPROCESSOR_DEFINITIONS = (
679 | "DEBUG=1",
680 | "$(inherited)",
681 | );
682 | INFOPLIST_FILE = InstagramCloneTests/Info.plist;
683 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
684 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
685 | OTHER_LDFLAGS = (
686 | "-ObjC",
687 | "-lc++",
688 | "$(inherited)",
689 | );
690 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
691 | PRODUCT_NAME = "$(TARGET_NAME)";
692 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/InstagramClone.app/InstagramClone";
693 | };
694 | name = Debug;
695 | };
696 | 00E356F71AD99517003FC87E /* Release */ = {
697 | isa = XCBuildConfiguration;
698 | baseConfigurationReference = EA8D91EEBD6030CE66C899E7 /* Pods-InstagramClone-InstagramCloneTests.release.xcconfig */;
699 | buildSettings = {
700 | BUNDLE_LOADER = "$(TEST_HOST)";
701 | COPY_PHASE_STRIP = NO;
702 | INFOPLIST_FILE = InstagramCloneTests/Info.plist;
703 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
704 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
705 | OTHER_LDFLAGS = (
706 | "-ObjC",
707 | "-lc++",
708 | "$(inherited)",
709 | );
710 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
711 | PRODUCT_NAME = "$(TARGET_NAME)";
712 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/InstagramClone.app/InstagramClone";
713 | };
714 | name = Release;
715 | };
716 | 13B07F941A680F5B00A75B9A /* Debug */ = {
717 | isa = XCBuildConfiguration;
718 | baseConfigurationReference = E905BE8DF381DC7A7D50ECD4 /* Pods-InstagramClone.debug.xcconfig */;
719 | buildSettings = {
720 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
721 | CLANG_ENABLE_MODULES = YES;
722 | CURRENT_PROJECT_VERSION = 1;
723 | ENABLE_BITCODE = NO;
724 | INFOPLIST_FILE = InstagramClone/Info.plist;
725 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
726 | OTHER_LDFLAGS = (
727 | "$(inherited)",
728 | "-ObjC",
729 | "-lc++",
730 | );
731 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
732 | PRODUCT_NAME = InstagramClone;
733 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
734 | SWIFT_VERSION = 5.0;
735 | VERSIONING_SYSTEM = "apple-generic";
736 | };
737 | name = Debug;
738 | };
739 | 13B07F951A680F5B00A75B9A /* Release */ = {
740 | isa = XCBuildConfiguration;
741 | baseConfigurationReference = E4DA48255CE51D59F6F45790 /* Pods-InstagramClone.release.xcconfig */;
742 | buildSettings = {
743 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
744 | CLANG_ENABLE_MODULES = YES;
745 | CURRENT_PROJECT_VERSION = 1;
746 | INFOPLIST_FILE = InstagramClone/Info.plist;
747 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
748 | OTHER_LDFLAGS = (
749 | "$(inherited)",
750 | "-ObjC",
751 | "-lc++",
752 | );
753 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
754 | PRODUCT_NAME = InstagramClone;
755 | SWIFT_VERSION = 5.0;
756 | VERSIONING_SYSTEM = "apple-generic";
757 | };
758 | name = Release;
759 | };
760 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
761 | isa = XCBuildConfiguration;
762 | baseConfigurationReference = 377E42526BB3CC61B8F849E2 /* Pods-InstagramClone-tvOS.debug.xcconfig */;
763 | buildSettings = {
764 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
765 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
766 | CLANG_ANALYZER_NONNULL = YES;
767 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
768 | CLANG_WARN_INFINITE_RECURSION = YES;
769 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
770 | DEBUG_INFORMATION_FORMAT = dwarf;
771 | ENABLE_TESTABILITY = YES;
772 | GCC_NO_COMMON_BLOCKS = YES;
773 | INFOPLIST_FILE = "InstagramClone-tvOS/Info.plist";
774 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
775 | OTHER_LDFLAGS = (
776 | "$(inherited)",
777 | "-ObjC",
778 | "-lc++",
779 | );
780 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.InstagramClone-tvOS";
781 | PRODUCT_NAME = "$(TARGET_NAME)";
782 | SDKROOT = appletvos;
783 | TARGETED_DEVICE_FAMILY = 3;
784 | TVOS_DEPLOYMENT_TARGET = 10.0;
785 | };
786 | name = Debug;
787 | };
788 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
789 | isa = XCBuildConfiguration;
790 | baseConfigurationReference = 7BA8D0399034CA238599D8C6 /* Pods-InstagramClone-tvOS.release.xcconfig */;
791 | buildSettings = {
792 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
793 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
794 | CLANG_ANALYZER_NONNULL = YES;
795 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
796 | CLANG_WARN_INFINITE_RECURSION = YES;
797 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
798 | COPY_PHASE_STRIP = NO;
799 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
800 | GCC_NO_COMMON_BLOCKS = YES;
801 | INFOPLIST_FILE = "InstagramClone-tvOS/Info.plist";
802 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
803 | OTHER_LDFLAGS = (
804 | "$(inherited)",
805 | "-ObjC",
806 | "-lc++",
807 | );
808 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.InstagramClone-tvOS";
809 | PRODUCT_NAME = "$(TARGET_NAME)";
810 | SDKROOT = appletvos;
811 | TARGETED_DEVICE_FAMILY = 3;
812 | TVOS_DEPLOYMENT_TARGET = 10.0;
813 | };
814 | name = Release;
815 | };
816 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
817 | isa = XCBuildConfiguration;
818 | baseConfigurationReference = C8665F612F0428D3684DA9F3 /* Pods-InstagramClone-tvOSTests.debug.xcconfig */;
819 | buildSettings = {
820 | BUNDLE_LOADER = "$(TEST_HOST)";
821 | CLANG_ANALYZER_NONNULL = YES;
822 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
823 | CLANG_WARN_INFINITE_RECURSION = YES;
824 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
825 | DEBUG_INFORMATION_FORMAT = dwarf;
826 | ENABLE_TESTABILITY = YES;
827 | GCC_NO_COMMON_BLOCKS = YES;
828 | INFOPLIST_FILE = "InstagramClone-tvOSTests/Info.plist";
829 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
830 | OTHER_LDFLAGS = (
831 | "$(inherited)",
832 | "-ObjC",
833 | "-lc++",
834 | );
835 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.InstagramClone-tvOSTests";
836 | PRODUCT_NAME = "$(TARGET_NAME)";
837 | SDKROOT = appletvos;
838 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/InstagramClone-tvOS.app/InstagramClone-tvOS";
839 | TVOS_DEPLOYMENT_TARGET = 10.1;
840 | };
841 | name = Debug;
842 | };
843 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
844 | isa = XCBuildConfiguration;
845 | baseConfigurationReference = 3C36B89AC2690BFC54928288 /* Pods-InstagramClone-tvOSTests.release.xcconfig */;
846 | buildSettings = {
847 | BUNDLE_LOADER = "$(TEST_HOST)";
848 | CLANG_ANALYZER_NONNULL = YES;
849 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
850 | CLANG_WARN_INFINITE_RECURSION = YES;
851 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
852 | COPY_PHASE_STRIP = NO;
853 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
854 | GCC_NO_COMMON_BLOCKS = YES;
855 | INFOPLIST_FILE = "InstagramClone-tvOSTests/Info.plist";
856 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
857 | OTHER_LDFLAGS = (
858 | "$(inherited)",
859 | "-ObjC",
860 | "-lc++",
861 | );
862 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.InstagramClone-tvOSTests";
863 | PRODUCT_NAME = "$(TARGET_NAME)";
864 | SDKROOT = appletvos;
865 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/InstagramClone-tvOS.app/InstagramClone-tvOS";
866 | TVOS_DEPLOYMENT_TARGET = 10.1;
867 | };
868 | name = Release;
869 | };
870 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
871 | isa = XCBuildConfiguration;
872 | buildSettings = {
873 | ALWAYS_SEARCH_USER_PATHS = NO;
874 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
875 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
876 | CLANG_CXX_LIBRARY = "libc++";
877 | CLANG_ENABLE_MODULES = YES;
878 | CLANG_ENABLE_OBJC_ARC = YES;
879 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
880 | CLANG_WARN_BOOL_CONVERSION = YES;
881 | CLANG_WARN_COMMA = YES;
882 | CLANG_WARN_CONSTANT_CONVERSION = YES;
883 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
884 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
885 | CLANG_WARN_EMPTY_BODY = YES;
886 | CLANG_WARN_ENUM_CONVERSION = YES;
887 | CLANG_WARN_INFINITE_RECURSION = YES;
888 | CLANG_WARN_INT_CONVERSION = YES;
889 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
890 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
891 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
892 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
893 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
894 | CLANG_WARN_STRICT_PROTOTYPES = YES;
895 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
896 | CLANG_WARN_UNREACHABLE_CODE = YES;
897 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
898 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
899 | COPY_PHASE_STRIP = NO;
900 | ENABLE_STRICT_OBJC_MSGSEND = YES;
901 | ENABLE_TESTABILITY = YES;
902 | GCC_C_LANGUAGE_STANDARD = gnu99;
903 | GCC_DYNAMIC_NO_PIC = NO;
904 | GCC_NO_COMMON_BLOCKS = YES;
905 | GCC_OPTIMIZATION_LEVEL = 0;
906 | GCC_PREPROCESSOR_DEFINITIONS = (
907 | "DEBUG=1",
908 | "$(inherited)",
909 | );
910 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
911 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
912 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
913 | GCC_WARN_UNDECLARED_SELECTOR = YES;
914 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
915 | GCC_WARN_UNUSED_FUNCTION = YES;
916 | GCC_WARN_UNUSED_VARIABLE = YES;
917 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
918 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
919 | LIBRARY_SEARCH_PATHS = (
920 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
921 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
922 | "\"$(inherited)\"",
923 | );
924 | MTL_ENABLE_DEBUG_INFO = YES;
925 | ONLY_ACTIVE_ARCH = YES;
926 | SDKROOT = iphoneos;
927 | };
928 | name = Debug;
929 | };
930 | 83CBBA211A601CBA00E9B192 /* Release */ = {
931 | isa = XCBuildConfiguration;
932 | buildSettings = {
933 | ALWAYS_SEARCH_USER_PATHS = NO;
934 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
935 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
936 | CLANG_CXX_LIBRARY = "libc++";
937 | CLANG_ENABLE_MODULES = YES;
938 | CLANG_ENABLE_OBJC_ARC = YES;
939 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
940 | CLANG_WARN_BOOL_CONVERSION = YES;
941 | CLANG_WARN_COMMA = YES;
942 | CLANG_WARN_CONSTANT_CONVERSION = YES;
943 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
944 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
945 | CLANG_WARN_EMPTY_BODY = YES;
946 | CLANG_WARN_ENUM_CONVERSION = YES;
947 | CLANG_WARN_INFINITE_RECURSION = YES;
948 | CLANG_WARN_INT_CONVERSION = YES;
949 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
950 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
951 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
952 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
953 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
954 | CLANG_WARN_STRICT_PROTOTYPES = YES;
955 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
956 | CLANG_WARN_UNREACHABLE_CODE = YES;
957 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
958 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
959 | COPY_PHASE_STRIP = YES;
960 | ENABLE_NS_ASSERTIONS = NO;
961 | ENABLE_STRICT_OBJC_MSGSEND = YES;
962 | GCC_C_LANGUAGE_STANDARD = gnu99;
963 | GCC_NO_COMMON_BLOCKS = YES;
964 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
965 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
966 | GCC_WARN_UNDECLARED_SELECTOR = YES;
967 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
968 | GCC_WARN_UNUSED_FUNCTION = YES;
969 | GCC_WARN_UNUSED_VARIABLE = YES;
970 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
971 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
972 | LIBRARY_SEARCH_PATHS = (
973 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
974 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
975 | "\"$(inherited)\"",
976 | );
977 | MTL_ENABLE_DEBUG_INFO = NO;
978 | SDKROOT = iphoneos;
979 | VALIDATE_PRODUCT = YES;
980 | };
981 | name = Release;
982 | };
983 | /* End XCBuildConfiguration section */
984 |
985 | /* Begin XCConfigurationList section */
986 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "InstagramCloneTests" */ = {
987 | isa = XCConfigurationList;
988 | buildConfigurations = (
989 | 00E356F61AD99517003FC87E /* Debug */,
990 | 00E356F71AD99517003FC87E /* Release */,
991 | );
992 | defaultConfigurationIsVisible = 0;
993 | defaultConfigurationName = Release;
994 | };
995 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "InstagramClone" */ = {
996 | isa = XCConfigurationList;
997 | buildConfigurations = (
998 | 13B07F941A680F5B00A75B9A /* Debug */,
999 | 13B07F951A680F5B00A75B9A /* Release */,
1000 | );
1001 | defaultConfigurationIsVisible = 0;
1002 | defaultConfigurationName = Release;
1003 | };
1004 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "InstagramClone-tvOS" */ = {
1005 | isa = XCConfigurationList;
1006 | buildConfigurations = (
1007 | 2D02E4971E0B4A5E006451C7 /* Debug */,
1008 | 2D02E4981E0B4A5E006451C7 /* Release */,
1009 | );
1010 | defaultConfigurationIsVisible = 0;
1011 | defaultConfigurationName = Release;
1012 | };
1013 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "InstagramClone-tvOSTests" */ = {
1014 | isa = XCConfigurationList;
1015 | buildConfigurations = (
1016 | 2D02E4991E0B4A5E006451C7 /* Debug */,
1017 | 2D02E49A1E0B4A5E006451C7 /* Release */,
1018 | );
1019 | defaultConfigurationIsVisible = 0;
1020 | defaultConfigurationName = Release;
1021 | };
1022 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "InstagramClone" */ = {
1023 | isa = XCConfigurationList;
1024 | buildConfigurations = (
1025 | 83CBBA201A601CBA00E9B192 /* Debug */,
1026 | 83CBBA211A601CBA00E9B192 /* Release */,
1027 | );
1028 | defaultConfigurationIsVisible = 0;
1029 | defaultConfigurationName = Release;
1030 | };
1031 | /* End XCConfigurationList section */
1032 | };
1033 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1034 | }
1035 |
--------------------------------------------------------------------------------