apk - Not finding xml file after decompiling using apkstudio -
i wanted change package name of apk file built app inventor. used apkstudio decompile file. apkstudio creates new folder, , inside of smali , source folders , jar file. xml , other folders supposed there not.
i tried downloading other versions of apkstudio problem still there. might problem?
try using apktool first decompile apk , resources. generate folder placed apk file @ androidmanifest.xml inside ready edited. changing app's package name not easy modifying package string in androidmanfiest. change app's package name you're going have change package name in androidmanifest , in decompiled code. if you're using windows , have cygwin installed boot terminal , type
find path/to/decompiled/apk/folder -type f -exec sed -e "s/current\\/package\\/name/new\\/package\\/name/g" {} +
and
find path/to/decompiled/apk/folder -type f -exec sed -e "s/current.package.name/new.package.name/g" {} +
Comments
Post a Comment