I need to add a configuration text file to my android app. This file needs to be accessed natively with a C library. So I need to pass it the absolute path to the folder i.e. (/data/data/(package name)/files).
I looked into putting it into resources or assets. But they don't seem to have a way to get the absolute path to the resources and assets folder. Files in assets seem to also be inside the zipped apk file so there will be problems accessing it natively in c.
Where can I put a file in my project folder so that it can be placed in the app's internal storage directory?