Hello
I added the following code to the manifest so that the app can be selected as the default dialer of the phone and perform dialing operations.
By the way, I also entered the necessary permissions
But as long as I set the target to 32, everything is fine, but if I set the target to 33, the app is no longer recognized as a dialer, and it seems that these codes do not work!!!
Does anyone know what the problem is?
I added the following code to the manifest so that the app can be selected as the default dialer of the phone and perform dialing operations.
By the way, I also entered the necessary permissions
But as long as I set the target to 32, everything is fine, but if I set the target to 33, the app is no longer recognized as a dialer, and it seems that these codes do not work!!!
Does anyone know what the problem is?
Manifest code:
AddActivityText(Main,
<intent-filter>
<!-- Handle links from other applications -->
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.DIAL" />
<!-- Populate the system chooser -->
<category android:name="android.intent.category.DEFAULT"/>
<!-- Handle links in browsers -->
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="tel" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.DIAL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
)