Skip to content

Commit 6f30d4b

Browse files
authored
move to github (#512)
* move to github
1 parent 0f16a77 commit 6f30d4b

File tree

3 files changed

+33
-15
lines changed

3 files changed

+33
-15
lines changed

.github/workflows/gradle.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3+
4+
name: Java CI with Gradle
5+
6+
on:
7+
push:
8+
branches: [ 2.x ]
9+
pull_request:
10+
branches: [ 2.x ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up JDK 8
20+
uses: actions/setup-java@v2
21+
with:
22+
java-version: '8'
23+
distribution: 'adopt'
24+
cache: gradle
25+
- name: Grant execute permission for gradlew
26+
run: chmod +x gradlew
27+
- name: Build with Gradle
28+
run: ./gradlew check distZip

README.md

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
# dex2jar
22

3-
**Project move to [SourceForge](https://sourceforge.net/p/dex2jar) and [Bitbucket](https://bitbucket.org/pxb1988/dex2jar) and [GitHub](https://github.com/pxb1988/dex2jar)**
3+
**Project move to [GitHub](https://github.com/pxb1988/dex2jar)**
44

55
| _ | Mirror | Wiki | Downloads | Issues |
66
|--:|:-----|:----:|:---------:|:------:|
7-
| 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/) |
8-
| 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) |
97
| 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) |
8+
| 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/) |
9+
| 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) |
1010
| 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)|
1111

12-
13-
14-
# dex2jar [![Build Status](https://travis-ci.org/pxb1988/dex2jar.svg?branch=2.x)](https://travis-ci.org/pxb1988/dex2jar)
15-
1612
Tools to work with android .dex and java .class files
1713

1814
1. dex-reader/writer:
@@ -37,9 +33,7 @@ Tools to work with android .dex and java .class files
3733
And the output file will be `apk_to_decompile-dex2jar.jar`.
3834

3935
## Need help ?
40-
send email to [email protected]
41-
42-
or post on issue trackers list above.
36+
post on issue trackers list above.
4337

4438
## License
4539
[Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)

dex-tools/src/main/java/com/googlecode/dex2jar/tools/BaksmaliBaseDexExceptionHandler.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,7 @@
4040
import java.util.zip.ZipOutputStream;
4141

4242
public class BaksmaliBaseDexExceptionHandler extends BaseDexExceptionHandler {
43-
public static final String REPORT_MESSAGE = "Please report this file to one of following link if possible (any one).\n" + //
44-
" https://sourceforge.net/p/dex2jar/tickets/\n" + //
45-
" https://bitbucket.org/pxb1988/dex2jar/issues\n" + //
46-
" https://github.com/pxb1988/dex2jar/issues\n" + //
47-
43+
public static final String REPORT_MESSAGE = "Please report this file to https://github.com/pxb1988/dex2jar/issues if possible.";
4844

4945
private Map<DexMethodNode, Exception> exceptionMap = new HashMap<>();
5046
private List<Exception> fileExceptions = new ArrayList<>();

0 commit comments

Comments
 (0)