Additional plist data

I have a plist file generated by google analytics that i need to add to my project.

plist looks like this (real numbers replaced with dummy text):

<?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>AD_UNIT_ID_FOR_BANNER_TEST</key>
	<string>ca-app-pub-9999999999999999/9999999999</string>
	<key>AD_UNIT_ID_FOR_INTERSTITIAL_TEST</key>
	<string>ca-app-pub-9999999999999999/9999999999</string>
	<key>TRACKING_ID</key>
	<string>UA-99999999-9</string>
	<key>PLIST_VERSION</key>
	<string>1</string>
	<key>BUNDLE_ID</key>
	<string>com.company.project</string>
	<key>IS_ADS_ENABLED</key>
	<true/>
	<key>IS_ANALYTICS_ENABLED</key>
	<true/>
	<key>IS_APPINVITE_ENABLED</key>
	<false/>
	<key>IS_GCM_ENABLED</key>
	<false/>
	<key>IS_SIGNIN_ENABLED</key>
	<false/>
	<key>GOOGLE_APP_ID</key>
	<string>999-app-id-999</string>
</dict>
</plist>

additional plist data input is a small textbox like so:

67042-capture.png

How do I add the appropriate data to my config?

bump bump bump

I’d like to know as well. Currently setting anything in that field seems to cause problems.

OK I solved my problem with this by looking at the produced pList File and realising that I needed to include the XML format code for the expected output. So for my camera access entry I added this line into the “Extra Plist data” input on the iOS settings page:

<key>NSCameraUsageDescription</key><string>Camera is used for AR functionality</string>

I hope this helps someone

R

3 Likes

Adding the XML format … etc. worked for me;)

Thank you very much! That’s exactly what I was looking for

I’m having a similar problem when trying to launch Shari from a UE4 app. It works on all other devices but it won’t launch safari on my iphone. Is there a certain additional plist entry I should use?

Thanks for this very very good tipp! Helped me out very well!