I have two questions.
First,
I already tried to find application label from APK file using aapt v0.2(fig1)
But, I cannot find application label from aapt v0.2-3303571
"Application-label:" is removed in v0.2-3303571 and label is empty in application like fig2.
How can I get application label from apk? Must I use only aapt v0.2? I want to use updated aapt.exe
Second,
I called aapt command using processbuilder in JAVA.
ProcessBuilder builder = new ProcessBuilder( command.split("@-") );
builder.redirectErrorStream(true);
Process process = builder.start();
InputStreamReader istream = new InputStreamReader(process.getInputStream());
BufferedReader br = new BufferedReader(istream);
String res = br.readLine();
I received normal result using aapt v0.2 But I received abnoraml string like "'aapt' is ◆◆◆◆◆◆ ?? ◆◆" using aapt v0.2-3303571.
What should I do for solving this problem?