testwhat / SmaliEx

A wrapper to get de-optimized dex from odex/oat/vdex.
529 stars 142 forks source link

oat2dex cannot be run on read-only locations #6

Closed mfonville closed 8 years ago

mfonville commented 8 years ago

Often I just mount the android system image I'd like to deodex. But since this mountpoint is read-only, the script cannot be executed. Would it be possible to implement to allow reading from location X and do all write operations to another location Y?

mmhobi7 commented 8 years ago

I've done that, check out deodex app

testwhat commented 8 years ago

Added -o parameter. download latest

Example: java -jar oat2dex.jar -o output_location app.odex boot_dex_folder

mfonville commented 8 years ago

Awesome, thank you!