|
@@ -7,6 +7,7 @@
|
|
|
package {{package}}
|
|
|
|
|
|
import android.os.Bundle
|
|
|
+import android.content.Intent
|
|
|
import app.tauri.plugin.PluginManager
|
|
|
|
|
|
abstract class TauriActivity : WryActivity() {
|
|
@@ -18,4 +19,9 @@ abstract class TauriActivity : WryActivity() {
|
|
|
pluginManager.onNewIntent(intent)
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ override fun onNewIntent(intent: Intent) {
|
|
|
+ super.onNewIntent(intent)
|
|
|
+ pluginManager.onNewIntent(intent)
|
|
|
+ }
|
|
|
}
|