mirror of
https://github.com/iBotPeaches/Apktool.git
synced 2024-12-12 14:56:05 +00:00
move default framework location on windows/unix
- unix - $HOME/.local/share/apktool - windows - $HOME/AppData/Local/apktool - #1277
This commit is contained in:
parent
3c41d44d8c
commit
ed7b094b02
@ -703,8 +703,10 @@ final public class AndrolibResources {
|
|||||||
|
|
||||||
if (OSDetection.isMacOSX()) {
|
if (OSDetection.isMacOSX()) {
|
||||||
path = parentPath.getAbsolutePath() + String.format("%1$sLibrary%1$sapktool%1$sframework", File.separatorChar);
|
path = parentPath.getAbsolutePath() + String.format("%1$sLibrary%1$sapktool%1$sframework", File.separatorChar);
|
||||||
|
} else if (OSDetection.isWindows()) {
|
||||||
|
path = parentPath.getAbsolutePath() + String.format("%1$sAppData%1$sLocal%1$sapktool%1$sframework", File.separatorChar);
|
||||||
} else {
|
} else {
|
||||||
path = parentPath.getAbsolutePath() + String.format("%1$sapktool%1$sframework", File.separatorChar);
|
path = parentPath.getAbsolutePath() + String.format("%1$s.local%1$sshare%1$sapktool%1$sframework", File.separatorChar);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user