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
Post a Comment