Package Details: dex2jar 2.1-1

Git Clone URL: https://aur.archlinux.org/dex2jar.git (read-only, click to copy)
Package Base: dex2jar
Description: Tools to work with android .dex and java .class files
Upstream URL: https://github.com/pxb1988/dex2jar
Licenses: Apache
Submitter: None
Maintainer: None
Last Packager: Lekensteyn
Votes: 97
Popularity: 0.054554
First Submitted: 2011-02-14 13:02 (UTC)
Last Updated: 2022-01-19 11:11 (UTC)

Dependencies (2)

Required by (1)

Sources (1)

Latest Comments

« First ‹ Previous 1 2

Lekensteyn commented on 2015-04-12 13:45 (UTC)

Updated to 2.0, updated homepage and added TODO comment whether d2j-* utils should be installed to /usr/bin/ instead. Tested and it still produces a jar file.

andrewchen commented on 2015-04-08 23:44 (UTC)

Also, please update the project homepage.

andrewchen commented on 2015-04-08 23:42 (UTC)

Version 2.0 available: https://sourceforge.net/projects/dex2jar/

Lekensteyn commented on 2013-09-03 08:33 (UTC)

Updated to 0.0.9.15

Lekensteyn commented on 2013-03-02 23:16 (UTC)

Updated to 0.0.9.13, using sha1sums now.

Lekensteyn commented on 2012-12-20 09:44 (UTC)

Updated to 0.9.12-a.

Lekensteyn commented on 2012-10-26 12:58 (UTC)

Adopted and updated to 0.9.11. I have also changed the symlink of "dex2jar".

ChristophLSA commented on 2012-10-25 16:41 (UTC)

Sorry, I don't use this package anymore and forgot to update it. I disowned it now. Take your chance and be owner of this wonderfull package. :)

Lekensteyn commented on 2012-08-26 20:09 (UTC)

Request: make `dex2jar` point to /opt/dex2jar/d2j-dex2jar.sh. $ dex2jar this cmd is deprecated, use the d2j-dex2jar if possible dex2jar version: translator-0.0.9.9 dex2jar file1.dexORapk file2.dexORapk ... $ dex2jar convert dex to jar usage: d2j-dex2jar [options] <file0> [file1 ... fileN] options: -d,--debug-info translate debug info -e,--exception-file <file> detail exception file, default is $current_dir/[file-name]-error.zip -f,--force force overwrite -n,--not-handle-exception not handle any exception throwed by dex2jar -o,--output <out-jar-file> output .jar file, default is $current_dir/[file-name]-dex2jar.jar -os,--optmize-synchronized optmize-synchronized -p,--print-ir print ir to Syste.out -r,--reuse-reg reuse regiter while generate java .class file -s,--topological-sort sort block by topological, that will generate more readable code version: reader-1.10, translator-0.0.9.9, ir-1.7

<deleted-account> commented on 2012-07-27 11:49 (UTC)

News version 0.9.9, updated PKGBUILD # Maintainer: Christoph Giesel <mail at cgiesel dot de> # Contributor: Andreas Schönfelder <passtschu at freenet dot de> pkgname=dex2jar pkgver=0.0.9.9 pkgrel=1 pkgdesc="A tool for converting Android's .dex format to Java's .class format" arch=(any) url="http://code.google.com/p/dex2jar" license=('Apache') depends=('java-runtime') source=("http://dex2jar.googlecode.com/files/$pkgname-$pkgver.zip") md5sums=('83086743017545323f2f6e1da2fc407c') package() { cd "$srcdir/$pkgname-$pkgver" mkdir -p "$pkgdir/usr/bin/" mkdir -p "$pkgdir/opt/dex2jar/lib/" install -m755 *.sh "$pkgdir/opt/dex2jar/" install -m644 lib/*.jar "$pkgdir/opt/dex2jar/lib/" ln -s /opt/dex2jar/dex2jar.sh "$pkgdir/usr/bin/dex2jar" } # vim:set ts=2 sw=2 et: