F
Fischi84
Neues Mitglied
- 0
EDIT:
Moin Moin Leute.
Ich möchte meine App Als standardardbrowser setzen. In der AndroidManifest.xml folgendes hinzugefügt:
und diesen Intent filter:
Leider genügt das nicht, ich kann sie nicht als Standardbrowser auswählen.
Welche Bedingungen muss eine App erfüllen damit ich sie als Standardbrowser auswählen kann?
Android Grandle Version ist: 7.4.0-alpha07 ; 7.5-rc-2
Ich teste die App auf einem OnePlus 8T
Mein Programm ist in Kotlin
Moin Moin Leute.
Ich möchte meine App Als standardardbrowser setzen. In der AndroidManifest.xml folgendes hinzugefügt:
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET"/>
und diesen Intent filter:
Code:
<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.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http"/>
<data android:scheme="https"/>
<data android:mimeType="text/html"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"/>
</intent-filter>
Leider genügt das nicht, ich kann sie nicht als Standardbrowser auswählen.
Welche Bedingungen muss eine App erfüllen damit ich sie als Standardbrowser auswählen kann?
Android Grandle Version ist: 7.4.0-alpha07 ; 7.5-rc-2
Ich teste die App auf einem OnePlus 8T
Mein Programm ist in Kotlin
Zuletzt bearbeitet: