Initial commit of template

This commit is contained in:
Antigravity
2026-07-16 14:03:55 +05:30
commit 43a21092ad
19 changed files with 1012 additions and 0 deletions

13
index.ts Normal file
View File

@@ -0,0 +1,13 @@
import 'react-native-reanimated';
// Import crypto polyfills first
import './utils/crypto-setup';
import './scripts/network-interceptor';
if (typeof document !== 'undefined') {
const utilityScript = document.createElement('script');
utilityScript.src = 'https://content.trynoah.ai/expo-utils.js';
document.head.appendChild(utilityScript);
}
// Then import the main expo-router entry
import 'expo-router/entry';