Where are the files manipulated by the Tauri plugin stored on Android? I'm having trouble finding the file path when trying to operate on the file using Kotlin. For example, even when I use the Store plugin with await load("cookie.json"):
val cookieFile = File(applicationContext.filesDir, "cookie.json")
println("cookieFileのpath: ${cookieFile.absolutePath}")
// /data/user/0/jp.takos.app/files/cookie.json
println("cookieFile exists: ${cookieFile.exists()}")
// 0
It appears that the file does not exist.
However, since the plugin is working correctly, the file must be saved somewhere.
Note: I translated the text, so there might be some inaccuracies.