Android url custom scheme dosent work -
i read post this, think code right (very simple), links dosen't appear clickable "manager://xxxx" , in mail, in qr, in whatsappp... whats happend?
i try only
<data android:scheme="coc" />
but in whatsapp work http links. why!
<activity android:theme="@style/appthemefullscreen" android:configchanges="orientation|keyboardhidden|screensize" android:label="@string/app_name" android:exported="true" android:launchmode="singletask" android:name=".aloginconnect"> <intent-filter> <data android:scheme="coc" android:host="*" android:pathpattern=".*" /> <action android:name="android.intent.action.view"/> <category android:name="android.intent.category.default"/> <category android:name="android.intent.category.browsable"/> </intent-filter> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity>
Comments
Post a Comment