From 431fc40f5a6ca7bb31989cecb2fe77d53837a637 Mon Sep 17 00:00:00 2001 From: Miguel Oliveira Date: Sun, 30 Apr 2023 20:45:47 -0300 Subject: [PATCH] =?UTF-8?q?Hotfix=20=F0=9F=A5=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + app.json | 12 ++++++++---- navigation/BottomNavBar.js | 8 ++++++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index eb9cba7..16ad3f5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ node_modules/ .expo/ +dist/ npm-debug.* *.jks *.p8 diff --git a/app.json b/app.json index 629f8cb..5f0a114 100644 --- a/app.json +++ b/app.json @@ -3,7 +3,7 @@ "name": "UFSCar Planner", "owner": "petbccufscar", "slug": "ufscar-planner", - "version": "1.3.0", + "version": "1.3.1", "orientation": "portrait", "icon": "./assets/icon.png", "splash": { @@ -12,7 +12,8 @@ "backgroundColor": "#E8243C" }, "updates": { - "fallbackToCacheTimeout": 0 + "fallbackToCacheTimeout": 0, + "url": "https://u.expo.dev/5ff4fcf5-520f-4ac6-bc18-dd5d292dca98" }, "plugins": [ "sentry-expo", @@ -31,7 +32,7 @@ "ios": { "supportsTablet": true, "bundleIdentifier": "com.pet.ufscarplanner", - "buildNumber": "1.3.0" + "buildNumber": "1.3.1" }, "android": { "adaptiveIcon": { @@ -42,7 +43,10 @@ "versionCode": 7, "permissions": [ "RECEIVE_BOOT_COMPLETED" - ] + ], + "runtimeVersion": { + "policy": "sdkVersion" + } }, "web": { "favicon": "./assets/favicon.png" diff --git a/navigation/BottomNavBar.js b/navigation/BottomNavBar.js index 4d19733..7a036a5 100644 --- a/navigation/BottomNavBar.js +++ b/navigation/BottomNavBar.js @@ -33,9 +33,13 @@ export default function MyTabs() { /> , - tabBarActiveTintColor: theme.colors.onSecundaryContainer, + tabBarActiveTintColor: theme.colors.onSecondaryContainer, tabBarInactiveTintColor: theme.colors.onSurface, - headerPressColor: theme.colors.secundaryContainer, + tabBarAndroidRipple: { + color: theme.colors.surfaceVariant, + borderless: true, + }, + tabBarStyle: { backgroundColor: theme.colors.surface2, paddingBottom: 8,