diff --git a/.env.sentry-build-plugin b/.env.sentry-build-plugin
new file mode 100644
index 0000000..9ef4f71
--- /dev/null
+++ b/.env.sentry-build-plugin
@@ -0,0 +1 @@
+SENTRY_ALLOW_FAILURE=true
\ No newline at end of file
diff --git a/app.json b/app.json
index f760f66..8ed7833 100644
--- a/app.json
+++ b/app.json
@@ -2,7 +2,7 @@
"expo": {
"name": "Nuvio",
"slug": "nuvio",
- "version": "0.6.0-beta.11",
+ "version": "1.0.0",
"orientation": "default",
"backgroundColor": "#020404",
"icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png",
@@ -17,7 +17,7 @@
"ios": {
"supportsTablet": true,
"icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png",
- "buildNumber": "11",
+ "buildNumber": "1",
"infoPlist": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
@@ -48,7 +48,7 @@
"WAKE_LOCK"
],
"package": "com.nuvio.app",
- "versionCode": 11,
+ "versionCode": 1,
"architectures": [
"arm64-v8a",
"armeabi-v7a",
@@ -87,6 +87,6 @@
"fallbackToCacheTimeout": 30000,
"url": "https://grim-reyna-tapframe-69970143.koyeb.app/api/manifest"
},
- "runtimeVersion": "0.6.0-beta.11"
+ "runtimeVersion": "1.0.0"
}
}
diff --git a/src/navigation/AppNavigator.tsx b/src/navigation/AppNavigator.tsx
index 4918b6f..2a81e2c 100644
--- a/src/navigation/AppNavigator.tsx
+++ b/src/navigation/AppNavigator.tsx
@@ -39,7 +39,6 @@ import TraktSettingsScreen from '../screens/TraktSettingsScreen';
import PlayerSettingsScreen from '../screens/PlayerSettingsScreen';
import LogoSourceSettings from '../screens/LogoSourceSettings';
import ThemeScreen from '../screens/ThemeScreen';
-import ProfilesScreen from '../screens/ProfilesScreen';
import OnboardingScreen from '../screens/OnboardingScreen';
import AuthScreen from '../screens/AuthScreen';
import AccountManageScreen from '../screens/AccountManageScreen';
@@ -119,7 +118,6 @@ export type RootStackParamList = {
PlayerSettings: undefined;
LogoSourceSettings: undefined;
ThemeSettings: undefined;
- ProfilesSettings: undefined;
ScraperSettings: undefined;
CastMovies: {
castMember: {
@@ -1180,21 +1178,6 @@ const InnerNavigator = ({ initialRouteName }: { initialRouteName?: keyof RootSta
},
}}
/>
-
{
icon="person"
renderControl={ChevronRight}
onPress={() => navigation.navigate('TraktSettings')}
+ isLast={true}
isTablet={isTablet}
/>
- {isAuthenticated && (
- navigation.navigate('ProfilesSettings')}
- isLast={true}
- isTablet={isTablet}
- />
- )}
);