2

I want to show my app as a option when dialing a number - new or contact. I have followed this topic. I have an app with a single activity. Here is the manifest file:

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".SomeActivity" android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

        <intent-filter>
            <action android:name="android.intent.action.CALL_PRIVILIGED" />
            <category android:name="android.intent.category.DEFAULT" />
            <data android:scheme="tel" />
        </intent-filter>
    </activity>

</application>
Community
  • 1
  • 1
ruben
  • 1,745
  • 5
  • 25
  • 47

1 Answers1

1

Finally it worked. I misspelled the word 'PRIVILEGED' as PRIVILIGED

ruben
  • 1,745
  • 5
  • 25
  • 47