Including property list file in app bundle

I try to set up auto-renewable subscriptions. I learned I need to add in my app bundle a file like this:

<?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"> <array> <string>com.xyz-Level1</string> <string>com.xyz-Level2</string> <string>com.xyz-Level3</string> </array> </plist>

I wasn't successful. I don't know how to access my app's bundle and where it is located. I learned too, placing the file at an incorrect location could result in strange behaviour of my app or even in damage. So I am very careful

Who can help? Best regards, Gerhard

Including property list file in app bundle
 
 
Q