14 lines
565 B
Kotlin
14 lines
565 B
Kotlin
package app.pawlet.config
|
|
|
|
import android.content.BroadcastReceiver
|
|
import android.content.Context
|
|
import android.content.Intent
|
|
|
|
// Empty receiver — its presence is all Lawnchair needs to discover this package
|
|
// as a partner customization provider (MATCH_SYSTEM_ONLY query).
|
|
// Lawnchair then reads res/xml/partner_default_layout.xml from this package.
|
|
// Only works when this APK is installed as a system app (baked into the ROM).
|
|
class PartnerCustomizationReceiver : BroadcastReceiver() {
|
|
override fun onReceive(context: Context, intent: Intent) = Unit
|
|
}
|