Skip to content Skip to sidebar Skip to footer

Initial Configuration For Android App

Is it possible to have some piece of data passed in to the app on the very first app run through via the Google Play link (maybe as an Intent). The scenario I envision is this:

Solution 1:

Have a search for the com.android.vending.INSTALL_REFERRER Intent. This source, for example, says:

Starting with Android 1.6, the Android Market's emits a broadcast Intent named com.android.vending.INSTALL_REFERRER whenever certain parameters are added to the market url. Note that web version of the Market also passes these parameters to your devices upon install.

I have no idea how up-to-date or well-supported that is, but it sounds like what you want.

Post a Comment for "Initial Configuration For Android App"