iPhone App Directory

Hello,

Is there a way to load a text file inside the “MyAPP.app” directory when working with an iPhone App?

Currently, I can only load text file values, to my dynamic text on stage only from within the “MyApp.app/text.txt”

However, I can’t seem to find a way to write a file inside that folder.

The directories that are created when installing the app are:

tmp
Library
Documents
MyApp.app

Using File.documentsDirectory will write to the Documents folder.
Using File.applicationDirectory or File.applicationStorageDirectory will create files inside the Library folder.

Any help would be appriciated!

Thanks!