android-package-managers

Problem uninstalling an Application package from Android device

We have an application which on start up pulls up a Terms and Conditions screen. When the user declines these terms we have to ask the user if he wishes to delete the package. So, from within the application we launch the following intent: Uri uninstallUri = Uri.parse("package:some.package.name"); Intent intent = new Intent(Intent.ACTI...

Getting packages from PackageManager

I'm writing an app, that has a somewhat modular system. It has a core app, and some apps, that consist of a single Service, that implements the desired interface. I followed the guide to create the IPC communication. But now I need to get all the services, installed on the system, that my core app can wotk with. How do I do this? I mean,...