Skip to content
This repository has been archived by the owner on Sep 28, 2023. It is now read-only.

How do I find the launch command for an App

Eoin Kelly edited this page Nov 20, 2013 · 2 revisions

Launch paths on android use the "package name" of the app. This is usually in a reversed Url format e.g. nz.co.rabid.someapp.

You can figure out what the package name of an app is by looking at the URL for the app in the google play store. For example Monkey math school sunshine on the play store is

https://play.google.com/store/apps/details?id=com.thup.MonkeyMath&hl=en

Notice the ?id=com.thup.MonkeyMath section of the URL - that id is the package name. In this case the package name is com.thup.MonkeyMath. This is also the launch command that should go in our apps JSON file.

Clone this wiki locally