Reputation: 1
I'm working on an app to capture information into files.
It runs well on my three android phones.
I can find the files on the phones.
I'm trying to get it running on my Chromebook (Acer 514).
I'm monitoring the log using:
adb logcat debug
`/data/user/0/com.appname.capture/files/`
`/data/data/com.appname.capture/files/`
`...\Internal storage\Android\data\com.appname.capture\files\`
#1) Is there a way to "see" the files over USB? #2) Where are the files on a Chromebook?
I'm using Kotlin in Android Development Studio (current).
I'm using
val outPath = filesDir
and then I add subdirs to create the output file name.
filesDir is from the java.io.File import, I think i remember seeing.
The files are there because I close the app and re-open it and it loads the files saved.
Thanks in advance.
Upvotes: 0
Views: 23