Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I wanted to edit a game file, Android, I found that it could be simple.

What I have tried:

I've tried it with Eclipse. Doesn't help!
Posted
Updated 2-Aug-17 0:46am

First things first: Android doesn't use DLL files, it uses .SO files. DLL's are for windows projects (or Xamarin possibly).

And editing a game by looking at its binary files is neither simple nor - in most cases - legal. It's a copyright violation and that's counted as malicious behaviour.
We do not condone, support, or assist in the production of malicious code in any way, form, or manner. This is a professional site for professional developers.

If you want to know how to do such things, you need to visit a hacking site: but be sure to disable all firewalls and antivirus products first or they won't trust you enough to tell you.
 
Share this answer
 
The extension does not necessarily tells you what kind of file you have. DLL files are binary Windows files (Dynamic Link Library) and are not related to Android (which is a Linux OS).

To edit such binary files you can use a hex editor. But doing so likely makes files containing code not working anymore.

Instead of editing such files you have to get the sources and rebuild them.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900