Build and Install unsigned apk on device without the development server?

As I am new in react-native so if there is anything wrong in steps let me know. I have build a react native android app using the command as per documentation react-native android while running on device the following command was used react-native run-android which gives me the output of 2 apk files in my … Read more

Get Android .apk file VersionName or VersionCode WITHOUT installing apk

How can I get programmatically get the version code or version name of my apk from the AndroidManifest.xml file after downloading it and without installing it. <manifest xmlns:android=”http://schemas.android.com/apk/res/android” package=”xxx.xx.xxx” android:versionCode=”1″ android:versionName=”1.1″ > For example I want to check if a new version is uploaded on my IIS service, after install it on device, if it … Read more

What is INSTALL_PARSE_FAILED_NO_CERTIFICATES error?

I was trying to change my default/main/startup (whatever you call it) activity by editing the androidmanifest.xml file. All i did was change the android:name property. however, this completely broke the entire app. when I try to install it fails and reads. Installation error: INSTALL_PARSE_FAILED_NO_CERTIFICATES When I tried to change it back to its previous state, … Read more

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 accessing this folder requires root permission. Then I found that there are numerous apps in the Google Play store that seem to have … Read more