I am using java 1.8 and spring-boot-starter-parent 1.5.1.RELEASE version.
I am trying to get list of permissions from .ipa file. I did fetch Android permissions from .apk, like extracted AndroidManifest.xml from .apk and get get permissions from that xml file.
{
"permissions": [
"android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE",
"android.permission.BLUETOOTH",
"android.permission.BLUETOOTH_ADMIN",
"android.permission.RECEIVE_BOOT_COMPLETED",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_WIFI_STATE",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.BATTERY_STATS",
"android.permission.WAKE_LOCK"
]
}
Like the same way, Is there any way to get permissions for iOS?
I have extracted .ipa file using the java code, it returns the two directories as "Payload" and "Symbols". The Payload directory contains the "Info.plist" file.