fork of @gshevach/tfdetector • Checks if app is instaled via TestFlight or Apple App Store
npm install cap-testflight-detectA capacitor plugin for Ionic that will detect if an iOS app was installed via TestFlight.
``bash`
npm install @charliecat/cap-testflight-detect
npx cap sync
`typescript``
checkTF() => Promise<{ "isFromTestFlight": boolean; "isInSimulator": boolean; "isFromAppStore": boolean; }>
Returns: Promise<{ isFromTestFlight: boolean; isInSimulator: boolean; isFromAppStore: boolean; }>
--------------------