KDX2
KDX2

Reputation: 1033

Recover an Android project from an installed app

Recently I've switched to windows 10 by performing a clean install, which means that I've wiped the whole HDD. Sadly I forgot to backup a project built up in Android Studio but I have it installed and running on my phone.

Is it possible to somehow recover my project from what is installed on my smart device?

If yes, how?

Upvotes: 0

Views: 3472

Answers (2)

Viral Patel
Viral Patel

Reputation: 33438

Step 1. Generate an apk from the installed app on your "smart" phone.

Use App Backup & Restore to do this. There are several other apps that allow you to create apk installers from installed apps. Just search on play store for "backup apps".

Step 2. Decompile your app to get the source code:

This is already answered on this SO Post (several options)

(Optional) Step 3. Backup on source control right away

Use free source control services like bitbucket to backup and avoid hassles like these in future.

Upvotes: 3

Damini Mehra
Damini Mehra

Reputation: 3347

try this step: step1 : open this http://www.javadecompilers.com/

step2: upload apk on this site

step3: decompile it

step4: get your project in zip folder.

Upvotes: 1

Related Questions