Why does it work on the Android 15 Emulator but not on the Android 16 Emulator? #13187
Replies: 1 comment 1 reply
-
Hi Tatsukiyoshi, Looking at your logs, this appears to be related to network request handling changes in Android 16. The "Sending request for url" error suggests a networking permission or security policy difference between Android 15 and 16. Here are some things to try:
"android": {
"usesPermissions": [
"android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE"
]
}
<application
android:usesCleartextTraffic="true"
...>
This is likely a compatibility issue with the newest Android version. The Tauri team might still be working on full Android 16 support. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why does it work on the Android 15 Emulator but not on the Android 16 Emulator?
Do I need to do anything extra for Android 16?
In Android 16 Emulator, I get the "Sending request for url" error.
Android 15
Android 16
Beta Was this translation helpful? Give feedback.
All reactions