mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 05:10:11 +00:00
parent
0f16a77a16
commit
6f30d4bb29
28
.github/workflows/gradle.yml
vendored
Normal file
28
.github/workflows/gradle.yml
vendored
Normal file
@ -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
|
14
README.md
14
README.md
@ -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 dex2jar@googlegroups.com
|
||||
|
||||
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)
|
||||
|
@ -40,11 +40,7 @@ import java.util.zip.ZipEntry;
|
||||
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" + //
|
||||
" dex2jar@googlegroups.com";
|
||||
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<>();
|
||||
|
Loading…
Reference in New Issue
Block a user