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

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -