How to open APK file in Ubuntu 18.04 - General Questions and Answers

In Ubuntu 16.04, the Archive Manager (file-roller) opened an APK file. You could simply click on the APK and the contents would be displayed, But in 18.04 that capability no longer exists. I have no idea why the Ubuntu developers removed that capability. Now I know I can open an APK file in 18.04 by renaming it to a ZIP file, but I am still searching for a Linux app that can open an APK. Any recommendations (unless it involves java) are welcome. Thanks.

Related

[Request] Unpack .RARs

Anyone know of an archive manager that supports unpacking password protected .RARs?
abcdfv said:
Anyone know of an archive manager that supports unpacking password protected .RARs?
Click to expand...
Click to collapse
WinRAR, 7zip
afazel said:
WinRAR, 7zip
Click to expand...
Click to collapse
Those aren't for android though
I'm afraid that I don't think there is one. You're probably stuck using a computer.
Or you could try to get unrar (linux command line) running on your phone and then do this from the command line
Code:
unrar e -p{password} file.rar
Let me know if you get unrar compiled on your phone
Originally Posted by Poodulz over at AndroidCommunity
Well try this out, download any .rar file you want from the internet to your Hero, open up opera browser and point it at http://www.unzip.co.nr/
Upload the .rar and click the button
It will upload it to the site and then decompress it for you, then you can download the decompressed file and voila, bobs your uncle, your shiny file is ready for use.
Updates by me.
quick search in market, gave me Unrar from Twanky Deuce Software
I use AndroZip for zips and rars, works well
Unrar is closed source, can't get it compiled for ARM.
Unrar and Androzip don't support passworded files.

android sdk and ubuntu

Hi,
I have a question. I want to look at my apps on ubuntu and have installed the android sdk and can get it to boot. However, i cannot install any applications on it. I downloaded a system.img which I think I need to move to the .android folder and specifically into that avd folder.
However, where do I find this folder in ubuntu? I know where it is put for windows and can do it on a windows operating machine.
Thanks for the help
In nautilus (the file manager) click on view > show hidden files. This will allow you to see all the hidden directories. In linux, directories that being with a "." are hidden.

[TOOL] Simple Windows command line sign script

Hello, everybody!
I've wrote simple batch script for signing apk and zip to be used in windows console.
There's nothing special, I just found it more handy for me, since I prefer to use Far Manager, not Windows Explorer and because I don't like right-clicks
To install it, extract contents of attached file somewhere into your path.
Then you can sign files simply typing in Far Manager (or windows console):
Code:
sign filename1.zip filename2.zip filename3.zip ...
It will create signed files filename1.signed.zip, filename2.signed.zip and so on.

[Q] How to modify any android apk file?

I use Bluestacks 0.9.11.4119 . I Install android applications and games, from root folder (i.e. device/android/data/data) i copy all the folders to windows directory (i.e. publicfolder/pictures), now many of the apps or games have two type of similar files and i need to see what's inside of the files,
1st.- .so files and database files
2nd.- some of the files have no extension so if i open it on notepad then it comes in Alphanumeric symbolic format,i think its encrypted so i am not able to see even i have tried many language decrypter but failed
3rd.- how to dissemble the apk file and how to modify it.
4th.- how to read XML file of android apps, when i open it on notepad or Microsoft XML it shows error.
I want to learn something so please help me with these issues, and thank you for previous help
To edit any apk is necessary Apktool. Look this guide and try edit:
http://www.xda-developers.com/decompile-edit-and-recompile-in-one-tool-with-apk-studio/
gamer22881 said:
I use Bluestacks 0.9.11.4119 . I Install android applications and games, from root folder (i.e. device/android/data/data) i copy all the folders to windows directory (i.e. publicfolder/pictures), now many of the apps or games have two type of similar files and i need to see what's inside of the files,
1st.- .so files and database files
2nd.- some of the files have no extension so if i open it on notepad then it comes in Alphanumeric symbolic format,i think its encrypted so i am not able to see even i have tried many language decrypter but failed
3rd.- how to dissemble the apk file and how to modify it.
4th.- how to read XML file of android apps, when i open it on notepad or Microsoft XML it shows error.
I want to learn something so please help me with these issues, and thank you for previous help
Click to expand...
Click to collapse
In addition to apktool (thanks, @kaiodduarte), you're also going to need a good text editor (I use Notepad++), an archive manager (like 7zip or WinRAR), and the ZipSigner app for your device.
ИΘΘK¡€ said:
In addition to apktool (thanks, @kaiodduarte), you're also going to need a good text editor (I use Notepad++), an archive manager (like 7zip or WinRAR), and the ZipSigner app for your device.
Click to expand...
Click to collapse
thank you for the advice but i have 1 worries
if the text file or a file is encrypted the how is notepad++ is going to help me..??
gamer22881 said:
thank you for the advice but i have 1 worries
if the text file or a file is encrypted the how is notepad++ is going to help me..??
Click to expand...
Click to collapse
It will help you with actually being able to make edits to text files without screwing up all of the line endings and encoding.

Add APK - repack system.img

I was looking for a similar topic but I did not find one. Refers to problems with running applications added to "system.img".
I bought UMIDIG S for my father-in-law. It is based on a mediatec chipset. Unfortunately, soft is tragic, and there is no full translation, so I decided to bury it a bit in "system.img".
I can easily install the file in Linux and make changes in it. I can delete applications, I can make changes in configuration files and "buikd.prop".
Unfortunately, all APK files were uploaded to "system.img" even though I set permissions 755 for directories, and 644 for directories. Although the files are root: root, after uploading such "system.img" none of these applications works for the phone. The system sees them and tries to load. Unfortunately, applications hang because of errors. The system informs that the application hangs, and does not load its window. The icons of these applications and the names do not appear either (applications have green robocik as icon, and domain name, e.g. com.android.clock ....)
I am asking for advice. How to add APK files to the unzipped "system.img" so that after packing and uploading to the phone there were no errors ???
Do you have found how add app in system.img?
It's all around, but you can replace apps with others. In the linux system, unpack the img, and mount them. Then you can freely rename files as well as move files within the .img mount point
I chose the applications or other files I did not need, and moved them to the directories (which I named my applications). If the application needed libraries, you also had to get files in a similar way, and place them in arm or arm64 directories.
Then prepared files "stuffed" with data, using the command DD. That is, dd if = (source file) of = (the recipient file at the system.img mount point).
Thanks for reply, so this only on Linux? For Windows there is something?
Markosv76 said:
Thanks for reply, so this only on Linux? For Windows there is something?
Click to expand...
Click to collapse
I do not know, I do not use Windows. Certainly you can in a similar way from BSD systems, probably from Android and MacOS. I read something that Microsoft can somehow support linux shell, but I do not know the details. You can always use some distribution that works with a pendrive.
Thanks, I will try again
Markosv76 said:
Thanks, I will try again
Click to expand...
Click to collapse
You can use Virtual Box to run a Linux distro inside Windows or you can try using Cygwin.
Sent from my LGL84VL using Tapatalk
jaroslawstrauchmann said:
I was looking for a similar topic but I did not find one. Refers to problems with running applications added to "system.img".
I bought UMIDIG S for my father-in-law. It is based on a mediatec chipset. Unfortunately, soft is tragic, and there is no full translation, so I decided to bury it a bit in "system.img".
I can easily install the file in Linux and make changes in it. I can delete applications, I can make changes in configuration files and "buikd.prop".
Unfortunately, all APK files were uploaded to "system.img" even though I set permissions 755 for directories, and 644 for directories. Although the files are root: root, after uploading such "system.img" none of these applications works for the phone. The system sees them and tries to load. Unfortunately, applications hang because of errors. The system informs that the application hangs, and does not load its window. The icons of these applications and the names do not appear either (applications have green robocik as icon, and domain name, e.g. com.android.clock ....)
I am asking for advice. How to add APK files to the unzipped "system.img" so that after packing and uploading to the phone there were no errors ???
Click to expand...
Click to collapse
did you find a solution to this? please reply if yes, I am having the same problem

Categories

Resources