New widget picker, add support for work profile widgets

This commit is contained in:
MM20
2023-04-07 17:22:38 +02:00
parent 057f0ff8fd
commit 309bee62fd
11 changed files with 612 additions and 121 deletions
@@ -0,0 +1,9 @@
package de.mm20.launcher2
import android.content.pm.PackageManager
import org.koin.android.ext.koin.androidContext
import org.koin.dsl.module
val baseModule = module {
factory<PackageManager> { androidContext().packageManager }
}