-2

I have decompiled a free android apk with apktool and I found a file with .darc extension. It has a lot of size and when I open it with and hex editor contain .luac files references and others but the luac files is not in the decompiled app folder. What can i do? Some idea?

The principal purpose of this question was to know how can i change some text in the apk. For example, customize the name of a village in the game or name of some tool.

tatyana
  • 55
  • 7
  • 2
    What are you trying to do in the first place? Nobody can help you if you don't tell us what you want to do. – Xaver Kapeller Mar 29 '16 at 10:42
  • I want to change some text in the apk. But in the apk .xml files there isn't strings for change so the file .darc may be the clue. – tatyana Mar 29 '16 at 11:06

2 Answers2

1

It seems to be a packaged archive: see here or here here (a python package)

Darc is an archiving system for use in media projects that allows developers to contain and use their data files from .darc files that store data in a bz2 compressed and AES encrypted (optional) format.

UPDATE: you can try to uinpack the .darc file using this utility (python):

DARCTool

Seraphim's
  • 12,559
  • 20
  • 88
  • 129
0

Darc allows data files for media projects (images, sounds, videos etc.) to be stored in special container files called a .darc which compresses, encrypts, hashes, and then stores each file for verification and use at a later date.