-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move to github
- Loading branch information
Showing
3 changed files
with
33 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | ||
|
||
name: Java CI with Gradle | ||
|
||
on: | ||
push: | ||
branches: [ 2.x ] | ||
pull_request: | ||
branches: [ 2.x ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
cache: gradle | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Build with Gradle | ||
run: ./gradlew check distZip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
# dex2jar | ||
|
||
**Project move to [SourceForge](https://sourceforge.net/p/dex2jar) and [Bitbucket](https://bitbucket.org/pxb1988/dex2jar) and [GitHub](https://github.com/pxb1988/dex2jar)** | ||
**Project move to [GitHub](https://github.com/pxb1988/dex2jar)** | ||
|
||
| _ | Mirror | Wiki | Downloads | Issues | | ||
|--:|:-----|:----:|:---------:|:------:| | ||
| sf | https://sourceforge.net/p/dex2jar | [Wiki](https://sourceforge.net/p/dex2jar/wiki) | [Downloads](https://sourceforge.net/projects/dex2jar/files/) | [Tickets](https://sourceforge.net/p/dex2jar/tickets/) | | ||
| bb | https://bitbucket.org/pxb1988/dex2jar | [Wiki](https://bitbucket.org/pxb1988/dex2jar/wiki) | [Downloads](https://bitbucket.org/pxb1988/dex2jar/downloads) | [Issues](https://bitbucket.org/pxb1988/dex2jar/issues) | | ||
| gh | https://github.com/pxb1988/dex2jar | [Wiki](https://github.com/pxb1988/dex2jar/wiki) | [Releases](https://github.com/pxb1988/dex2jar/releases) | [Issues](https://github.com/pxb1988/dex2jar/issues) | | ||
| sf | https://sourceforge.net/p/dex2jar | [old](https://sourceforge.net/p/dex2jar/wiki) | [old](https://sourceforge.net/projects/dex2jar/files/) | [old](https://sourceforge.net/p/dex2jar/tickets/) | | ||
| bb | https://bitbucket.org/pxb1988/dex2jar | [old](https://bitbucket.org/pxb1988/dex2jar/wiki) | [old](https://bitbucket.org/pxb1988/dex2jar/downloads) | [old](https://bitbucket.org/pxb1988/dex2jar/issues) | | ||
| gc | https://code.google.com/p/dex2jar | [old](http://code.google.com/p/dex2jar/w/list) | [old](http://code.google.com/p/dex2jar/downloads/list) | [old](http://code.google.com/p/dex2jar/issues/list)| | ||
|
||
|
||
|
||
# dex2jar [![Build Status](https://travis-ci.org/pxb1988/dex2jar.svg?branch=2.x)](https://travis-ci.org/pxb1988/dex2jar) | ||
|
||
Tools to work with android .dex and java .class files | ||
|
||
1. dex-reader/writer: | ||
|
@@ -37,9 +33,7 @@ Tools to work with android .dex and java .class files | |
And the output file will be `apk_to_decompile-dex2jar.jar`. | ||
|
||
## Need help ? | ||
send email to [email protected] | ||
|
||
or post on issue trackers list above. | ||
post on issue trackers list above. | ||
|
||
## License | ||
[Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.html) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,11 +40,7 @@ | |
import java.util.zip.ZipOutputStream; | ||
|
||
public class BaksmaliBaseDexExceptionHandler extends BaseDexExceptionHandler { | ||
public static final String REPORT_MESSAGE = "Please report this file to one of following link if possible (any one).\n" + // | ||
" https://sourceforge.net/p/dex2jar/tickets/\n" + // | ||
" https://bitbucket.org/pxb1988/dex2jar/issues\n" + // | ||
" https://github.com/pxb1988/dex2jar/issues\n" + // | ||
" [email protected]"; | ||
public static final String REPORT_MESSAGE = "Please report this file to https://github.com/pxb1988/dex2jar/issues if possible."; | ||
|
||
private Map<DexMethodNode, Exception> exceptionMap = new HashMap<>(); | ||
private List<Exception> fileExceptions = new ArrayList<>(); | ||
|