expo-testflight
v0.3.0
Published
A simple expo module to check if the app is running on TestFlight
Maintainers
Readme
expo-testflight
A simple expo module to check if the app is running on TestFlight
Installation
yarn add expo-testflightnpx expo prebuildUsage
import { isTestFlight } from 'expo-testflight';
if (isTestFlight) {
console.log('Running on TestFlight');
} else {
console.log('Not running on TestFlight');
}