android - Open installed own app from other app -


i trying open android app app(example gmail app) when user clicks specified url.

i have succeed clicking sample url , example

    <data         android:host="showonthecloud.com"         android:scheme="http"           /> </intent-filter> 

checked myself sending mail me url http://showonthecloud.com

but url http://username.showonthecloud.com

the username can after logged app. how replace username dynamically in manifest file?.

finally got solution

adding *. before can achieve it.

<data     android:host="*.showonthecloud.com"     android:scheme="http"       /> 


Comments

Popular posts from this blog

php - render data via PDO::FETCH_FUNC vs loop -

c++ - OpenCV Error: Assertion failed <scn == 3 ::scn == 4> in unknown function, -

The canvas has been tainted by cross-origin data in chrome only -