Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to tell what technology was used to build an Android app?

Tags:

android

apk

I have an Android App I downloaded and installed, I have also extracted the APK,

Is there some way from the apk file to tell what programming language was used to write the program?

Are there any tools are available to help with this?

What languages can be determined and which ones cannot?

like image 713
zeus Avatar asked Jan 03 '18 08:01

zeus


People also ask

How do I find out what framework an app is using?

First you should find the package name of the app you want to pull from the device. You can use my Android app Power Apk to do this. An alternative way would be to go through each package and dump its manifest with the aapt2 tool which is also part of Android SDK.

What code is Android apps made in?

Java was the default language to write Android apps since the Android platform was introduced in 2008. Java is an object-oriented programming language that was originally developed by Sun Microsystems in 1995 (now, it is owned by Oracle).


2 Answers

You can do a reverse engineering : (https://www.apkdecompilers.com/ or http://www.javadecompilers.com/apk) decompile the apk and see the code and its programming language.

like image 59
Imene Noomene Avatar answered Oct 18 '22 20:10

Imene Noomene


Normally most android app is build using the following texhnologies:---

  1. React Native app
  2. Cordova app
  3. Native java/kotlin app

To determine the technology, you need to decompile the app first using this link

Then look for "assets" folder. Normally, asset folder should be present at the very top of application hierarchy.

Then you can determine the app technology by the following prediction:--

  1. If asset folder is present and there have any file with the extension ".bundle"(mainly the file name is "index.android.bundle") then the app is build using React Native.

  2. If the assets folder contain a folder name "www" and "assets/www" contain the following file/folder structure then it is a cordova app. Click to view the file/folder structure

  3. If neighter 1 or 2 is true then the app may be written using native code, i.e using java/kotlin

like image 21
srs Avatar answered Oct 18 '22 22:10

srs