Christian
Christian

Reputation: 646

Run "aapt.exe" on phone directly?

I want to create the packaged resource file programmatically and (that's the question) directly in a running app on the android phone. Is there a way to execute "aapt.exe" on the phone or is there another way of creating the resource._rsc file from a java library?

thx for answering!

Upvotes: 0

Views: 688

Answers (1)

Anton Cherkashyn
Anton Cherkashyn

Reputation: 5859

Android is a Linux-based OS, while .exe files are Microsoft Windows executables. You can't execute an .exe in Linux, at least not without the help of emulation software.

Upvotes: 1

Related Questions