I have problem with the http plugin in v2 :
http.fetch not allowed. Permissions associated with this command: http:allow-fetch, http:default
With this mobile config file :
// mobile.json
{
"$schema": "../gen/schemas/mobile-schema.json",
"identifier": "mobile-capability",
"description": "Capability for mobile",
"webviews": [
"main"
],
"windows": [
"main"
],
"platforms": [
"android",
"iOS"
],
"permissions": [
{
"identifier": "http:default",
"allow": [{ "url": "https://*.tauri.app" }],
"deny": [{ "url": "https://private.tauri.app" }]
}
],
"capabilities": [
]
}
