@@ -303,6 +303,7 @@
|
||||
<string name="search_provider_bing" translatable="false">Bing</string>
|
||||
<string name="search_provider_sesame" translatable="false">Sesame</string>
|
||||
<string name="search_provider_brave" translatable="false">Brave</string>
|
||||
<string name="search_provider_github" translatable="false">GitHub</string>
|
||||
<string name="app_label">App</string>
|
||||
<string name="website_label">Website</string>
|
||||
<string name="qsb_search_provider_app_required">App required.</string>
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
package app.lawnchair.qsb.providers
|
||||
|
||||
import com.android.launcher3.R
|
||||
|
||||
object GitHub : QsbSearchProvider(
|
||||
id = "github",
|
||||
name = R.string.search_provider_github,
|
||||
icon = R.drawable.ic_github,
|
||||
// todo: Add packageName & className back after https://github.com/orgs/community/discussions/39678 is resolved.
|
||||
packageName = "",
|
||||
website = "https://github.com/search",
|
||||
type = QsbSearchProviderType.WEBSITE,
|
||||
)
|
||||
@@ -124,7 +124,8 @@ sealed class QsbSearchProvider(
|
||||
Wikipedia,
|
||||
Bing,
|
||||
Sesame,
|
||||
Brave
|
||||
Brave,
|
||||
GitHub,
|
||||
)
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user