mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 21:48:04 -05:00
* [INJIMOB-2381] update package.json and resolve dependencies for react 0.73.0 Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> * [INJIMOB-2381] setup for 0.73.6 Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> * [INJIMOB-2381] fix font & image not loading issue changes include - move common image assets to android & iOS folders - update gradle version to 8.2 - add expo-font asset for Inter regular - replace useFont with expo-font - remove flipper (reason: 0.74 react native decoupled flipper) - npm package updates - close icon changed to close text in QRScanner.tsx Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> * [INJIMOB-2381] update android:mosip script as per updated react native version Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix android build failure issue Changes include: - rename android assets folder as per convention - remove unused biometrics dependency - use env from react-native-dotenv as per module registered in babel config - revert conversion of close icon to image in QRScanner component Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix iOS build issue Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] rm unused local images linking in adnroid Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix splash screen not rendering issue in android Issue: Local assets were not loaded via React Native Image component in android, to fix this @react-native/assets-registry has been added Reference: https://github.com/expo/expo/issues/31240#issuecomment-2459049911 Other changes: - remove usage of expo-image as we dont have any explicit usecase for expo-image and its unused Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] rm unused intro slider image assets Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] revert back using local font assets in android Reason: Previously expo-font was used for fonts, to bring back the same compatiblity it is bought back Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] use GestureHandlerRootView in root level to handle gestures ref - https://docs.swmansion.com/react-native-gesture-handler/docs/1.x/#js Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove custom assets and linking for images in iOS Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] use default parameters instead of defaultProps Reason: React 18 has marked defaultProps as deprecated and it is removed in React 19 version. To avoid the issue of deprated usage, its modified. Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove unused terminal option in android build script Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove font assets in android Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] optimize import Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix failing test Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] set package.resolved version to 2 Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix setting of camera view in face scanner Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix setting of camera view in face compare Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove flipper config file Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove unused debug logs Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] refactor use component instead of type Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] refactor use GestureHandlerRootView only on root level Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] refactor remove unused config linking of font assets Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] refactor remove unused image assets Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix camera persmission issue in QRScanner use expo-camera to request and getstatus of camera permission instead of expo-barcode-scanner to avoid multiple re-renders of scan screen in flow of camera permission denial Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove package expo-barcode-scanner expo-barcode-scanner is deprecated and its suggested to use expo-camera to handle the scanning flows. The existing bar-code-scanner implementations have been replaced with expo-camera. Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] use extracted enums instead of legacy expo-camera Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove patch for react-native-0.71.8 Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] revert date-fs version to 2.28.0 date-fns is not supporting filipino langauge, so we are maintaining patch for that. The patch created is for version 2.28.0 and updating the version of date-fns is causing conflicts in patch application if updated as well. To avoid this issue, version is kept as 2.28.0 Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] update readme Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove usage of legacy expo-camera in getting image type Other changes - remove resolutions block from package.json - sync pbxproj Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] add active prop to expo-camera as per suggestions expo-camera suggests "Only one Camera preview can be active at any given time. If you have multiple screens in your app, you should unmount Camera components whenever a screen is unfocused.". To handle this active prop is used which is set to false on unMount of the component whenever rendering Camera from expo-camera Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> --------- Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> Signed-off-by: adityankannan-tw <109274996+adityankannan-tw@users.noreply.github.com> Co-authored-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> Co-authored-by: adityankannan-tw <109274996+adityankannan-tw@users.noreply.github.com>
133 lines
3.9 KiB
Plaintext
133 lines
3.9 KiB
Plaintext
{
|
|
"originHash" : "178f6c7c607eeb08b99a4966015d08339500de64791888a2e79d6b7afae53659",
|
|
"pins" : [
|
|
{
|
|
"identity" : "alamofire",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/Alamofire/Alamofire.git",
|
|
"state" : {
|
|
"revision" : "513364f870f6bfc468f9d2ff0a95caccc10044c5",
|
|
"version" : "5.10.2"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "base45-swift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/ehn-dcc-development/base45-swift",
|
|
"state" : {
|
|
"revision" : "c1db97d793d02a1c3d56d50a738c8fd8c34372f8",
|
|
"version" : "1.1.0"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "crcswift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/ivanesik/CrcSwift.git",
|
|
"state" : {
|
|
"revision" : "bb2fff7fb79815fad0528da71c9168d570bfc76c",
|
|
"version" : "0.0.3"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "cryptoswift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/krzyzanowskim/CryptoSwift.git",
|
|
"state" : {
|
|
"revision" : "729e01bc9b9dab466ac85f21fb9ee2bc1c61b258",
|
|
"version" : "1.8.4"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "gzipswift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/1024jp/GzipSwift",
|
|
"state" : {
|
|
"revision" : "7a7f17761c76a932662ab77028a4329f67d645a4",
|
|
"version" : "5.2.0"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "inji-openid4vp-ios-swift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/mosip/inji-openid4vp-ios-swift",
|
|
"state" : {
|
|
"branch" : "develop",
|
|
"revision" : "db16a9bf63b69942942a3e49bf7d40eaeba186bf"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "inji-vci-client-ios-swift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/mosip/inji-vci-client-ios-swift",
|
|
"state" : {
|
|
"branch" : "develop",
|
|
"revision" : "02f367bd2527f249145393a533f5175918c1fc8a"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "jose-swift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/beatt83/jose-swift.git",
|
|
"state" : {
|
|
"revision" : "57fe5a03c83feaf73a84b23c02e641f86482e313",
|
|
"version" : "4.0.2"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "pixelpass-ios-swift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/mosip/pixelpass-ios-swift",
|
|
"state" : {
|
|
"branch" : "release-0.6.x",
|
|
"revision" : "15249dc4eecb7c2b6e6074193d3928b3402c9d20"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "secp256k1.swift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/GigaBitcoin/secp256k1.swift.git",
|
|
"state" : {
|
|
"revision" : "4c77c7384768acf1093d66ccaacf298d322b10b7",
|
|
"version" : "0.15.0"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "secure-keystore-ios-swift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/mosip/secure-keystore-ios-swift",
|
|
"state" : {
|
|
"revision" : "1ea5182ca985302d11010b7a16ea496167969ab3",
|
|
"version" : "0.3.0"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "swiftcbor",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/valpackett/SwiftCBOR",
|
|
"state" : {
|
|
"revision" : "04ccff117f6549121d5721ec84fdf0162122b90e",
|
|
"version" : "0.5.0"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "tuvali-ios-swift",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/mosip/tuvali-ios-swift/",
|
|
"state" : {
|
|
"revision" : "2d49e123f70dfc2179983a753d370cc2212385db",
|
|
"version" : "0.5.0"
|
|
}
|
|
},
|
|
{
|
|
"identity" : "zipfoundation",
|
|
"kind" : "remoteSourceControl",
|
|
"location" : "https://github.com/weichsel/ZIPFoundation.git",
|
|
"state" : {
|
|
"revision" : "02b6abe5f6eef7e3cbd5f247c5cc24e246efcfe0",
|
|
"version" : "0.9.19"
|
|
}
|
|
}
|
|
],
|
|
"version" : 2
|
|
}
|