PluginManager

Types

Link copied to clipboard
data class OnlinePluginData(val savedData: PluginData, val onlineData: Pair<String, SitePlugin>)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val lock: Mutex
Link copied to clipboard
Link copied to clipboard
const val TAG: String
Link copied to clipboard

Functions

Automatically download plugins not yet existing on local

Reloads all local plugins and forces a page update, used for hot reloading with deployWithAdb

Use updateAllOnlinePluginsAndLoadThem

DO NOT USE THIS IN A PLUGIN! It may case an infinite recursive loop lagging or crashing everyone's devices. If you use it from a plugin, do not expect a stable jvmName, SO DO NOT USE IT!

Needs to be run before other plugin loading because plugin loading can not be overwritten

Link copied to clipboard

This can be used to override any extension loading to fix crashes!

Link copied to clipboard

Deletes all generated oat files which will force Android to recompile the dex extensions. This might fix unrecoverable SIGSEGV exceptions when old oat files are loaded in a new app update.

Link copied to clipboard
suspend fun deletePlugin(file: File): Boolean
Link copied to clipboard
suspend fun deleteRepositoryData(repositoryPath: String)
Link copied to clipboard
suspend fun downloadPlugin(activity: Activity, pluginUrl: String, internalName: String, file: File, loadPlugin: Boolean): Boolean
suspend fun downloadPlugin(activity: Activity, pluginUrl: String, internalName: String, repositoryUrl: String, loadPlugin: Boolean): Boolean
Link copied to clipboard
fun getPluginPath(context: Context, internalName: String, repositoryUrl: String): File

This should not be changed as it is used to also detect if a plugin is installed!

Link copied to clipboard

Spits out a unique and safe filename based on name. Used for repo folders (using repo url) and plugin file names (using internalName)

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
suspend fun loadSinglePlugin(context: Context, apiName: String): Boolean
Link copied to clipboard
fun unloadPlugin(absolutePath: String)