0.2.1 • Published 5 months ago
expo-testflight v0.2.1
expo-testflight
A simple expo module to check if the app is running on TestFlight
Installation
yarn add expo-testflight
npx expo prebuild
Usage
import { isTestFlight } from 'expo-testflight';
if (isTestFlight()) {
console.log('Running on TestFlight');
} else {
console.log('Not running on TestFlight');
}