fix(opener): use the correct packagename in OpenerPlugin.kt (#2207)

This commit is contained in:
universalappfactory
2024-12-14 17:58:48 +01:00
committed by GitHub
parent 319ef556cd
commit ee0f65de5c
2 changed files with 8 additions and 2 deletions
@@ -0,0 +1,6 @@
---
"opener": patch
"opener-js": patch
---
Fixed OpenerPlugin packagename for android
@@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
package app.tauri.shell
package app.tauri.opener
import android.app.Activity
import android.content.Intent
@@ -27,4 +27,4 @@ class OpenerPlugin(private val activity: Activity) : Plugin(activity) {
invoke.reject(ex.message)
}
}
}
}