I have an android application that works like restriction of some Apps categories like game.
so if i stop all game apps in my android device then how its possible.
how i get this app is game OR weather OR Medical etc.
Any ideas….
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.
Application categories correspond to a classification in Android Market, but not something you can check on the application itself. What you can do is to query the Android Market for information of a specific application.
Android Market identifies applications by package name. So get an
ApplicationInfofor the package you want to query about (checkPackageManagerdocumentation) and useApplicationInfo.packageName.Then query Android Market about the package name you just got. Here’s a non-official API http://code.google.com/p/android-market-api/
Hope it helps.