import React, { useEffect, useState } from "react"; import { View, Text, Button, ActivityIndicator, StyleSheet } from "react-native"; import AsyncStorage from "@react-native-async-storage/async-storage"; import { WebView } from "react-native-webview"; const SHORT_LINK = "https://earnlinks.in/ik5L"; // your verification link const VERIFICATION_KEY = "lastVerified"; const DOWNLOAD_LINK = "https://muftukmall.fun/linkchanger"; // download link export default function App() { const [verified, setVerified] = useState(false); const [checking, setChecking] = useState(true); const [showWebView, setShowWebView] = useState(false); // Check if user already verified in last 24h useEffect(() => { const checkVerification = async () => { const lastVerified = await AsyncStorage.getItem(VERIFICATION_KEY); if (lastVerified) { const diff = Date.now() - parseInt(lastVerified, 10); ...