Skip to content

Commit 668f1f9

Browse files
React Native version upgrade
1 parent 4b85fd4 commit 668f1f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+3283
-3350
lines changed

.env.dev

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
API_URL="dev"

.env.prod

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
API_URL="prod"

App.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React from 'react';
22
import {SafeAreaProvider} from 'react-native-safe-area-context';
33
import AppNavigator from './src/navigation';
4-
import {getStore, getPersistor} from '@redux/index';
4+
import {getStore, getPersistor} from './src/redux';
55
import {Provider} from 'react-redux';
66
import {PersistGate} from 'redux-persist/integration/react';
7-
import {StyledText} from '@components/atoms';
7+
import {StyledText} from './src/components/atoms';
88

99
const App = () => {
1010
const store = getStore();

Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby '2.7.5'
4+
ruby File.read(File.join(__dir__, '.ruby-version')).strip
55

6-
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
6+
gem 'cocoapods', '~> 1.11', '>= 1.11.3'

android/app/_BUCK

-55
This file was deleted.

0 commit comments

Comments
 (0)