You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error occurs on any new cargo tauri android init. This is because one of the dependencies requires compileSdkVersion = 35. Switching to the new version causes this error.
WryActivity.kt:43:24 Type mismatch: inferred type is String? but String was expected
WryActivity.kt:51:24 Type mismatch: inferred type is String? but String was expected
This can be fixed by using .toString(), but it gets overwritten on each recompile.
The text was updated successfully, but these errors were encountered:
This error occurs on any new
cargo tauri android init
. This is because one of the dependencies requirescompileSdkVersion = 35
. Switching to the new version causes this error.This can be fixed by using
.toString()
, but it gets overwritten on each recompile.The text was updated successfully, but these errors were encountered: