Skip to content

Commit

Permalink
Fix age verification input size
Browse files Browse the repository at this point in the history
  • Loading branch information
micahlt committed Sep 11, 2024
1 parent 14cf699 commit 015fc91
Show file tree
Hide file tree
Showing 10 changed files with 674 additions and 541 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ android {
applicationId "com.micahlindley.offsides"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 37
versionName "0.7.3"
versionCode 38
versionName "0.7.4"
}
signingConfigs {
debug {
Expand Down
Binary file modified android/app/release/app-release.apk
Binary file not shown.
Binary file modified android/app/release/baselineProfiles/0/app-release.dm
Binary file not shown.
Binary file modified android/app/release/baselineProfiles/1/app-release.dm
Binary file not shown.
4 changes: 2 additions & 2 deletions android/app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 37,
"versionName": "0.7.3",
"versionCode": 38,
"versionName": "0.7.4",
"outputFile": "app-release.apk"
}
],
Expand Down
4 changes: 2 additions & 2 deletions docs/latest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"latestVersion": "0.7.3",
"changelog": "This update includes bugfixes for login issues as well as experience improvments for polls."
"latestVersion": "0.7.4",
"changelog": "This update includes a fix that made logging in impossible for some users."
}
723 changes: 387 additions & 336 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "offsides",
"version": "0.7.3",
"version": "0.7.4",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand All @@ -14,23 +14,23 @@
"@eabdullazyanov/react-native-sms-user-consent": "^1.2.0",
"@pchmn/expo-material3-theme": "^1.3.2",
"@react-native-async-storage/async-storage": "^1.24.0",
"@react-native-firebase/app": "^20.4.0",
"@react-native-firebase/crashlytics": "^20.4.0",
"@react-native-firebase/app": "^20.5.0",
"@react-native-firebase/crashlytics": "^20.5.0",
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"@react-navigation/stack": "^6.4.1",
"expo": "^51.0.32",
"expo-modules-core": "^1.12.24",
"js-sha256": "^0.11.0",
"react": "18.3.1",
"react-native": "^0.75.2",
"react-native": "^0.75.3",
"react-native-device-info": "^11.1.0",
"react-native-gesture-handler": "^2.19.0",
"react-native-image-picker": "^7.1.2",
"react-native-paper": "^5.12.5",
"react-native-phone-hint": "^0.2.1",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "^4.10.9",
"react-native-safe-area-context": "^4.11.0",
"react-native-screens": "^3.34.0",
"react-native-vector-icons": "^10.1.0",
"react-native-video": "^6.5.0",
Expand All @@ -50,11 +50,11 @@
"@types/react": "~18.2.79",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"eslint": "^9.9.1",
"eslint": "^9.10.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"react-test-renderer": "18.3.1",
"typescript": "^5.5.4"
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18"
Expand Down
2 changes: 1 addition & 1 deletion src/screens/LoginScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ function LoginScreen({}) {
style={{
marginBottom: 10,
textAlign: 'center',
height: 20,
width: 100,
}}
value={myAge}
keyboardType="number-pad"
Expand Down
Loading

0 comments on commit 015fc91

Please sign in to comment.