Skip to content

Instantly share code, notes, and snippets.

@ZieIony
Created April 8, 2020 22:22
Show Gist options
  • Select an option

  • Save ZieIony/9a9fe46a4c96992165a118f77553e1e2 to your computer and use it in GitHub Desktop.

Select an option

Save ZieIony/9a9fe46a4c96992165a118f77553e1e2 to your computer and use it in GitHub Desktop.
abstract class PluginProvider : ContentProvider() {
abstract fun getPlugin(): Plugin
override fun onCreate(): Boolean {
PluginManager.registerPlugin(getPlugin())
return true
}
// ... other provider methods
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment