i have create an .apk file in order to install it on my android device. is it possible with this .apk file to include a folder with text files and save them in the memory card?
it will install the application on the device and then it will copy the folder to the memory card
i have create an .apk file in order to install it on my android
Share
Why don’t you use
asset/?The
assets/folder in apk is intended to store any extra user files in any formats. They will be included to apk automatically on compilation stage and can be accessed from the app usinggetAssets()function. For example: