Skip to content

Commit

Permalink
move to github (#512)
Browse files Browse the repository at this point in the history
* move to github
  • Loading branch information
pxb1988 authored Oct 29, 2021
1 parent 0f16a77 commit 6f30d4b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 15 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/gradle.yml
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
14 changes: 4 additions & 10 deletions README.md
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:
Expand All @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<>();
Expand Down

0 comments on commit 6f30d4b

Please sign in to comment.