0

I have two questions.

First, I already tried to find application label from APK file using aapt v0.2(fig1) enter image description here

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. enter image description here

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?

swiftBoy
  • 35,607
  • 26
  • 136
  • 135
이성조
  • 21
  • 1

0 Answers0