mirror of
https://github.com/jrpie/Launcher.git
synced 2025-04-04 19:34:30 +02:00
fix #135
This commit is contained in:
parent
b4608ef153
commit
5d695ec0ea
1 changed files with 5 additions and 2 deletions
|
@ -38,6 +38,8 @@ import androidx.core.net.toUri
|
||||||
|
|
||||||
const val LOG_TAG = "Launcher"
|
const val LOG_TAG = "Launcher"
|
||||||
|
|
||||||
|
const val REQUEST_SET_DEFAULT_HOME = 42
|
||||||
|
|
||||||
fun isDefaultHomeScreen(context: Context): Boolean {
|
fun isDefaultHomeScreen(context: Context): Boolean {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
val roleManager = context.getSystemService(RoleManager::class.java)
|
val roleManager = context.getSystemService(RoleManager::class.java)
|
||||||
|
@ -62,8 +64,9 @@ fun setDefaultHomeScreen(context: Context, checkDefault: Boolean = false) {
|
||||||
&& !isDefault // using role manager only works when µLauncher is not already the default.
|
&& !isDefault // using role manager only works when µLauncher is not already the default.
|
||||||
) {
|
) {
|
||||||
val roleManager = context.getSystemService(RoleManager::class.java)
|
val roleManager = context.getSystemService(RoleManager::class.java)
|
||||||
context.startActivity(
|
context.startActivityForResult(
|
||||||
roleManager.createRequestRoleIntent(RoleManager.ROLE_HOME)
|
roleManager.createRequestRoleIntent(RoleManager.ROLE_HOME),
|
||||||
|
REQUEST_SET_DEFAULT_HOME
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue