MASTG-TECH-0117 AndroidManifest から情報の取得 (Obtaining Information from the AndroidManifest)
jadx を使用する
jadx --no-src -d out_dir MASTG-DEMO-0001.apk<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" ...>
<uses-sdk
android:minSdkVersion="29"
android:targetSdkVersion="35" />Apktool を使用する
$ apktool d -s -f -o output_dir MASTG-DEMO-0001.apk
I: Using Apktool 2.11.1 on MASTG-DEMO-0001.apk with 8 threads
I: Copying raw classes.dex file...
...
I: Loading resource table...
I: Decoding file-resources...
I: Decoding values */* XMLs...
I: Decoding AndroidManifest.xml with resources...aapt2 を使用する
PreviousMASTG-TECH-0116 APK 署名に関する情報の取得 (Obtaining Information about the APK Signature)NextMASTG-TECH-0126 アプリパーミッションの取得 (Obtaining App Permissions)
Last updated