Reputation: 5145
From last few days I research on this topic and i found like on OS Android 5 and above we can get application category like I only want to know Is it a game or not (ApplicationInfo.FLAG_IS_GAME
) but i couldn't found all Game Categoriesfrom this method so after that i implemented PlayStore request https://play.google.com/store/apps/details?id=APPLICATIONID but it take a time and also need internet.
I saw some application which are fast to fetch game without Internet I don't know how Please help me to resolve it Thanking You
Upvotes: 1
Views: 1119
Reputation: 1411
Check this link (like android:isGame=["true" | "false"]
)
Android manifest permission for Application tag
Upvotes: 1
Reputation: 3195
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.
Upvotes: 0