File tree Expand file tree Collapse file tree 5 files changed +336
-283
lines changed
Expand file tree Collapse file tree 5 files changed +336
-283
lines changed Original file line number Diff line number Diff line change 3333 <action android : name =" android.intent.action.MAIN" />
3434 <category android : name =" android.intent.category.LAUNCHER" />
3535 </intent-filter >
36+ <!-- Receive shared text (e.g. from YouTube "Share" intent) -->
37+ <intent-filter >
38+ <action android : name =" android.intent.action.SEND" />
39+ <category android : name =" android.intent.category.DEFAULT" />
40+ <data android : mimeType =" text/plain" />
41+ </intent-filter >
42+
43+ <!-- Handle http/https links for YouTube so the app can appear
44+ as a target for link sharing / deep links -->
45+ <intent-filter android : autoVerify =" true" >
46+ <action android : name =" android.intent.action.VIEW" />
47+ <category android : name =" android.intent.category.DEFAULT" />
48+ <category android : name =" android.intent.category.BROWSABLE" />
49+ <data android : scheme =" https" android : host =" www.youtube.com" />
50+ <data android : scheme =" https" android : host =" youtube.com" />
51+ <data android : scheme =" https" android : host =" youtu.be" />
52+ </intent-filter >
3653 </activity >
3754 <!-- Don't delete the meta-data below.
3855 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
You can’t perform that action at this time.
0 commit comments