Usually, when you save files in the sandbox of your application, they are saved in the βfilesβ folder. So, you full path should be:
/data/data/com.android.myApp/files/anotherApp.apk
If you are working on an emulator, you can make the adb ls shell to confirm if the file is valid:
adb shell "ls /data/data/com.android.myApp/files"
source share