admin管理员组

文章数量:1289881

I need to make a backup from an Android App

I have to get a backup from a self-developed Android app. I know how to do it using a PC with ADB, but this time isn't possible to use ADB because the device is far away and the app is already in production. We can only connect with AnyDesk. Anyone know how can I get the data inside the Android device?

I need to make a backup from an Android App

I have to get a backup from a self-developed Android app. I know how to do it using a PC with ADB, but this time isn't possible to use ADB because the device is far away and the app is already in production. We can only connect with AnyDesk. Anyone know how can I get the data inside the Android device?

Share Improve this question asked Feb 20 at 15:25 Stiven Guillermo Bueno ReinosoStiven Guillermo Bueno Reinoso 131 silver badge3 bronze badges 1
  • Backup via adb is no longer possible on recent devices and assuming your app is a non-debuggable version and has a targetSDK 31+ stackoverflow/a/74388896/150978 – Robert Commented Feb 20 at 15:36
Add a comment  | 

1 Answer 1

Reset to default 2

Assuming the app database is located in the app private folder below /data/data/ then I see only one option:

Develop an export function for your app and make it available to that (or all) customer.

Assuming you have published the app via Play Store you can e.g. create a test release and invite the customer that runs the phone where the database should be exported.

本文标签: SQLite backup inside AndroidStack Overflow