Plugins: bringup
This commit is contained in:
@@ -140,6 +140,7 @@ dependencies {
|
||||
implementation(project(":data:currencies"))
|
||||
implementation(project(":data:customattrs"))
|
||||
implementation(project(":data:searchable"))
|
||||
implementation(project(":data:plugins"))
|
||||
implementation(project(":data:themes"))
|
||||
implementation(project(":data:files"))
|
||||
implementation(project(":libs:g-services"))
|
||||
@@ -165,6 +166,7 @@ dependencies {
|
||||
implementation(project(":services:global-actions"))
|
||||
implementation(project(":services:widgets"))
|
||||
implementation(project(":services:favorites"))
|
||||
implementation(project(":services:plugins"))
|
||||
|
||||
// Uncomment this if you want annoying notifications in your debug builds yelling at you how terrible your code is
|
||||
//debugImplementation(libs.leakcanary)
|
||||
|
||||
@@ -27,6 +27,8 @@
|
||||
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
|
||||
<uses-permission android:name="de.mm20.launcher2.permission.USE_PLUGINS" />
|
||||
|
||||
<application
|
||||
android:name=".LauncherApplication"
|
||||
android:allowBackup="true"
|
||||
@@ -35,10 +37,10 @@
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:requestLegacyExternalStorage="true"
|
||||
android:resizeableActivity="true"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/LauncherTheme"
|
||||
android:usesCleartextTraffic="true"
|
||||
android:resizeableActivity="true"
|
||||
tools:ignore="GoogleAppIndexingWarning">
|
||||
|
||||
<meta-data
|
||||
|
||||
@@ -27,6 +27,8 @@ import de.mm20.launcher2.debug.initDebugMode
|
||||
import de.mm20.launcher2.globalactions.globalActionsModule
|
||||
import de.mm20.launcher2.notifications.notificationsModule
|
||||
import de.mm20.launcher2.permissions.permissionsModule
|
||||
import de.mm20.launcher2.data.plugins.dataPluginsModule
|
||||
import de.mm20.launcher2.plugins.servicesPluginsModule
|
||||
import de.mm20.launcher2.preferences.preferencesModule
|
||||
import de.mm20.launcher2.searchactions.searchActionsModule
|
||||
import de.mm20.launcher2.services.favorites.favoritesModule
|
||||
@@ -86,6 +88,8 @@ class LauncherApplication : Application(), CoroutineScope, ImageLoaderFactory {
|
||||
wikipediaModule,
|
||||
servicesTagsModule,
|
||||
widgetsServiceModule,
|
||||
dataPluginsModule,
|
||||
servicesPluginsModule,
|
||||
backupModule,
|
||||
)
|
||||
)
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<permission
|
||||
android:name="de.mm20.launcher2.permission.USE_PLUGINS"
|
||||
android:label="Use Kvaesitso plugins"
|
||||
android:protectionLevel="dangerous" />
|
||||
|
||||
</manifest>
|
||||
Reference in New Issue
Block a user