Skip to content

Commit

Permalink
Fix authority in LawnchairRecentSuggestionProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Dec 18, 2023
1 parent 655a2de commit d506f23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lawnchair/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@

<provider
android:name="app.lawnchair.search.LawnchairRecentSuggestionProvider"
android:authorities="app.lawnchair.search.LawnchairRecentSuggestionProvider"
android:authorities="${applicationId}.search.LawnchairRecentSuggestionProvider"
android:syncable="true"
android:exported="false" />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package app.lawnchair.search

import android.content.SearchRecentSuggestionsProvider
import com.android.launcher3.BuildConfig

class LawnchairRecentSuggestionProvider : SearchRecentSuggestionsProvider() {
companion object {
const val AUTHORITY = "app.lawnchair.search.LawnchairRecentSuggestionProvider"
const val AUTHORITY = BuildConfig.APPLICATION_ID + ".search.LawnchairRecentSuggestionProvider"
const val MODE = DATABASE_MODE_QUERIES
}

Expand Down

0 comments on commit d506f23

Please sign in to comment.