mirror of
https://github.com/SimpleMobileTools/Simple-Launcher.git
synced 2025-04-03 12:51:25 +02:00
49 lines
1.5 KiB
Kotlin
49 lines
1.5 KiB
Kotlin
package com.simplemobiletools.launcher.extensions
|
|
|
|
import android.app.Activity
|
|
import android.content.Intent
|
|
import android.net.Uri
|
|
import android.provider.Settings
|
|
import com.simplemobiletools.commons.extensions.showErrorToast
|
|
import com.simplemobiletools.launcher.activities.SettingsActivity
|
|
import com.simplemobiletools.launcher.helpers.UNINSTALL_APP_REQUEST_CODE
|
|
import com.simplemobiletools.launcher.models.HomeScreenGridItem
|
|
|
|
fun Activity.launchApp(packageName: String) {
|
|
// if this is true, launch the app settings
|
|
if (packageName == this.packageName) {
|
|
startActivity(Intent(applicationContext, SettingsActivity::class.java))
|
|
return
|
|
}
|
|
|
|
val launchIntent = packageManager.getLaunchIntentForPackage(packageName)
|
|
try {
|
|
startActivity(launchIntent)
|
|
} catch (e: Exception) {
|
|
showErrorToast(e)
|
|
}
|
|
}
|
|
|
|
fun Activity.launchAppInfo(packageName: String) {
|
|
Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS).apply {
|
|
data = Uri.fromParts("package", packageName, null)
|
|
startActivity(this)
|
|
}
|
|
}
|
|
|
|
fun Activity.uninstallApp(packageName: String) {
|
|
Intent(Intent.ACTION_DELETE).apply {
|
|
data = Uri.fromParts("package", packageName, null)
|
|
startActivityForResult(this, UNINSTALL_APP_REQUEST_CODE)
|
|
}
|
|
}
|
|
|
|
fun Activity.launchShortcutIntent(item: HomeScreenGridItem) {
|
|
try {
|
|
val intent = Intent.parseUri(item.intent, 0)
|
|
startActivity(intent)
|
|
} catch (e: Exception) {
|
|
showErrorToast(e)
|
|
}
|
|
}
|