initial development build for google sign in
This commit is contained in:
23
.easignore
Normal file
23
.easignore
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# Ignore node_modules (handled by EAS)
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Ignore build output
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
|
||||||
|
# Ignore local environment files
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
|
||||||
|
# Ignore logs
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Ignore macOS specific files
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Ignore Amplify generated files (if you want to manage them manually)
|
||||||
|
|
||||||
|
|
||||||
|
# Ignore other temporary files
|
||||||
|
tmp/
|
||||||
|
temp/
|
||||||
42
App.tsx
42
App.tsx
@@ -1,12 +1,31 @@
|
|||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
|
import { NavigationContainer } from '@react-navigation/native';
|
||||||
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
|
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
|
||||||
import { QRCode, QRCodeContext } from './types';
|
import QRScannerScreen from './screens/QRScannerScreen';
|
||||||
import AppNavigator from './navigation/AppNavigator';
|
import HistoryScreen from './screens/HistoryScreen';
|
||||||
|
import SettingsScreen from './screens/SettingsScreen';
|
||||||
|
import { QRCodeContext } from './types';
|
||||||
|
import CustomTabBar from './components/CustomTabBar';
|
||||||
|
|
||||||
|
import { Button } from 'react-native';
|
||||||
|
import { Authenticator, useAuthenticator, withAuthenticator } from '@aws-amplify/ui-react-native';
|
||||||
|
import { Amplify } from 'aws-amplify';
|
||||||
|
import config from './src/aws-exports';
|
||||||
|
import { enableScreens } from 'react-native-screens';
|
||||||
|
|
||||||
|
enableScreens();
|
||||||
|
|
||||||
|
Amplify.configure(config);
|
||||||
|
|
||||||
|
function SignOutButton() {
|
||||||
|
const { signOut } = useAuthenticator();
|
||||||
|
return <Button title="Sign Out" onPress={signOut} />;
|
||||||
|
}
|
||||||
|
|
||||||
const Tab = createBottomTabNavigator();
|
const Tab = createBottomTabNavigator();
|
||||||
|
|
||||||
const App: React.FC = () => {
|
const App: React.FC = () => {
|
||||||
const [qrCodes, setQrCodes] = useState<QRCode[]>([]);
|
const [qrCodes, setQrCodes] = useState<{ data: string, bookmarked: boolean, scanResult: { secureConnection: boolean, virusTotalCheck: boolean, redirects: number } }[]>([]);
|
||||||
const [scannedData, setScannedData] = useState<string>('');
|
const [scannedData, setScannedData] = useState<string>('');
|
||||||
|
|
||||||
const clearScanData = () => {
|
const clearScanData = () => {
|
||||||
@@ -15,9 +34,22 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<QRCodeContext.Provider value={{ qrCodes, setQrCodes }}>
|
<QRCodeContext.Provider value={{ qrCodes, setQrCodes }}>
|
||||||
<AppNavigator clearScanData={clearScanData}/>
|
<NavigationContainer>
|
||||||
|
<Tab.Navigator
|
||||||
|
initialRouteName="QRScanner"
|
||||||
|
tabBar={props => <CustomTabBar {...props} clearScanData={clearScanData} />}
|
||||||
|
>
|
||||||
|
<Tab.Screen name="History" component={HistoryScreen} />
|
||||||
|
<Tab.Screen name="QRScanner">
|
||||||
|
{(props) => <QRScannerScreen clearScanData={function (): void {
|
||||||
|
throw new Error('Function not implemented.');
|
||||||
|
} } {...props} />}
|
||||||
|
</Tab.Screen>
|
||||||
|
<Tab.Screen name="Settings" component={SettingsScreen} />
|
||||||
|
</Tab.Navigator>
|
||||||
|
</NavigationContainer>
|
||||||
</QRCodeContext.Provider>
|
</QRCodeContext.Provider>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default App;
|
export default withAuthenticator(App);
|
||||||
10
app.json
10
app.json
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"expo": {
|
"expo": {
|
||||||
"name": "SafeQR",
|
"name": "SafeQR",
|
||||||
"slug": "SafeQR",
|
"slug": "safeqr",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"orientation": "portrait",
|
"orientation": "portrait",
|
||||||
"icon": "./assets/icon.png",
|
"icon": "./assets/icon.png",
|
||||||
@@ -20,6 +20,12 @@
|
|||||||
},
|
},
|
||||||
"android": {
|
"android": {
|
||||||
"package": "com.piggyinu.safeqr"
|
"package": "com.piggyinu.safeqr"
|
||||||
}
|
},
|
||||||
|
"extra": {
|
||||||
|
"eas": {
|
||||||
|
"projectId": "88ad983d-5ca3-44e6-bc1b-8a9a941af992"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"owner": "piggyinu"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
eas.json
Normal file
18
eas.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"cli": {
|
||||||
|
"version": ">= 10.1.1"
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"development": {
|
||||||
|
"developmentClient": true,
|
||||||
|
"distribution": "internal"
|
||||||
|
},
|
||||||
|
"preview": {
|
||||||
|
"distribution": "internal"
|
||||||
|
},
|
||||||
|
"production": {}
|
||||||
|
},
|
||||||
|
"submit": {
|
||||||
|
"production": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
302
ios/Podfile.lock
302
ios/Podfile.lock
@@ -1,4 +1,8 @@
|
|||||||
PODS:
|
PODS:
|
||||||
|
- AmplifyRTNCore (1.1.1):
|
||||||
|
- React-Core
|
||||||
|
- AmplifyRTNWebBrowser (1.0.30):
|
||||||
|
- React-Core
|
||||||
- boost (1.83.0)
|
- boost (1.83.0)
|
||||||
- DoubleConversion (1.1.6)
|
- DoubleConversion (1.1.6)
|
||||||
- EXConstants (16.0.2):
|
- EXConstants (16.0.2):
|
||||||
@@ -6,8 +10,218 @@ PODS:
|
|||||||
- EXImageLoader (4.7.0):
|
- EXImageLoader (4.7.0):
|
||||||
- ExpoModulesCore
|
- ExpoModulesCore
|
||||||
- React-Core
|
- React-Core
|
||||||
|
- EXJSONUtils (0.13.1)
|
||||||
|
- EXManifests (0.14.3):
|
||||||
|
- ExpoModulesCore
|
||||||
- Expo (51.0.18):
|
- Expo (51.0.18):
|
||||||
- ExpoModulesCore
|
- ExpoModulesCore
|
||||||
|
- expo-dev-client (4.0.19):
|
||||||
|
- EXManifests
|
||||||
|
- expo-dev-launcher
|
||||||
|
- expo-dev-menu
|
||||||
|
- expo-dev-menu-interface
|
||||||
|
- EXUpdatesInterface
|
||||||
|
- expo-dev-launcher (4.0.21):
|
||||||
|
- DoubleConversion
|
||||||
|
- EXManifests
|
||||||
|
- expo-dev-launcher/Main (= 4.0.21)
|
||||||
|
- expo-dev-menu
|
||||||
|
- expo-dev-menu-interface
|
||||||
|
- ExpoModulesCore
|
||||||
|
- EXUpdatesInterface
|
||||||
|
- glog
|
||||||
|
- hermes-engine
|
||||||
|
- RCT-Folly (= 2024.01.01.00)
|
||||||
|
- RCTRequired
|
||||||
|
- RCTTypeSafety
|
||||||
|
- React-Codegen
|
||||||
|
- React-Core
|
||||||
|
- React-debug
|
||||||
|
- React-Fabric
|
||||||
|
- React-featureflags
|
||||||
|
- React-graphics
|
||||||
|
- React-ImageManager
|
||||||
|
- React-jsinspector
|
||||||
|
- React-NativeModulesApple
|
||||||
|
- React-RCTAppDelegate
|
||||||
|
- React-RCTFabric
|
||||||
|
- React-rendererdebug
|
||||||
|
- React-utils
|
||||||
|
- ReactCommon/turbomodule/bridging
|
||||||
|
- ReactCommon/turbomodule/core
|
||||||
|
- Yoga
|
||||||
|
- expo-dev-launcher/Main (4.0.21):
|
||||||
|
- DoubleConversion
|
||||||
|
- EXManifests
|
||||||
|
- expo-dev-launcher/Unsafe
|
||||||
|
- expo-dev-menu
|
||||||
|
- expo-dev-menu-interface
|
||||||
|
- ExpoModulesCore
|
||||||
|
- EXUpdatesInterface
|
||||||
|
- glog
|
||||||
|
- hermes-engine
|
||||||
|
- RCT-Folly (= 2024.01.01.00)
|
||||||
|
- RCTRequired
|
||||||
|
- RCTTypeSafety
|
||||||
|
- React-Codegen
|
||||||
|
- React-Core
|
||||||
|
- React-debug
|
||||||
|
- React-Fabric
|
||||||
|
- React-featureflags
|
||||||
|
- React-graphics
|
||||||
|
- React-ImageManager
|
||||||
|
- React-jsinspector
|
||||||
|
- React-NativeModulesApple
|
||||||
|
- React-RCTAppDelegate
|
||||||
|
- React-RCTFabric
|
||||||
|
- React-rendererdebug
|
||||||
|
- React-utils
|
||||||
|
- ReactCommon/turbomodule/bridging
|
||||||
|
- ReactCommon/turbomodule/core
|
||||||
|
- Yoga
|
||||||
|
- expo-dev-launcher/Unsafe (4.0.21):
|
||||||
|
- DoubleConversion
|
||||||
|
- EXManifests
|
||||||
|
- expo-dev-menu
|
||||||
|
- expo-dev-menu-interface
|
||||||
|
- ExpoModulesCore
|
||||||
|
- EXUpdatesInterface
|
||||||
|
- glog
|
||||||
|
- hermes-engine
|
||||||
|
- RCT-Folly (= 2024.01.01.00)
|
||||||
|
- RCTRequired
|
||||||
|
- RCTTypeSafety
|
||||||
|
- React-Codegen
|
||||||
|
- React-Core
|
||||||
|
- React-debug
|
||||||
|
- React-Fabric
|
||||||
|
- React-featureflags
|
||||||
|
- React-graphics
|
||||||
|
- React-ImageManager
|
||||||
|
- React-jsinspector
|
||||||
|
- React-NativeModulesApple
|
||||||
|
- React-RCTAppDelegate
|
||||||
|
- React-RCTFabric
|
||||||
|
- React-rendererdebug
|
||||||
|
- React-utils
|
||||||
|
- ReactCommon/turbomodule/bridging
|
||||||
|
- ReactCommon/turbomodule/core
|
||||||
|
- Yoga
|
||||||
|
- expo-dev-menu (5.0.15):
|
||||||
|
- DoubleConversion
|
||||||
|
- expo-dev-menu/Main (= 5.0.15)
|
||||||
|
- expo-dev-menu/ReactNativeCompatibles (= 5.0.15)
|
||||||
|
- glog
|
||||||
|
- hermes-engine
|
||||||
|
- RCT-Folly (= 2024.01.01.00)
|
||||||
|
- RCTRequired
|
||||||
|
- RCTTypeSafety
|
||||||
|
- React-Codegen
|
||||||
|
- React-Core
|
||||||
|
- React-debug
|
||||||
|
- React-Fabric
|
||||||
|
- React-featureflags
|
||||||
|
- React-graphics
|
||||||
|
- React-ImageManager
|
||||||
|
- React-NativeModulesApple
|
||||||
|
- React-RCTFabric
|
||||||
|
- React-rendererdebug
|
||||||
|
- React-utils
|
||||||
|
- ReactCommon/turbomodule/bridging
|
||||||
|
- ReactCommon/turbomodule/core
|
||||||
|
- Yoga
|
||||||
|
- expo-dev-menu-interface (1.8.3)
|
||||||
|
- expo-dev-menu/Main (5.0.15):
|
||||||
|
- DoubleConversion
|
||||||
|
- EXManifests
|
||||||
|
- expo-dev-menu-interface
|
||||||
|
- expo-dev-menu/Vendored
|
||||||
|
- ExpoModulesCore
|
||||||
|
- glog
|
||||||
|
- hermes-engine
|
||||||
|
- RCT-Folly (= 2024.01.01.00)
|
||||||
|
- RCTRequired
|
||||||
|
- RCTTypeSafety
|
||||||
|
- React-Codegen
|
||||||
|
- React-Core
|
||||||
|
- React-debug
|
||||||
|
- React-Fabric
|
||||||
|
- React-featureflags
|
||||||
|
- React-graphics
|
||||||
|
- React-ImageManager
|
||||||
|
- React-jsinspector
|
||||||
|
- React-NativeModulesApple
|
||||||
|
- React-RCTFabric
|
||||||
|
- React-rendererdebug
|
||||||
|
- React-utils
|
||||||
|
- ReactCommon/turbomodule/bridging
|
||||||
|
- ReactCommon/turbomodule/core
|
||||||
|
- Yoga
|
||||||
|
- expo-dev-menu/ReactNativeCompatibles (5.0.15):
|
||||||
|
- DoubleConversion
|
||||||
|
- glog
|
||||||
|
- hermes-engine
|
||||||
|
- RCT-Folly (= 2024.01.01.00)
|
||||||
|
- RCTRequired
|
||||||
|
- RCTTypeSafety
|
||||||
|
- React-Codegen
|
||||||
|
- React-Core
|
||||||
|
- React-debug
|
||||||
|
- React-Fabric
|
||||||
|
- React-featureflags
|
||||||
|
- React-graphics
|
||||||
|
- React-ImageManager
|
||||||
|
- React-NativeModulesApple
|
||||||
|
- React-RCTFabric
|
||||||
|
- React-rendererdebug
|
||||||
|
- React-utils
|
||||||
|
- ReactCommon/turbomodule/bridging
|
||||||
|
- ReactCommon/turbomodule/core
|
||||||
|
- Yoga
|
||||||
|
- expo-dev-menu/SafeAreaView (5.0.15):
|
||||||
|
- DoubleConversion
|
||||||
|
- ExpoModulesCore
|
||||||
|
- glog
|
||||||
|
- hermes-engine
|
||||||
|
- RCT-Folly (= 2024.01.01.00)
|
||||||
|
- RCTRequired
|
||||||
|
- RCTTypeSafety
|
||||||
|
- React-Codegen
|
||||||
|
- React-Core
|
||||||
|
- React-debug
|
||||||
|
- React-Fabric
|
||||||
|
- React-featureflags
|
||||||
|
- React-graphics
|
||||||
|
- React-ImageManager
|
||||||
|
- React-NativeModulesApple
|
||||||
|
- React-RCTFabric
|
||||||
|
- React-rendererdebug
|
||||||
|
- React-utils
|
||||||
|
- ReactCommon/turbomodule/bridging
|
||||||
|
- ReactCommon/turbomodule/core
|
||||||
|
- Yoga
|
||||||
|
- expo-dev-menu/Vendored (5.0.15):
|
||||||
|
- DoubleConversion
|
||||||
|
- expo-dev-menu/SafeAreaView
|
||||||
|
- glog
|
||||||
|
- hermes-engine
|
||||||
|
- RCT-Folly (= 2024.01.01.00)
|
||||||
|
- RCTRequired
|
||||||
|
- RCTTypeSafety
|
||||||
|
- React-Codegen
|
||||||
|
- React-Core
|
||||||
|
- React-debug
|
||||||
|
- React-Fabric
|
||||||
|
- React-featureflags
|
||||||
|
- React-graphics
|
||||||
|
- React-ImageManager
|
||||||
|
- React-NativeModulesApple
|
||||||
|
- React-RCTFabric
|
||||||
|
- React-rendererdebug
|
||||||
|
- React-utils
|
||||||
|
- ReactCommon/turbomodule/bridging
|
||||||
|
- ReactCommon/turbomodule/core
|
||||||
|
- Yoga
|
||||||
- ExpoAsset (10.0.10):
|
- ExpoAsset (10.0.10):
|
||||||
- ExpoModulesCore
|
- ExpoModulesCore
|
||||||
- ExpoCamera (15.0.13):
|
- ExpoCamera (15.0.13):
|
||||||
@@ -49,6 +263,8 @@ PODS:
|
|||||||
- ReactCommon/turbomodule/bridging
|
- ReactCommon/turbomodule/bridging
|
||||||
- ReactCommon/turbomodule/core
|
- ReactCommon/turbomodule/core
|
||||||
- Yoga
|
- Yoga
|
||||||
|
- EXUpdatesInterface (0.16.2):
|
||||||
|
- ExpoModulesCore
|
||||||
- FBLazyVector (0.74.3)
|
- FBLazyVector (0.74.3)
|
||||||
- fmt (9.1.0)
|
- fmt (9.1.0)
|
||||||
- glog (0.3.5)
|
- glog (0.3.5)
|
||||||
@@ -995,6 +1211,10 @@ PODS:
|
|||||||
- React-Mapbuffer (0.74.3):
|
- React-Mapbuffer (0.74.3):
|
||||||
- glog
|
- glog
|
||||||
- React-debug
|
- React-debug
|
||||||
|
- react-native-get-random-values (1.11.0):
|
||||||
|
- React-Core
|
||||||
|
- react-native-netinfo (11.3.1):
|
||||||
|
- React-Core
|
||||||
- react-native-safe-area-context (4.10.1):
|
- react-native-safe-area-context (4.10.1):
|
||||||
- React-Core
|
- React-Core
|
||||||
- React-nativeconfig (0.74.3)
|
- React-nativeconfig (0.74.3)
|
||||||
@@ -1226,6 +1446,32 @@ PODS:
|
|||||||
- React-logger (= 0.74.3)
|
- React-logger (= 0.74.3)
|
||||||
- React-perflogger (= 0.74.3)
|
- React-perflogger (= 0.74.3)
|
||||||
- React-utils (= 0.74.3)
|
- React-utils (= 0.74.3)
|
||||||
|
- RNCAsyncStorage (1.23.1):
|
||||||
|
- React-Core
|
||||||
|
- RNScreens (3.31.1):
|
||||||
|
- DoubleConversion
|
||||||
|
- glog
|
||||||
|
- hermes-engine
|
||||||
|
- RCT-Folly (= 2024.01.01.00)
|
||||||
|
- RCTRequired
|
||||||
|
- RCTTypeSafety
|
||||||
|
- React-Codegen
|
||||||
|
- React-Core
|
||||||
|
- React-debug
|
||||||
|
- React-Fabric
|
||||||
|
- React-featureflags
|
||||||
|
- React-graphics
|
||||||
|
- React-ImageManager
|
||||||
|
- React-NativeModulesApple
|
||||||
|
- React-RCTFabric
|
||||||
|
- React-RCTImage
|
||||||
|
- React-rendererdebug
|
||||||
|
- React-utils
|
||||||
|
- ReactCommon/turbomodule/bridging
|
||||||
|
- ReactCommon/turbomodule/core
|
||||||
|
- Yoga
|
||||||
|
- RNSVG (15.2.0):
|
||||||
|
- React-Core
|
||||||
- SDWebImage/Core (5.19.4)
|
- SDWebImage/Core (5.19.4)
|
||||||
- SDWebImageWebPCoder (0.14.6):
|
- SDWebImageWebPCoder (0.14.6):
|
||||||
- libwebp (~> 1.0)
|
- libwebp (~> 1.0)
|
||||||
@@ -1239,11 +1485,19 @@ PODS:
|
|||||||
- ZXingObjC/Core
|
- ZXingObjC/Core
|
||||||
|
|
||||||
DEPENDENCIES:
|
DEPENDENCIES:
|
||||||
|
- "AmplifyRTNCore (from `../node_modules/@aws-amplify/react-native`)"
|
||||||
|
- "AmplifyRTNWebBrowser (from `../node_modules/@aws-amplify/rtn-web-browser`)"
|
||||||
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
||||||
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
||||||
- EXConstants (from `../node_modules/expo-constants/ios`)
|
- EXConstants (from `../node_modules/expo-constants/ios`)
|
||||||
- EXImageLoader (from `../node_modules/expo-image-loader/ios`)
|
- EXImageLoader (from `../node_modules/expo-image-loader/ios`)
|
||||||
|
- EXJSONUtils (from `../node_modules/expo-json-utils/ios`)
|
||||||
|
- EXManifests (from `../node_modules/expo-manifests/ios`)
|
||||||
- Expo (from `../node_modules/expo`)
|
- Expo (from `../node_modules/expo`)
|
||||||
|
- expo-dev-client (from `../node_modules/expo-dev-client/ios`)
|
||||||
|
- expo-dev-launcher (from `../node_modules/expo-dev-launcher`)
|
||||||
|
- expo-dev-menu (from `../node_modules/expo-dev-menu`)
|
||||||
|
- expo-dev-menu-interface (from `../node_modules/expo-dev-menu-interface/ios`)
|
||||||
- ExpoAsset (from `../node_modules/expo-asset/ios`)
|
- ExpoAsset (from `../node_modules/expo-asset/ios`)
|
||||||
- ExpoCamera (from `../node_modules/expo-camera/ios`)
|
- ExpoCamera (from `../node_modules/expo-camera/ios`)
|
||||||
- ExpoFileSystem (from `../node_modules/expo-file-system/ios`)
|
- ExpoFileSystem (from `../node_modules/expo-file-system/ios`)
|
||||||
@@ -1252,6 +1506,7 @@ DEPENDENCIES:
|
|||||||
- ExpoImagePicker (from `../node_modules/expo-image-picker/ios`)
|
- ExpoImagePicker (from `../node_modules/expo-image-picker/ios`)
|
||||||
- ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)
|
- ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)
|
||||||
- ExpoModulesCore (from `../node_modules/expo-modules-core`)
|
- ExpoModulesCore (from `../node_modules/expo-modules-core`)
|
||||||
|
- EXUpdatesInterface (from `../node_modules/expo-updates-interface/ios`)
|
||||||
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
||||||
- fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
|
- fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
|
||||||
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
||||||
@@ -1282,6 +1537,8 @@ DEPENDENCIES:
|
|||||||
- React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
|
- React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
|
||||||
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
||||||
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
|
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
|
||||||
|
- react-native-get-random-values (from `../node_modules/react-native-get-random-values`)
|
||||||
|
- "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
|
||||||
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
||||||
- React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
|
- React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
|
||||||
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
||||||
@@ -1306,6 +1563,9 @@ DEPENDENCIES:
|
|||||||
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
||||||
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
||||||
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
||||||
|
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
|
||||||
|
- RNScreens (from `../node_modules/react-native-screens`)
|
||||||
|
- RNSVG (from `../node_modules/react-native-svg`)
|
||||||
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
||||||
|
|
||||||
SPEC REPOS:
|
SPEC REPOS:
|
||||||
@@ -1317,6 +1577,10 @@ SPEC REPOS:
|
|||||||
- ZXingObjC
|
- ZXingObjC
|
||||||
|
|
||||||
EXTERNAL SOURCES:
|
EXTERNAL SOURCES:
|
||||||
|
AmplifyRTNCore:
|
||||||
|
:path: "../node_modules/@aws-amplify/react-native"
|
||||||
|
AmplifyRTNWebBrowser:
|
||||||
|
:path: "../node_modules/@aws-amplify/rtn-web-browser"
|
||||||
boost:
|
boost:
|
||||||
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
||||||
DoubleConversion:
|
DoubleConversion:
|
||||||
@@ -1325,8 +1589,20 @@ EXTERNAL SOURCES:
|
|||||||
:path: "../node_modules/expo-constants/ios"
|
:path: "../node_modules/expo-constants/ios"
|
||||||
EXImageLoader:
|
EXImageLoader:
|
||||||
:path: "../node_modules/expo-image-loader/ios"
|
:path: "../node_modules/expo-image-loader/ios"
|
||||||
|
EXJSONUtils:
|
||||||
|
:path: "../node_modules/expo-json-utils/ios"
|
||||||
|
EXManifests:
|
||||||
|
:path: "../node_modules/expo-manifests/ios"
|
||||||
Expo:
|
Expo:
|
||||||
:path: "../node_modules/expo"
|
:path: "../node_modules/expo"
|
||||||
|
expo-dev-client:
|
||||||
|
:path: "../node_modules/expo-dev-client/ios"
|
||||||
|
expo-dev-launcher:
|
||||||
|
:path: "../node_modules/expo-dev-launcher"
|
||||||
|
expo-dev-menu:
|
||||||
|
:path: "../node_modules/expo-dev-menu"
|
||||||
|
expo-dev-menu-interface:
|
||||||
|
:path: "../node_modules/expo-dev-menu-interface/ios"
|
||||||
ExpoAsset:
|
ExpoAsset:
|
||||||
:path: "../node_modules/expo-asset/ios"
|
:path: "../node_modules/expo-asset/ios"
|
||||||
ExpoCamera:
|
ExpoCamera:
|
||||||
@@ -1343,6 +1619,8 @@ EXTERNAL SOURCES:
|
|||||||
:path: "../node_modules/expo-keep-awake/ios"
|
:path: "../node_modules/expo-keep-awake/ios"
|
||||||
ExpoModulesCore:
|
ExpoModulesCore:
|
||||||
:path: "../node_modules/expo-modules-core"
|
:path: "../node_modules/expo-modules-core"
|
||||||
|
EXUpdatesInterface:
|
||||||
|
:path: "../node_modules/expo-updates-interface/ios"
|
||||||
FBLazyVector:
|
FBLazyVector:
|
||||||
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
||||||
fmt:
|
fmt:
|
||||||
@@ -1400,6 +1678,10 @@ EXTERNAL SOURCES:
|
|||||||
:path: "../node_modules/react-native/ReactCommon/logger"
|
:path: "../node_modules/react-native/ReactCommon/logger"
|
||||||
React-Mapbuffer:
|
React-Mapbuffer:
|
||||||
:path: "../node_modules/react-native/ReactCommon"
|
:path: "../node_modules/react-native/ReactCommon"
|
||||||
|
react-native-get-random-values:
|
||||||
|
:path: "../node_modules/react-native-get-random-values"
|
||||||
|
react-native-netinfo:
|
||||||
|
:path: "../node_modules/@react-native-community/netinfo"
|
||||||
react-native-safe-area-context:
|
react-native-safe-area-context:
|
||||||
:path: "../node_modules/react-native-safe-area-context"
|
:path: "../node_modules/react-native-safe-area-context"
|
||||||
React-nativeconfig:
|
React-nativeconfig:
|
||||||
@@ -1448,15 +1730,29 @@ EXTERNAL SOURCES:
|
|||||||
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
||||||
ReactCommon:
|
ReactCommon:
|
||||||
:path: "../node_modules/react-native/ReactCommon"
|
:path: "../node_modules/react-native/ReactCommon"
|
||||||
|
RNCAsyncStorage:
|
||||||
|
:path: "../node_modules/@react-native-async-storage/async-storage"
|
||||||
|
RNScreens:
|
||||||
|
:path: "../node_modules/react-native-screens"
|
||||||
|
RNSVG:
|
||||||
|
:path: "../node_modules/react-native-svg"
|
||||||
Yoga:
|
Yoga:
|
||||||
:path: "../node_modules/react-native/ReactCommon/yoga"
|
:path: "../node_modules/react-native/ReactCommon/yoga"
|
||||||
|
|
||||||
SPEC CHECKSUMS:
|
SPEC CHECKSUMS:
|
||||||
|
AmplifyRTNCore: 7aabcf40316c2f5c853c1ef73139af3b24a5406b
|
||||||
|
AmplifyRTNWebBrowser: c80e90e76b89ed768370e1a2d2400fe2fd672bfc
|
||||||
boost: d3f49c53809116a5d38da093a8aa78bf551aed09
|
boost: d3f49c53809116a5d38da093a8aa78bf551aed09
|
||||||
DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
|
DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
|
||||||
EXConstants: 409690fbfd5afea964e5e9d6c4eb2c2b59222c59
|
EXConstants: 409690fbfd5afea964e5e9d6c4eb2c2b59222c59
|
||||||
EXImageLoader: ab589d67d6c5f2c33572afea9917304418566334
|
EXImageLoader: ab589d67d6c5f2c33572afea9917304418566334
|
||||||
|
EXJSONUtils: 30c17fd9cc364d722c0946a550dfbf1be92ef6a4
|
||||||
|
EXManifests: c1fab4c3237675e7b0299ea8df0bcb14baca4f42
|
||||||
Expo: 56b642d0930789fc847dc7f424d2d599dfe59a5e
|
Expo: 56b642d0930789fc847dc7f424d2d599dfe59a5e
|
||||||
|
expo-dev-client: bcca43a56437123873b32a36ea31568e4212c1ca
|
||||||
|
expo-dev-launcher: ab76344f7a72c7b6bb255280a66202655ecf1965
|
||||||
|
expo-dev-menu: 9b9886b383163f14821e624f3eb51a2084491aa2
|
||||||
|
expo-dev-menu-interface: be32c09f1e03833050f0ee290dcc86b3ad0e73e4
|
||||||
ExpoAsset: 323700f291684f110fb55f0d4022a3362ea9f875
|
ExpoAsset: 323700f291684f110fb55f0d4022a3362ea9f875
|
||||||
ExpoCamera: c5be8a28a769c4dee3a02e017e5b55415d9beb2c
|
ExpoCamera: c5be8a28a769c4dee3a02e017e5b55415d9beb2c
|
||||||
ExpoFileSystem: 80bfe850b1f9922c16905822ecbf97acd711dc51
|
ExpoFileSystem: 80bfe850b1f9922c16905822ecbf97acd711dc51
|
||||||
@@ -1465,6 +1761,7 @@ SPEC CHECKSUMS:
|
|||||||
ExpoImagePicker: 12a420923383ae38dccb069847218f27a3b87816
|
ExpoImagePicker: 12a420923383ae38dccb069847218f27a3b87816
|
||||||
ExpoKeepAwake: 3b8815d9dd1d419ee474df004021c69fdd316d08
|
ExpoKeepAwake: 3b8815d9dd1d419ee474df004021c69fdd316d08
|
||||||
ExpoModulesCore: 30e1ed4659356cb9a84e0e5ddf1d090d735973c1
|
ExpoModulesCore: 30e1ed4659356cb9a84e0e5ddf1d090d735973c1
|
||||||
|
EXUpdatesInterface: 996527fd7d1a5d271eb523258d603f8f92038f24
|
||||||
FBLazyVector: 7e977dd099937dc5458851233141583abba49ff2
|
FBLazyVector: 7e977dd099937dc5458851233141583abba49ff2
|
||||||
fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120
|
fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120
|
||||||
glog: fdfdfe5479092de0c4bdbebedd9056951f092c4f
|
glog: fdfdfe5479092de0c4bdbebedd9056951f092c4f
|
||||||
@@ -1494,6 +1791,8 @@ SPEC CHECKSUMS:
|
|||||||
React-jsitracing: 6b3c8c98313642140530f93c46f5a6ca4530b446
|
React-jsitracing: 6b3c8c98313642140530f93c46f5a6ca4530b446
|
||||||
React-logger: fa92ba4d3a5d39ac450f59be2a3cec7b099f0304
|
React-logger: fa92ba4d3a5d39ac450f59be2a3cec7b099f0304
|
||||||
React-Mapbuffer: 9f68550e7c6839d01411ac8896aea5c868eff63a
|
React-Mapbuffer: 9f68550e7c6839d01411ac8896aea5c868eff63a
|
||||||
|
react-native-get-random-values: 21325b2244dfa6b58878f51f9aa42821e7ba3d06
|
||||||
|
react-native-netinfo: bdb108d340cdb41875c9ced535977cac6d2ff321
|
||||||
react-native-safe-area-context: dcab599c527c2d7de2d76507a523d20a0b83823d
|
react-native-safe-area-context: dcab599c527c2d7de2d76507a523d20a0b83823d
|
||||||
React-nativeconfig: fa5de9d8f4dbd5917358f8ad3ad1e08762f01dcb
|
React-nativeconfig: fa5de9d8f4dbd5917358f8ad3ad1e08762f01dcb
|
||||||
React-NativeModulesApple: 585d1b78e0597de364d259cb56007052d0bda5e5
|
React-NativeModulesApple: 585d1b78e0597de364d259cb56007052d0bda5e5
|
||||||
@@ -1518,6 +1817,9 @@ SPEC CHECKSUMS:
|
|||||||
React-runtimescheduler: 0c80752bceb80924cb8a4babc2a8e3ed70d41e87
|
React-runtimescheduler: 0c80752bceb80924cb8a4babc2a8e3ed70d41e87
|
||||||
React-utils: a06061b3887c702235d2dac92dacbd93e1ea079e
|
React-utils: a06061b3887c702235d2dac92dacbd93e1ea079e
|
||||||
ReactCommon: f00e436b3925a7ae44dfa294b43ef360fbd8ccc4
|
ReactCommon: f00e436b3925a7ae44dfa294b43ef360fbd8ccc4
|
||||||
|
RNCAsyncStorage: 826b603ae9c0f88b5ac4e956801f755109fa4d5c
|
||||||
|
RNScreens: b32a9ff15bea7fcdbe5dff6477bc503f792b1208
|
||||||
|
RNSVG: 43b64ed39c14ce830d840903774154ca0c1f27ec
|
||||||
SDWebImage: 066c47b573f408f18caa467d71deace7c0f8280d
|
SDWebImage: 066c47b573f408f18caa467d71deace7c0f8280d
|
||||||
SDWebImageWebPCoder: e38c0a70396191361d60c092933e22c20d5b1380
|
SDWebImageWebPCoder: e38c0a70396191361d60c092933e22c20d5b1380
|
||||||
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
|
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
archiveVersion = 1;
|
archiveVersion = 1;
|
||||||
classes = {
|
classes = {
|
||||||
};
|
};
|
||||||
objectVersion = 46;
|
objectVersion = 54;
|
||||||
objects = {
|
objects = {
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = SafeQR/Info.plist; sourceTree = "<group>"; };
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = SafeQR/Info.plist; sourceTree = "<group>"; };
|
||||||
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = SafeQR/main.m; sourceTree = "<group>"; };
|
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = SafeQR/main.m; sourceTree = "<group>"; };
|
||||||
3AFB9527515F400EB35B5271 /* SafeQR-Bridging-Header.h */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.c.h; name = "SafeQR-Bridging-Header.h"; path = "SafeQR/SafeQR-Bridging-Header.h"; sourceTree = "<group>"; };
|
3AFB9527515F400EB35B5271 /* SafeQR-Bridging-Header.h */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.c.h; name = "SafeQR-Bridging-Header.h"; path = "SafeQR/SafeQR-Bridging-Header.h"; sourceTree = "<group>"; };
|
||||||
487419EC32288C77BA122735 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = SafeQR/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
487419EC32288C77BA122735 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = SafeQR/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
||||||
515B046497E640AC8D931724 /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "SafeQR/noop-file.swift"; sourceTree = "<group>"; };
|
515B046497E640AC8D931724 /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "SafeQR/noop-file.swift"; sourceTree = "<group>"; };
|
||||||
58EEBF8E8E6FB1BC6CAF49B5 /* libPods-SafeQR.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SafeQR.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
58EEBF8E8E6FB1BC6CAF49B5 /* libPods-SafeQR.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SafeQR.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
6C2E3173556A471DD304B334 /* Pods-SafeQR.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SafeQR.debug.xcconfig"; path = "Target Support Files/Pods-SafeQR/Pods-SafeQR.debug.xcconfig"; sourceTree = "<group>"; };
|
6C2E3173556A471DD304B334 /* Pods-SafeQR.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SafeQR.debug.xcconfig"; path = "Target Support Files/Pods-SafeQR/Pods-SafeQR.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
@@ -275,16 +275,22 @@
|
|||||||
"${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
|
"${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle",
|
"${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle",
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle",
|
"${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle",
|
||||||
|
"${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle",
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle",
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle",
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.bundle",
|
"${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.bundle",
|
||||||
|
"${PODS_CONFIGURATION_BUILD_DIR}/expo-dev-launcher/EXDevLauncher.bundle",
|
||||||
|
"${PODS_CONFIGURATION_BUILD_DIR}/expo-dev-menu/EXDevMenu.bundle",
|
||||||
);
|
);
|
||||||
name = "[CP] Copy Pods Resources";
|
name = "[CP] Copy Pods Resources";
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle",
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle",
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle",
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle",
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle",
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle",
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle",
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SDWebImage.bundle",
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SDWebImage.bundle",
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXDevLauncher.bundle",
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXDevMenu.bundle",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
@@ -335,6 +341,7 @@
|
|||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CODE_SIGN_ENTITLEMENTS = SafeQR/SafeQR.entitlements;
|
CODE_SIGN_ENTITLEMENTS = SafeQR/SafeQR.entitlements;
|
||||||
CURRENT_PROJECT_VERSION = 1;
|
CURRENT_PROJECT_VERSION = 1;
|
||||||
|
DEVELOPMENT_TEAM = 5WMH54H74H;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
@@ -342,7 +349,10 @@
|
|||||||
);
|
);
|
||||||
INFOPLIST_FILE = SafeQR/Info.plist;
|
INFOPLIST_FILE = SafeQR/Info.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"@executable_path/Frameworks",
|
||||||
|
);
|
||||||
MARKETING_VERSION = 1.0;
|
MARKETING_VERSION = 1.0;
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
@@ -368,9 +378,13 @@
|
|||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CODE_SIGN_ENTITLEMENTS = SafeQR/SafeQR.entitlements;
|
CODE_SIGN_ENTITLEMENTS = SafeQR/SafeQR.entitlements;
|
||||||
CURRENT_PROJECT_VERSION = 1;
|
CURRENT_PROJECT_VERSION = 1;
|
||||||
|
DEVELOPMENT_TEAM = 5WMH54H74H;
|
||||||
INFOPLIST_FILE = SafeQR/Info.plist;
|
INFOPLIST_FILE = SafeQR/Info.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"@executable_path/Frameworks",
|
||||||
|
);
|
||||||
MARKETING_VERSION = 1.0;
|
MARKETING_VERSION = 1.0;
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
@@ -439,7 +453,10 @@
|
|||||||
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD = "";
|
LD = "";
|
||||||
LDPLUSPLUS = "";
|
LDPLUSPLUS = "";
|
||||||
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
|
/usr/lib/swift,
|
||||||
|
"$(inherited)",
|
||||||
|
);
|
||||||
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
|
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
|
||||||
MTL_ENABLE_DEBUG_INFO = YES;
|
MTL_ENABLE_DEBUG_INFO = YES;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
@@ -498,7 +515,10 @@
|
|||||||
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD = "";
|
LD = "";
|
||||||
LDPLUSPLUS = "";
|
LDPLUSPLUS = "";
|
||||||
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
|
/usr/lib/swift,
|
||||||
|
"$(inherited)",
|
||||||
|
);
|
||||||
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
|
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>IDEDidComputeMac32BitWarning</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@@ -8,19 +8,15 @@ import CustomTabBar from '../components/CustomTabBar';
|
|||||||
|
|
||||||
// Create a bottom tab navigator
|
// Create a bottom tab navigator
|
||||||
const Tab = createBottomTabNavigator();
|
const Tab = createBottomTabNavigator();
|
||||||
// Define custom props for CustomTabBar
|
|
||||||
interface AppNavigatorProps {
|
|
||||||
clearScanData: () => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Main navigation component
|
// Main navigation component
|
||||||
const AppNavigator = ({ clearScanData }: AppNavigatorProps) => {
|
const AppNavigator = () => {
|
||||||
return (
|
return (
|
||||||
// Wrap the navigator in a NavigationContainer to manage the navigation tree
|
// Wrap the navigator in a NavigationContainer to manage the navigation tree
|
||||||
<NavigationContainer>
|
<NavigationContainer>
|
||||||
|
|
||||||
{/* Define the tab navigator with custom tab bar and initial route */}
|
{/* Define the tab navigator with custom tab bar and initial route */}
|
||||||
<Tab.Navigator initialRouteName="QR Scanner" tabBar={props => <CustomTabBar {...props} clearScanData={clearScanData} />}>
|
<Tab.Navigator initialRouteName="QR Scanner" tabBar={props => <CustomTabBar {...props} />}>
|
||||||
|
|
||||||
{/* Define each tab with a name and corresponding component */}
|
{/* Define each tab with a name and corresponding component */}
|
||||||
<Tab.Screen name="History" component={HistoryScreen} />
|
<Tab.Screen name="History" component={HistoryScreen} />
|
||||||
@@ -31,4 +27,4 @@ const AppNavigator = ({ clearScanData }: AppNavigatorProps) => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default AppNavigator;
|
export default AppNavigator;
|
||||||
3655
package-lock.json
generated
3655
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
13
package.json
13
package.json
@@ -9,9 +9,15 @@
|
|||||||
"web": "expo start --web"
|
"web": "expo start --web"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@aws-amplify/react-native": "^1.1.1",
|
||||||
|
"@aws-amplify/rtn-web-browser": "^1.0.30",
|
||||||
|
"@aws-amplify/ui-react-native": "^2.2.2",
|
||||||
"@expo/vector-icons": "^14.0.2",
|
"@expo/vector-icons": "^14.0.2",
|
||||||
|
"@react-native-async-storage/async-storage": "^1.23.1",
|
||||||
|
"@react-native-community/netinfo": "11.3.1",
|
||||||
"@react-navigation/bottom-tabs": "^6.5.20",
|
"@react-navigation/bottom-tabs": "^6.5.20",
|
||||||
"@react-navigation/native": "^6.1.17",
|
"@react-navigation/native": "^6.1.17",
|
||||||
|
"aws-amplify": "^6.3.8",
|
||||||
"axios": "^1.7.2",
|
"axios": "^1.7.2",
|
||||||
"expo": "~51.0.17",
|
"expo": "~51.0.17",
|
||||||
"expo-camera": "~15.0.13",
|
"expo-camera": "~15.0.13",
|
||||||
@@ -20,13 +26,18 @@
|
|||||||
"expo-status-bar": "~1.12.1",
|
"expo-status-bar": "~1.12.1",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-native": "^0.74.3",
|
"react-native": "^0.74.3",
|
||||||
|
"react-native-get-random-values": "^1.11.0",
|
||||||
"react-native-qrcode-svg": "^6.3.1",
|
"react-native-qrcode-svg": "^6.3.1",
|
||||||
"react-native-safe-area-context": "^4.10.1"
|
"react-native-safe-area-context": "4.10.1",
|
||||||
|
"react-native-screens": "3.31.1",
|
||||||
|
"react-native-svg": "15.2.0",
|
||||||
|
"expo-dev-client": "~4.0.19"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.20.0",
|
"@babel/core": "^7.20.0",
|
||||||
"@types/react": "~18.2.45",
|
"@types/react": "~18.2.45",
|
||||||
"@types/react-native": "^0.73.0",
|
"@types/react-native": "^0.73.0",
|
||||||
|
"react-native-svg-transformer": "^1.4.0",
|
||||||
"typescript": "~5.3.3"
|
"typescript": "~5.3.3"
|
||||||
},
|
},
|
||||||
"private": true
|
"private": true
|
||||||
|
|||||||
Reference in New Issue
Block a user