-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[VoximplantDemo]: update react native version and project dependencies
- Loading branch information
1 parent
4edd26e
commit f6d09bf
Showing
70 changed files
with
9,965 additions
and
34,141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
module.exports = { | ||
root: true, | ||
extends: '@react-native-community', | ||
rules: { | ||
'prettier/prettier': 0, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
module.exports = { | ||
arrowParens: 'avoid', | ||
bracketSameLine: true, | ||
bracketSpacing: false, | ||
jsxBracketSameLine: true, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
arrowParens: 'avoid', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
/* | ||
* Copyright (c) 2011-2021, Zingaya, Inc. All rights reserved. | ||
* Copyright (c) 2011-2022, Zingaya, Inc. All rights reserved. | ||
*/ | ||
|
||
import 'react-native-gesture-handler'; | ||
import React from 'react'; | ||
|
||
import {NavigationContainer} from '@react-navigation/native'; | ||
import { navigationRef } from './src/routes/routes'; | ||
import {createStackNavigator} from '@react-navigation/stack'; | ||
import {createNativeStackNavigator} from '@react-navigation/native-stack'; | ||
import LoginScreen from './src/screens/LoginScreen'; | ||
import MainScreen from './src/screens/MainScreen'; | ||
import CallScreen from './src/screens/CallScreen'; | ||
import IncomingCallScreen from './src/screens/IncomingCallScreen'; | ||
|
||
const Stack = createStackNavigator(); | ||
import {navigationRef} from './src/routes/routes'; | ||
|
||
export default class App extends React.Component { | ||
render() { | ||
return <NavigationContainer ref={navigationRef}> | ||
<Stack.Navigator> | ||
<Stack.Screen name="Login" component={LoginScreen} /> | ||
<Stack.Screen | ||
name="Main" | ||
component={MainScreen} | ||
options={{headerLeft: null}} | ||
/> | ||
<Stack.Screen | ||
name="Call" | ||
component={CallScreen} | ||
options={{headerLeft: null}} | ||
/> | ||
<Stack.Screen | ||
name="IncomingCall" | ||
component={IncomingCallScreen} | ||
options={{headerLeft: null}} | ||
/> | ||
</Stack.Navigator> | ||
</NavigationContainer>; | ||
} | ||
} | ||
const Stack = createNativeStackNavigator(); | ||
|
||
function App() { | ||
return ( | ||
<NavigationContainer ref={navigationRef}> | ||
<Stack.Navigator> | ||
<Stack.Screen name="Login" component={LoginScreen} /> | ||
<Stack.Screen | ||
name="Main" | ||
component={MainScreen} | ||
options={{headerLeft: null}} | ||
/> | ||
<Stack.Screen | ||
name="Call" | ||
component={CallScreen} | ||
options={{headerLeft: null}} | ||
/> | ||
<Stack.Screen | ||
name="IncomingCall" | ||
component={IncomingCallScreen} | ||
options={{headerLeft: null}} | ||
/> | ||
</Stack.Navigator> | ||
</NavigationContainer> | ||
); | ||
} | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
source 'https://rubygems.org' | ||
|
||
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version | ||
ruby '2.7.5' | ||
|
||
gem 'cocoapods', '~> 1.11', '>= 1.11.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
BUNDLE_PATH: "vendor/bundle" | ||
BUNDLE_FORCE_RUBY_PLATFORM: 1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.7.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.