Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

873: Use react-native-vision-camera and react-native-image-picker #1034

Merged
merged 32 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
848f831
873: Switch to react-native-vision-camera
steffenkleinle Oct 29, 2024
79e479c
873: Fix camera
steffenkleinle Oct 31, 2024
744141b
873: Replace image selection library
steffenkleinle Oct 31, 2024
ccf8e2e
873: Fix audio recorder
steffenkleinle Oct 31, 2024
69db281
873: Tidy up
steffenkleinle Oct 31, 2024
a7637e4
1010: Upgrade to react-native 0.72
steffenkleinle Oct 29, 2024
d2480a2
1010: Rename .java to .kt
steffenkleinle Oct 29, 2024
bd68994
1010: Upgrade to react-native 0.73
steffenkleinle Oct 29, 2024
3e9f3d3
1010: Upgrade to react-native 0.74
steffenkleinle Oct 29, 2024
50422f5
1010: Dependency upgrades and fix metro and app start
steffenkleinle Oct 29, 2024
e118d02
1010: Fix tests and more
steffenkleinle Oct 29, 2024
ba3e953
1010: Enable test
steffenkleinle Oct 29, 2024
3afb34f
1010: Fix ci metro config
steffenkleinle Oct 29, 2024
43f9011
1010: Fix tests and yarn.lock
steffenkleinle Oct 31, 2024
fbc2bbe
1010: Fix linting
steffenkleinle Nov 4, 2024
ed7e322
1010: iOS fixes
Nov 4, 2024
dd1560d
1010: Adjust formatting
steffenkleinle Nov 13, 2024
b31c1d1
1010: Upgrade react-native to v0.76
steffenkleinle Nov 13, 2024
b411e22
1010: Upgrade dependencies
steffenkleinle Nov 13, 2024
037d24b
1010: Upgrade eslint
steffenkleinle Nov 13, 2024
cca318d
1010: Upgrade react-native-header-buttons
steffenkleinle Nov 13, 2024
d109f0e
1010: Fix tests
steffenkleinle Nov 18, 2024
34b3aa9
1010: Update pods and gems
steffenkleinle Nov 19, 2024
392abb5
1010: Update checksum
Nov 19, 2024
5e7ab89
1010: Fix jest failing even though all tests succeed
steffenkleinle Nov 19, 2024
ef7ca59
1010: Fix overlay on ios and reduce margin to fit content
steffenkleinle Dec 4, 2024
870cbd6
1010: Fix for iOS
LeandraH Dec 4, 2024
034c24b
1010: Update project file again
LeandraH Dec 4, 2024
add8e83
1010: rename navigation target to fix navigating to detail screen
f1sh1918 Jan 8, 2025
02fbb1a
1010: Fix fast stopping of audio record
steffenkleinle Jan 17, 2025
2cdfab3
Merge pull request #1035 from digitalfabrik/1010-upgrade-react-native
steffenkleinle Jan 17, 2025
882e9c0
Merge branch 'main' into 873-react-native-vision-camera
steffenkleinle Jan 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ android {
versionCode project.VERSION_CODE.toInteger()
versionName project.VERSION_NAME
}
missingDimensionStrategy 'react-native-camera', 'general'
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
vectorDrawables.useSupportLibrary = true
if (isNewArchitectureEnabled()) {
Expand Down
5 changes: 4 additions & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,7 @@ reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
# your application. You should enable this flag either if you want
# to write custom TurboModules/Fabric components OR use libraries that
# are providing them.
newArchEnabled=false
newArchEnabled=false

# https://react-native-vision-camera.com/docs/guides/code-scanning#setup
VisionCamera_enableCodeScanner=true
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,11 @@
"react": "18.1.0",
"react-native": "0.70.9",
"react-native-audio-recorder-player": "3.5.1",
"react-native-camera": "4.2.1",
"react-native-device-info": "^10.13.1",
"react-native-element-dropdown": "^2.10.4",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "2.9.0",
"react-native-image-crop-picker": "^0.40.3",
"react-native-image-picker": "^7.1.2",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-paper": "5.12.3",
Expand All @@ -61,6 +60,7 @@
"react-native-svg-transformer": "^1.3.0",
"react-native-tts": "4.1.0",
"react-native-vector-icons": "^10.0.3",
"react-native-vision-camera": "^4.5.3",
"react-navigation-header-buttons": "^10.0.0",
"string-similarity": "^4.0.4",
"styled-components": "^6.1.8",
Expand Down
Loading