chocospaz
chocospaz

Reputation: 749

Game Intent Action for Android

Question:

I've been tasked with getting a list of current games on an Android Device (pretty simple in theory), I was wondering, if there is a fancy way to do this without using custom urls?

I know that we can view all apps on the installed on an android device, I was wondering if there was a Game Filter of some kind?

Thanks! Best Regards, Christopher Steven

Upvotes: 0

Views: 124

Answers (1)

Lukos
Lukos

Reputation: 722

As far as I am aware, the only required meta data to prove an app is a game looks like this in the manifest:

<meta-data android:name="com.google.android.gms.games.APP_ID"
        android:value="@string/app_id" />

If you can figure out how to check for that then you can do it.

Upvotes: 2

Related Questions