cloning android games

741chandlerw

Prominent
Mar 7, 2018
52
0
640
how could i clone just one game over from an amazon fire 5th gen to a Samsung galaxy s3 via command prompt? I've tried to use android cloning apps, but my tablet wont take it if its the last thing it does.
 
Solution
I have no idea about Amazon phones. But if it has developer mode then enable it and use ADB
http://developer.android.com/guide/developing/tools/adb.html

Open Command Prompt where ADB is located.

use command: "adb shell pm list packages"

It will list all installed packages(apps) on your phone, notice package name of your app and use cmd

"adb shell pm path com.example.appyouneed"

It will give you package path then use cmd

"adb pull /data/app/com.example.appyouneed-1/base.apk"

replace path /data/app by whatever path you get for apk file, apk will be copied where adb is located, transfer to S3 and install or as you want by cmd prompt use:
"adb install app.apk"

making sure s3 is in developer mode as well.
I would understand your question if you're trying to transfer a game from Samsung to Fire. Amazon app store is much less populated than Google Play.

You will need to side-load app-backup application onto your Fire, and backup your game, then transfer it to your Samsung. Since this is gray area, I will stop here.
 
I have no idea about Amazon phones. But if it has developer mode then enable it and use ADB
http://developer.android.com/guide/developing/tools/adb.html

Open Command Prompt where ADB is located.

use command: "adb shell pm list packages"

It will list all installed packages(apps) on your phone, notice package name of your app and use cmd

"adb shell pm path com.example.appyouneed"

It will give you package path then use cmd

"adb pull /data/app/com.example.appyouneed-1/base.apk"

replace path /data/app by whatever path you get for apk file, apk will be copied where adb is located, transfer to S3 and install or as you want by cmd prompt use:
"adb install app.apk"

making sure s3 is in developer mode as well.
 
Solution