4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

android版minecraftのアプリケーション内セーブデータを脱獄なしで取り出す方法

Posted at

minecraftのセーブデータをアプリケーションに指定した場合
外部から参照できないフォルダに格納されて取り出しが難しくなリます。
脱獄してない端末の場合セーブデータのフォルダにアクセスできないからです。

以下のコマンドを順番に実行します。

  1. adb backup -nocompress -f backup.ab com.mojang.minecraftpe
  2. java -jar abe.jar unpack backup.ab backup.tar
  3. tar xvf backup.tar
  4. cd apps\com.mojang.minecraftpe\r\games\com.mojang\minecraftWorlds

Android Backup Extractorのabe.jarを使用しています。

adbのバージョンは以下です。
 Android Debug Bridge version 1.0.41
 Version 29.0.4-5871666

adbを使うためあらかじめ端末側の設定とAndroid Studioのインストールが必要です。

テストはマックとandroid10で実施しました。

4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?