About 259,000 results
Open links in new tab
  1. How to view the contents of an Android APK file?

    Aug 30, 2010 · Actually the apk file is just a zip archive, so you can try to rename the file to theappname.apk.zip and extract it with any zip utility (e.g. 7zip). The androidmanifest.xml file and the …

  2. Where is android studio building my .apk file? - Stack Overflow

    Jul 17, 2013 · In case anyone wonders where the file winds up, as I did before I tried this, when the process is complete, there's a small dialog that comes up in the lower right corner of Android studio …

  3. Reverse engineering from an APK file to a project

    Aug 24, 2017 · I accidently erased my project from Eclipse, and all I have left is the APK file which I transferred to my phone. Is there a way to reverse the process of exporting an application to the .apk …

  4. How to add trusted root CA to Docker alpine - Stack Overflow

    Apr 23, 2021 · First step is to be able download anythink using apk. Second step (the step you are asking) is to download ca-certificates tool and then add CA standard way with calling update-ca …

  5. How do I get an apk file from an Android device? - Stack Overflow

    Oct 27, 2010 · How do I get the apk file from an android device? Or how do I transfer the apk file from device to system?

  6. Read the package name of an Android APK - Stack Overflow

    Jun 9, 2011 · I need to get the package name of an Android APK. I have tried to unzip the APK and read the contents of the AndroidManifest.xml file but it seems that it's not a text file. How can I extract the A...

  7. How do I get the APK of an installed app without root access?

    I'm trying to extract the APK file of an installed Android app WITHOUT root permissions. I thought that this was impossible, because all APK files for non-system-apps are located in /data/app, and

  8. How do I verify that an Android apk is signed with a release ...

    Nowadays, you must use apksigner to verify the signature of an APK if you want to be sure that the result is correct. Starting from Android 7.0, new signature schemes have been introduced that cannot …

  9. /bin/sh: 1: apk: not found while creating docker image

    Nov 6, 2016 · As larsks mentions, apk is for Alpine distributions and you selected FROM ubuntu:trusty which is Debian based with the apt-get command. Change your FROM line to FROM alpine:3.4 to …

  10. Install an apk file from command prompt? - Stack Overflow

    Aug 16, 2011 · The answer to the -d confusion is, both @ZachCase and @ScottStafford are correct. ADB options and ADB command options are different things: adb -d install file.apk installs to the …