Xposedを設置するための2つのことをしました。まず、 99887766544330
を点滅させてから.apkファイルをインストールしました。アプリ自体をアンインストールできるが、.zipのフラッシュファイルを消去する方法は?
また、モジュールはどこに保存されていますか?モジュールを完全に削除する方法?
装置はLG G3 D855です。曇りのG3 ROMで実行されています。
Xposedを設置するための2つのことをしました。まず、 99887766544330
を点滅させてから.apkファイルをインストールしました。アプリ自体をアンインストールできるが、.zipのフラッシュファイルを消去する方法は?
また、モジュールはどこに保存されていますか?モジュールを完全に削除する方法?
装置はLG G3 D855です。曇りのG3 ROMで実行されています。
I did two things to install Xposed. Firstly, I flashed xposed-v75-sdk21-x86.zip
and then installed the .apk file. I can now uninstall the app itself but how can I erase the flashed file of the .zip?
Also, where are the modules stored? How to delete the modules completely?
Device is LG G3 D855. Running on Cloudy G3 ROM.
注: Xposedモジュールによって引き起こされたブートループの問題を解決することを検索すると、私の答えこちらはあなたを助けてくれるでしょう。
アプリ自体をアンインストールすることができますが、.zipのフラッシュファイルを消去する方法は?
このスレッドの最初の投稿で添付ファイルを参照してください。 。デバイスのCPUアーキテクチャに関連して、アンインストーラアーカイブをダウンロードして、カスタムリカバリからフラッシュします。インストーラのアーカイブが行われた変更を元に戻します。
本質的には、インストーラアーカイブは元のシステムファイルを保持しますが、名前<コード> 998877666544330 に追加するか、それらをアーカイブに変換します(非公式インストーラーDO)。その後、変更されたファイルを自分の場所に配置します。すべてのアンインストーラは変更されたファイルと追加ファイルを削除し、バックアップされたファイルを元の自己に戻します。
該当するセクションのアンインストーラスクリプト
<前> エコー " - ファイルの復元/削除" RM -F /システム/ Xposed.prop. RM -F / System/Framework/XposedBridge.jar. RESTORE_LINK / SYSTEM / BIN / APP_PROCESS32 0 2000 0755 U:OBJECT_R:ZYGOTE_EXEC:S0 RESTORE_BACKUP /システム/ BIN / DEX2OAT 0 2000 0755 U:OBJECT_R:DEX2OAT_EXEC:S0 RESTORE_BACKUP /システム/ BIN / OATDUMP 0 2000 0755 RESTORE_BACKUP /システム/ BIN / PATCHOAT 0 2000 0755 U:OBJECT_R:DEX2OAT_EXEC:S0 RESTORE_BACKUP / STEM / LIB / LIBART.SO 0 0 644 restore_backup /system/lib/libart-compiler.so 0 0 0644 RESTORE_BACKUP / STEM / LIB / LIBART-DISASSEMBLER.SO 0 0 0644 RESTORE_BACKUP / STEM / LIB / LIBSIGCHAIN.SO 0 0 0644 RESTORE_BACKUP / STEM / LIB / LIBXPOSS_ART.SO 0 0 644 [$ IS64ビット]の場合それから RESTORE_LINK / SYSTEM / BIN / APP_PROCESS64 0 2000 0755 U:OBJECT_R:ZYGOTE_EXEC:S0 RESTORE_BACKUP / STEM / LIB64/LIBART.SO 0 0 0 644 restore_backup /system/lib64/libart-compiler.so 0 0 0644 RESTORE_BACKUP / STEM / LIB64/LIBART-DISASSEMBLER.SO 0 0 644 RESTORE_BACKUP / STEM / LIB64/LIBSIGCHAIN.SO 0 0 644 RESTORE_BACKUP /システム/ lib64/libxposed_art.so 0 0 0644 巫リカバリモードからAndroidのファイルに対して適切なSELinuxコンテキストを設定することについての知識は、インストーラが変更されたファイルをマッピングするだけで、コマンドラインを使用して変更を元に戻して正しいコンテキストを設定することができます。アンインストーラは必要ありません。
注:公式Xposed Frameworkを使用していない場合は、アンインストーラはあなたのために機能しないかもしれません。予期しない問題さえも発生する可能性があります。ベストは、アンインストーラのためにWebを検索することです。
また、モジュールはどこに保存されていますか?
998877666544333
の下にデータディレクトリが見つかります。モジュールを完全に削除する方法?
Xposedモジュールの削除は、Androidからユーザーがインストールされているアプリを削除する以外に異なりません。そのため、通常のアプリを削除するために使用する任意のテクニックを使用できます。
998877666544355
のファイル 99887776655443344334
は、モジュールをモジュールに変更して修正フレームワークと対話するためのものです。
ファイルを使用する <コード> /data/data6 <コード> 99887766544337 にある。 Xposed Frameworkを無効にするには、リカバリモードからファイルをフラッシュ(カスタム回復が必要です)。 そのようなファイルがない場合は、公式スレッド
本質的に、<コード> 99887665544339 I..eは、修正された<コード> 998877666543310 を削除し、元のファイルをその栄光に戻します。 インストーラアプリは削除されません。 あなたはあなたの変更を加えることができます 回復モードでADBを使用しています。
ここでのモジュールの概念は、上記の節で覆われているものとは異なります。
Note: provided that you end up at this post in search of solving the bootloop issue caused by an Xposed module, my answer here would better help you .
I can now uninstall the app itself but how can I erase the flashed file of the .zip?
See the attached files in the first post of this thread. In relevance to your device's CPU architecture, download the uninstaller archive and flash it from the custom recovery. It would undo the changes the installer archive made.
In essence, the installer archive keeps the original system files but appends in their name .orig
or convert them into archives (unofficial installers do). It then places its modified files at their location. All uninstaller does is remove the modified and extra files and change the backed up files back to their original self.
Relevant section from the uninstaller script
echo "- Restoring/removing files" rm -f /system/xposed.prop rm -f /system/framework/XposedBridge.jar restore_link /system/bin/app_process32 0 2000 0755 u:object_r:zygote_exec:s0 restore_backup /system/bin/dex2oat 0 2000 0755 u:object_r:dex2oat_exec:s0 restore_backup /system/bin/oatdump 0 2000 0755 restore_backup /system/bin/patchoat 0 2000 0755 u:object_r:dex2oat_exec:s0 restore_backup /system/lib/libart.so 0 0 0644 restore_backup /system/lib/libart-compiler.so 0 0 0644 restore_backup /system/lib/libart-disassembler.so 0 0 0644 restore_backup /system/lib/libsigchain.so 0 0 0644 restore_backup /system/lib/libxposed_art.so 0 0 0644 if [ $IS64BIT ]; then restore_link /system/bin/app_process64 0 2000 0755 u:object_r:zygote_exec:s0 restore_backup /system/lib64/libart.so 0 0 0644 restore_backup /system/lib64/libart-compiler.so 0 0 0644 restore_backup /system/lib64/libart-disassembler.so 0 0 0644 restore_backup /system/lib64/libsigchain.so 0 0 0644 restore_backup /system/lib64/libxposed_art.so 0 0 0644 fi
If you've the knowledge of setting the appropriate SELinux context for a file in Android from recovery mode, you can simply map the files the installer would've changed, revert the changes using command-line and set the correct context. No uninstaller would be required.
Note: If you're not using the official Xposed Framework then the uninstaller may not work for you. It may even cause unforeseen issues. Best is to search the web for the uninstaller.
Also, where are the modules stored?
/sdcard/Download
./data/app
or the locations covered here by Izzy. Alike every app, there data directory would be found under /data/data
.How to delete the modules completely?
Deleting an Xposed module is no different than removing any user installed app from Android. So, you can use any technique that you would use to remove an ordinary app.
Note that the file XposedBridge.jar
under /system/framework/
is what provides modules the necessary APIs to interact with the modified framework.
Use the file Xposed-Disabler-Recovery.zip
located at /sdcard/Android/data/de.robv.android.xposed.installer/files
. Flash that file from recovery mode (requires a custom recovery) to disable Xposed Framework. If you don't have such file, download it from the first post of the official thread.
That archive, in essence, changes /system/bin/app_process.orig
to /system/bin/app_process
i.e. it removes the modified app_process
and brings the original file back to its glory. It doesn't delete the Installer app. You can make those changes on your own too using adb in recovery mode.
The concept of modules here is no different from what is covered in the above section.
Kitkatまで、このZIPをフラッシュする必要がある( xposed-disabler-recovery.zip
モジュールをアンインストールする場合は、(インストーラから) modules を選択すると、削除するモジュールを押すとKitkatに長くなります。もちろん、変更は再起動後に行われ、私は同じバージョンのAndroidのために同じであると仮定しています。モジュールは izzyさんのコメント Kitkat。
Xposed Frameworkをアンインストールする方法Android Lollipopガイド2015年8月21日
ロリポップ上のXposed Frameworkは、Xposed Installer APKファイルがシステム上にフレームワークを自動的にインストールするとは異なり、カスタムリカバリを通して手動でインストールする必要があります。そのため、LollipopでXposed Frameworkをアンインストールすると、TWRPまたはCWMなどのカスタムリカバリを使用して Xposed Uninstallerスクリプトをフラッシュする必要があります。 ... xposedアンインストーラはARMのようなデバイスで異なります。 ARM64、x86。ダウンロードセクションのデバイスのアンインストーラスクリプトを見つけます。また、アンインストーラスクリプトは、Androidバージョン5.0(SDK 21)と5.1(SDK 22)とは異なります。
さらにアンインストールの指示とスクリプトを提供します。
私はキットカットにあり、これをテストする方法はありません。これを読んであなたの質問を見ている偶然でした。
Until KitKat, to disable the framework you need to flash this zip (stored on your /sd
at installation Xposed-Disabler-Recovery.zip .
As far as uninstalling the modules goes, selecting Modules, (from installer), long pressing the module(s) to be removed does it in KitKat. Of course, changes take place after reboot, and I am assuming the same holds for higher versions of Android. Modules reside as per Izzy's comment for KitKat.
Quoting extracts from How to Uninstall Xposed Framework on Android Lollipop Guides Aug 21, 2015:
Xposed Framework on Lollipop needs to be installed manually through a Custom Recovery unlike in Jelly Bean and Kitkat where the Xposed installer apk file would install the framework on your system automatically. So uninstalling Xposed Framework on Lollipop would require you to flash an Xposed Uninstaller Script using a Custom Recovery like TWRP or CWM.... Take note that Xposed Uninstaller are different for different devices like arm, arm64, x86. Find the Uninstaller Script for your device in the Downloads section. Also, Uninstaller Scripts are different for Android versions 5.0 (SDK 21) and 5.1 (SDK 22).
It further provides uninstall instructions and scripts.
I am on KitKat and have no way of testing this. It was a coincidence reading this and later seeing your question.
© 2022 cndgn.com All Rights Reserved. Q&Aハウス 全著作権所有