Reducing jar size by removing unneeded stuff

This commit is contained in:
Nico Mexis 2021-06-22 22:18:40 +02:00
parent b614b30b60
commit 15bbda9ede
No known key found for this signature in database
GPG Key ID: 27D6E17CE092AB78
16 changed files with 18 additions and 13 deletions

View File

@ -2,9 +2,9 @@
#### Adding new dependencies
Run the following command (replacing the placeholder first of course!):
Run the following command (replacing the placeholders first of course!):
```console
mvn deploy:deploy-file -DgroupId=[GROUP-ID] -DartifactId=[ARTIFACT-ID] -Dversion=[VERSION] -Durl=file:. -DrepositoryId=local-maven-repo -DupdateReleaseInfo=true -Dfile=[THE-JAR-FILE]
mvn deploy:deploy-file -DgroupId=[GROUP-ID] -DartifactId=[ARTIFACT-ID] -Dversion=[VERSION] -Durl=file:./libs -DrepositoryId=local-maven-repo -DupdateReleaseInfo=true -Dfile=[THE-JAR-FILE]
```
#### Updating dependencies
@ -16,3 +16,8 @@ You can also safely delete the old version of the dependency, as nothing will de
#### Why the suffix `bcv`?
Some dependencies may have been modified or could be released by their author in the future. To avoid confusion and dependency clashes in the local repository, the suffix is a nice way to ensure, the right dependency is used in every project (`bcv` = `ByteCode Viewer` btw).
#### Modifications
- `JD-GUI`: Removed ASM and RSyntaxTextArea
- `APKTool`: Recompiled with the newest dependency versions, removed prebuilt folder

View File

@ -1 +0,0 @@
c877e494e20674cab5224aee1911bc31

View File

@ -1 +0,0 @@
9a12d6ef2207335c4a77caf4414d300c38aa1cfa

View File

@ -1 +0,0 @@
2b41e18b3dcc4169cd7beb86fe9eb5a2

View File

@ -1 +0,0 @@
fa92129bc63d5cbbe8496d4dc93ca48b1b113783

View File

@ -0,0 +1 @@
7d96a4ccc7289d0f0f476c618a6315a8

View File

@ -0,0 +1 @@
f3aad98eee64a34566ae6b971b59a3fb27c897a5

View File

@ -4,5 +4,5 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apktool</groupId>
<artifactId>apktool</artifactId>
<version>2.5.0bcv</version>
<version>2.5.0bcv2</version>
</project>

View File

@ -0,0 +1 @@
f13d5769cd41299e8727973044de6326

View File

@ -0,0 +1 @@
8750ebdb9af548b87d7f4597f65ca49262de7033

View File

@ -3,10 +3,10 @@
<groupId>org.apktool</groupId>
<artifactId>apktool</artifactId>
<versioning>
<release>2.5.0bcv</release>
<release>2.5.0bcv2</release>
<versions>
<version>2.5.0bcv</version>
<version>2.5.0bcv2</version>
</versions>
<lastUpdated>20210622183833</lastUpdated>
<lastUpdated>20210622201718</lastUpdated>
</versioning>
</metadata>

View File

@ -1 +1 @@
17f9ccd076a81fa456a4c92e4f26329d
04af915c4a9139dff66855fe769239f1

View File

@ -1 +1 @@
f1b0999a6132c549dd2f94583a0c5b5de99c0320
1f365a9ab11f7213c747f379cf8d4220dc1b7fab

View File

@ -32,7 +32,7 @@
<dependency>
<groupId>org.apktool</groupId>
<artifactId>apktool</artifactId>
<version>2.5.0bcv</version>
<version>2.5.0bcv2</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>