Advanced features for the iOS platform

Advanced features for the iOS platform

Targeting iOS devices

Fliplet uses Modernizr to expose boolean flags which can help you targeting a specific platform when writing Javascript code for your apps:

if (Modernizr.ios) {
  // code here will only run on iOS devices
}

if (Fliplet.Env.is('native')) {
  // code here will run on Android, iOS and Windows devices but not on web
}

Manually creating a P12 certificate

If you’re using Fliplet Automated App Build system with an Apple Enterprise account and want to manually provide your certificate, we will need its P12 key. Please follow this steps to generate one with your Apple account.

How to generate a P12 certificate


Back to home