Reverse-engineered ParkSmarter API client (TypeScript, live-verified) plus a de-Googled Expo/React Native app for GrapheneOS: MapLibre meter map with GPS, VisionCamera QR kiosk scanning with save/share, local session-expiry reminders, UnifiedPush wiring, and Gitea CI to publish signed APKs for Obtainium. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
16 lines
452 B
TypeScript
16 lines
452 B
TypeScript
import React from 'react';
|
|
import { StatusBar } from 'expo-status-bar';
|
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
|
import { AuthProvider } from '@/auth/AuthContext';
|
|
import { RootNavigator } from '@/navigation/RootNavigator';
|
|
|
|
export default function App() {
|
|
return (
|
|
<SafeAreaProvider>
|
|
<AuthProvider>
|
|
<RootNavigator />
|
|
<StatusBar style="auto" />
|
|
</AuthProvider>
|
|
</SafeAreaProvider>
|
|
);
|
|
}
|