Add mobile subs for permission

This commit is contained in:
Owen
2025-12-30 10:31:35 -05:00
parent 6c05d76c88
commit 0168b4796e
4 changed files with 18 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
//go:build android
package permissions
// CheckNativeInterfacePermissions always allows permission on Android.
func CheckNativeInterfacePermissions() error {
return nil
}