Does anyone know the class name and package name for any of these applications:
youtube facebook amazon mp3 google talk camera maps text message dialer/phone launcher android market messaging contacts Social Networking Advanced Task Killer
I'm trying to make buttons to open these applications. Surely there must be an easier way than figuring out the package and class name for every application. If there is let me know how to do it. Thanks! :)
}
Using PakageInfo you can get package name, application Name but not sure about application class name
Using this example you can list all applications install in your device and can get there information.
You can look up the package name and many other parts of the AndroidManifest.xml by pulling the development tools from the emulator, and install it on the device with the requested applications. you can execute these commands at the command prompt to do this.
while the emulator is connected, run:
/path-to-android-sdk/platform-tools/adb pull /system/app/DevelopmentTools.apk
disconnect the emulator, connect the device, and run:
/path-to-android-sdk/platform-tools/adb install DevelopmentTools.apk