我有一个apk文件,我想反编译。我尝试了Smali2Java和apktool但是当我检查反编译文件时,它们都只包含变量和函数的定义。例如:
<code>
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.app.Service;
import android.os.PowerManager;
import android.app.Notification;
import android.os.IBinder;
public class VoiceService extends Service {
private final md a;
private boolean b;
private PowerManager.WakeLock c;
private static final Object d;
private long e;
private String f;
private PowerManager.WakeLock g;
private final BroadcastReceiver h;
private static final String[] z;
static {
}
public int onStartCommand(Intent p1, int p2, int p3);
class VoiceService$2 extends BroadcastReceiver {
final VoiceService a;
}
}
</code>
有什么问题?感谢