nativescript-custom-entitlements
                        
                        
                            Nativescript hook for supporting custom Xcode 8 entitlements
                        
                        
                        npm i --save nativescript-custom-entitlements
                    
                    - Version: 0.2.0
- GitHub: https://github.com/Essent/nativescript-custom-entitlements
- NPM: https://www.npmjs.com/package/nativescript-custom-entitlements
- Downloads:
- Last Day: 1
- Last Week: 7
- Last Month: 19
Nativescript Xcode 8 custom entitlements
Nativescript hook for supporting custom xcode 8 entitlements, see https://github.com/NativeScript/nativescript-cli/issues/2075
Installation
Npm
npm install nativescript-custom-entitlements --save-devConfiguration
You'll need to have a entitlements file app.entitlements in the app/App_Resources/iOS folder.
TIP You can open the project in xcode 8 and activate the entitlements you need. xcode will generate an entitlements file which you can copy to your nativescript project
Example entitlements file
app/App_Resources/iOS/app.entitlements
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>aps-environment</key>
	<string>development</string>
</dict>
</plist>Run Demo
npm run setup
npm run demo.iosCheck entitlements
npm run setup
npm run resetdemo
cd demo
tns build ios --for-device
cp demo/platforms/ios/build/device/demo.ipa build/demo/platforms/ios/build/device/demo.zip
unzip demo/platforms/ios/build/device/demo.zip -d demo/platforms/ios/build/device/
codesign -d --entitlements :- "demo/platforms/ios/build/device/Payload/demo.app"