C10udburst 2022-08-09 13:53:12 +02:00
parent 5c5ec4632d
commit c4270c4e2b
2 changed files with 2 additions and 2 deletions

View File

@ -9,6 +9,6 @@ import android.content.Context
class EjaPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner
APIHolder.allProviders.add(EjaTv())
registerMainAPI(EjaTv())
}
}

View File

@ -9,6 +9,6 @@ import android.content.Context
class TestPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner
APIHolder.allProviders.add(ExampleProvider())
registerMainAPI(ExampleProvider())
}
}