Package Details: apkstudio-git 1:r300.d0a2408-1

Git Clone URL: https://aur.archlinux.org/apkstudio-git.git (read-only, click to copy)
Package Base: apkstudio-git
Description: An IDE for decompiling/editing & then recompiling of android application binaries.
Upstream URL: http://www.vaibhavpandey.com/apkstudio/
Licenses: GPL2
Submitter: borja
Maintainer: ahmubashshir
Last Packager: ahmubashshir
Votes: 21
Popularity: 0.056746
First Submitted: 2015-01-18 18:45 (UTC)
Last Updated: 2022-10-31 15:25 (UTC)

Latest Comments

1 2 3 Next › Last »

eliminater74 commented on 2020-12-23 15:37 (UTC)

@ahmubashshir, Thank you for taking over this great piece of work.

eliminater74 commented on 2020-07-16 11:32 (UTC)

The fact that this looks to be not maintained anymore, I dont have the time nor do I really wanna get into this, If anyone is interested in taking over and maintaining this package, Please take my "PKGBUILD" and release this as an update. My PKGBUILD is Original with needed mods that allow it to build latest GIT Sources of APKSTUDIO. Its one of the best apk decompiler/recompile out there. I use it alot to make custom changes to stock roms that have no source.

Pretty much, I am giving my permission to take the PKGBUILD script I changed and use it as you see fit.. I just dont have time to take over this package....

I did try and email the package maintainer and never once received a reply.. so its safe to say its dead.. So up for grabs for anyone that wants too.. if you need anything else from me. Just leave me a note.........

eliminater74 commented on 2020-01-29 00:43 (UTC) (edited on 2020-01-29 00:45 (UTC) by eliminater74)

ShalokShalom commented on 2020-01-28 12:05 eliminater, your added lines give me "fatal: /home/shalokshalom/Dokumente/apkstudio-git/src/Qt-Frameless-Window-DarkStyle: '/home/shalokshalom/Dokumente/apkstudio-git/src/Qt-Frameless-Window-DarkStyle' is outside repository"

Could you just release your PKGBUILD on https://pastebin.com/ and post the link to it here?

Thanks a lot

Here you go: https://pastebin.com/NL4cqSuV

Must Fine this on your own: install -Dm755 "$_pkgname/resources/$_pkgname.desktop" "$pkgdir/usr/share/applications/$_pkgname.desktop" install -Dm755 "$_pkgname/resources/icon.png" "$pkgdir/usr/share/pixmaps/icon.png"

I personally included it in my final version.

ShalokShalom commented on 2020-01-28 12:05 (UTC)

eliminater, your added lines give me "fatal: /home/shalokshalom/Dokumente/apkstudio-git/src/Qt-Frameless-Window-DarkStyle: '/home/shalokshalom/Dokumente/apkstudio-git/src/Qt-Frameless-Window-DarkStyle' is outside repository"

Could you just release your PKGBUILD on https://pastebin.com/ and post the link to it here?

Thanks a lot

eliminater74 commented on 2019-09-15 07:02 (UTC)

If you are having issues building this Arch Package, Follow this:

Download Snapshot, Extract it, CD into it, nano or any of your fav tex editors, open "PKGBUILD" Now, change this:

change: source=('git+https://github.com/vaibhavpandeyvpz/apkstudio.git') into this: source=('git+https://github.com/vaibhavpandeyvpz/apkstudio.git' 'git+https://github.com/Jorgen-VikingGod/Qt-Frameless-Window-DarkStyle.git' 'git+https://github.com/Dax89/QHexView.git')

Then change this: sha256sums=('SKIP') into this: sha256sums=('SKIP' 'SKIP' 'SKIP')

Then below: pkgver() { cd "$srcdir/$_pkgname" printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } add this: prepare() { cd "$srcdir/$_pkgname" git submodule init git config submodule.Qt-Frameless-Window-DarkStyle.url $srcdir/Qt-Frameless-Window-DarkStyle git config submodule.QHexView.url $srcdir/QHexView git submodule update }

after all that, drop down too: build() { cd "$srcdir/$_pkgname" lrelease-qt5 res/lang/en.ts qmake-qt5 -r apkstudio.pro CONFIG+=release make } and remove lrelease-qt5 res/lang/en.ts

Save it and Run it, I use chroot for building, Something like multilib-build will work as well..

Hope this helps the people that want this package created and installed.

I ask the maintainer if he/she would please update PKGBUILD with above changes.

Thank you.

wlritchi commented on 2018-04-18 13:57 (UTC)

I think it may have been a bad decision on my part to be opinionated about upstream's post-install setup requirements. I've updated this package to leave the source alone.

Thanks for the heads up!

t1meshift commented on 2018-04-15 04:20 (UTC)

The package fails to build now because of changes in en.ts.

If you want to build it successfully, you can remove line 31 in PKGBUILD or try to make a new patch file.

prasadkumar013 commented on 2016-03-20 09:06 (UTC)

Update source=('git+https://github.com/vaibhavpandeyvpz/apkstudio.git' 'https://www.dropbox.com/sh/gwd8igui90j63oj/AAC_Rfy-0U8cYltPdUnwKtM8a/vendor.zip ') sha256sums=('SKIP' '5f4e92af1810a33f524cc692f8e14b6a94f17f414b30e312ef42e56d0de561c5') And for me apkstudio installed after I removed "pkgver() { cd "$srcdir/$_pkgname" git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' }"

djpohly commented on 2015-12-29 16:54 (UTC)

A symlink works for me: http://pastie.org/10659110

wlritchi commented on 2015-12-13 22:36 (UTC)

The fix was supposed to be "use latest source, and have users manually download a zip file to put it in their homedir". Except the zip file no longer exists at the download location. The way I'm reading the response to the bug, it seems that users are now expected to put apktool.jar in a subdirectory of their homedir, but when I did so, it still didn't work. apktool.jar is another tool that this program depends on to run. If that sounds to you like a job better suited to pacman dependency management, I agree, and that's why I plan on submitting a pull request to use tools on the PATH if possible.