Hi I have an app that plays large files. I would like to extend with downloadable add-ons. I would for example have certain sounds seperate installable package.
Share
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.
You can test for the existence of your add-ons using Intents. Create an explicit Intent and check the PackageManager to see if it exists. If it does, unlock the behavior.
If you want to do something more complicated then your add-ons need to have Activities that are triggered with Intents, Services that you call via AIDL, or some other mechanism to add the functionality.