FilipeOS
FilipeOS

Reputation: 859

Extract files from signed APK - Android Studio Key

I was making an app, it took me a while to almost finish it but my pc broken and I only have the .apk on my Nexus 6P.

I've tried to extract (from phone) and decompile but no luck, I think it's because the .apk was signed with the key (Android Studio)..

Can someone help me? Basically the .apk it's not decompiling properly because it's "empty" since was signed.

enter image description here

EDIT: I tried with dex2jar, SmartJavaDecompiler etc, the result is always the same of the above image.

EDIT2: AppInfo();

package com.android.tools.fd.runtime;

public class AppInfo
{
  public static String applicationClass = null;
  public static String applicationId = "com.domain.bonner";
  public static long token = 3064261470052890181L;
  public static boolean usingApkSplits = false;
}

Upvotes: 2

Views: 1349

Answers (1)

Arbaz Alam
Arbaz Alam

Reputation: 1382

jadx - Dex to Java decompiler Command line and GUI tools for produce Java source code from Android Dex and Apk files.

https://github.com/skylot/jadx

Upvotes: 1

Related Questions