I have an Android app with a receiver that listens for 2 intents, 1 that spawns a thread to write to a file and 1 that spawns a thread to upload the same file to a server.
I have a script on my host machine that needs to manually send intents to the receiver via "adb shell am broadcast". I want to send an intent to write to a file and then send another intent to upload it. However, both creating and uploading the file can take an unknown amount of time and I need to wait for the file to finish being written before uploading it.
Is there a way for my Android app to somehow signal to my host script that writing is done? Or is there a way I can poll the app with my script and the app returns the status of the file?
The only thing I can think of is creating a temp file when the real file is complete. The script polls for the existence of this temp file and uses it as an indicator that the real file is ready to upload.