While working on an iOS app, in the Xcode Devices panel there exists an option to download/replace the container (basically the app data) of an installed app.
Is there an equivalent mechanism for Android development?
While working on an iOS app, in the Xcode Devices panel there exists an option to download/replace the container (basically the app data) of an installed app.
Is there an equivalent mechanism for Android development?
So I guess by App Data
you mean the data that the app is creating and saving it on the device or emulator (simulator in ios!)? if yes, then you could do that with adb shell
App data is stored at the directory
/data/data/com.you.yourpackagename/
refer to this answer for explained details.