Skip to content

Commit a2490f9

Browse files
authored
Merge pull request #357 from ThexXTURBOXx/master
Some stuff for JDK 17
2 parents 47a99c4 + b8f78d2 commit a2490f9

32 files changed

Lines changed: 59 additions & 39 deletions

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
java: [ '8', '11', '16' ] # All currently supported versions
17+
java: [ '8', '11', '17-ea' ] # LTS versions
1818

1919
steps:
2020
- uses: actions/checkout@v2
2121
- name: Set up JDK ${{ matrix.java }}
2222
uses: actions/setup-java@v2
2323
with:
2424
java-version: ${{ matrix.java }}
25-
distribution: 'adopt'
25+
distribution: 'temurin'
2626
- name: Build with Maven
2727
run: mvn -B package --file pom.xml
2828
- name: Extract Maven project version

libs/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ Some dependencies may have been modified or could be released by their author in
1919

2020
#### Modifications
2121

22+
- `ByteAnalysis`: Compiled from source with the newest dependency versions
23+
- `APKTool`: Added the `apktool-cli` subproject, compiled without changes from source
2224
- `JD-GUI`: Removed ASM, RSyntaxTextArea, ANTLR, and TreeLayout
23-
- `APKTool`: Recompiled with the newest dependency versions, removed prebuilt folder
12.4 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
92750a855f488f5b90b4ee75352d53cc
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
f84f12d4a024aa00fa314229c748c971c984f8ae

libs/org/apktool/apktool/2.5.0bcv2/apktool-2.5.0bcv2.pom renamed to libs/org/apktool/apktool-cli/2.6.0/apktool-cli-2.6.0.pom

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.apktool</groupId>
6-
<artifactId>apktool</artifactId>
7-
<version>2.5.0bcv2</version>
6+
<artifactId>apktool-cli</artifactId>
7+
<version>2.6.0</version>
88
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
32d7606cd2e4eb5ec99cf13a1f623a2c
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b7c5e3e3a20e7601b18d45f594ecaf0d31e0047c
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<metadata>
33
<groupId>org.apktool</groupId>
4-
<artifactId>apktool</artifactId>
4+
<artifactId>apktool-cli</artifactId>
55
<versioning>
6-
<release>2.5.0bcv2</release>
6+
<release>2.6.0</release>
77
<versions>
8-
<version>2.5.0bcv2</version>
8+
<version>2.6.0</version>
99
</versions>
10-
<lastUpdated>20210622201718</lastUpdated>
10+
<lastUpdated>20210916084410</lastUpdated>
1111
</versioning>
1212
</metadata>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5cf5e3c60d76f6bc05317852c0dee46c

0 commit comments

Comments
 (0)