How to copy files from assets to sdcard on install?
Is there any install script option when generating apk?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use an async task during your “onCreate” and copy all your files from assets to SDCARD (if available), maybe using a splashscreen if you need the data immediately at start.
There is no way to execute anything after install it’s not under application control.
Please also note that SDCARD may not be available if the phone is connected in mass storage mode to a pc.