i am trying to implement OTA settings update for my app.
didn’t find any tutorial regarding this issue.
the settings file would be an XML file.
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.
There is no built-in “OTA settings update” in Android.
If “OTA settings update” implies an update to your application itself, download the APK to external storage and call
startActivity()with anACTION_VIEWIntent, aUripointing to that (world-readable), and the magic MIME type (application/vnd.android.package-archive).If “OTA settings update” is data, download what you want from your Web server.