Eigene App als Standard Browser

  • 2 Antworten
  • Letztes Antwortdatum
F

Fischi84

Neues Mitglied
0
EDIT:

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:
Ich habe es jetzt:

Code:
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.MAIN"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.LAUNCHER"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http"/>
<data android:scheme="https"/>
</intent-filter>

Genau dieser Intent ist dafür notwendig, dann geht's.
 

Ähnliche Themen

K
  • Klax124
Antworten
2
Aufrufe
256
swa00
swa00
Manny87
  • Manny87
Antworten
11
Aufrufe
406
swa00
swa00
FabianDev
Antworten
5
Aufrufe
751
swa00
swa00
Zurück
Oben Unten