Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions blog/2025/2025-03-10-release-2111.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
slug: apktool-2.11.1
title: Apktool 2.11.1
authors: [ibotpeaches]
tags: [release]
---

- [[#3768](https://github.com/iBotPeaches/Apktool/issues/3768)] Fix parsing feature flags at any point in `AndroidManifest.xml`. (Thanks IgorEisberg)
- [[#3811](https://github.com/iBotPeaches/Apktool/pull/3811)] Fix injection of network debugging if existing entries present. (Thanks aytee6)
- [[#3799](https://github.com/iBotPeaches/Apktool/pull/3799)] Fix disassembly of applications with unordered type chunks.
- [[#3762](https://github.com/iBotPeaches/Apktool/pull/3762)] Upgrade r8 to `8.7.18`.
- [[#3800](https://github.com/iBotPeaches/Apktool/pull/3800)] Upgrade gradle to `4.3.0`.

:::success

[Download now at Bitbucket](https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.11.1.jar), [Maven](https://mvnrepository.com/artifact/org.apktool/apktool-lib)

- md5 - `e64d0b288b96a8c7502d8897ac8f2eae`
- sha256 - `56d59c524fc764263ba8d345754d8daf55b1887818b15cd3b594f555d249e2db`

:::

> This post was released with commentary at: https://connortumbleson.com/2025/03/10/apktool-v2-11-1-released/
6 changes: 1 addition & 5 deletions docs/unreleased.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,4 @@ The changelog of the upcoming release, subject to change prior to finalization.

:::

- [[#3768](https://github.com/iBotPeaches/Apktool/issues/3768)] Fix parsing feature flags at any point in `AndroidManifest.xml`. (Thanks IgorEisberg)
- [[#3811](https://github.com/iBotPeaches/Apktool/pull/3811)] Fix injection of network debugging if existing entries present. (Thanks aytee6)
- [[#3799](https://github.com/iBotPeaches/Apktool/pull/3799)] Fix disassembly of applications with unordered type chunks.
- [[#3762](https://github.com/iBotPeaches/Apktool/pull/3762)] Upgrade r8 to `8.7.18`.
- [[#3800](https://github.com/iBotPeaches/Apktool/pull/3800)] Upgrade gradle to `4.3.0`.
_It's a bit empty here, but we are working on it!_
4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ const config = {
{to: '/docs/install', label: 'Install', position: 'left'},
{to: '/blog', label: 'Releases', position: 'left'},
{
href: 'https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.11.0.jar',
label: 'Download 2.11.0',
href: 'https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.11.1.jar',
label: 'Download 2.11.1',
position: 'right',
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function HomepageHeader() {
</span>
<CodeBlock language="bash">
{`$ apktool d test.apk
I: Using Apktool 2.11.0 on test.apk
I: Using Apktool 2.11.1 on test.apk
I: Loading resource table...
I: Decoding AndroidManifest.xml with resources...
I: Loading resource table from file: 1.apk
Expand All @@ -35,7 +35,7 @@ I: Copying assets and libs...
I: Copying unknown files...
I: Copying original files...
$ apktool b test
I: Using Apktool 2.11.0 on test
I: Using Apktool 2.11.1 on test
I: Checking whether sources has changed...
I: Smaling smali folder into classes.dex...
I: Checking whether resources has changed...
Expand Down
Loading