吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 10477|回复: 82
收起左侧

[Android Tools] ApkTool 2.6.0

  [复制链接]
gunxsword 发表于 2021-10-25 12:35
这个东西更新了有一段时间了,但是发现论坛上一直没有这个版本(搜索了没有),爱盘里的也没有更新,所以我就转一下吧!也是无意间检查STAR的软件时,发现这个更新了


新版说明,我也看不懂,懂的自己看吧,放到KILLER里,测试了一个APK,没啥问题,能解包
Apktool v2.6.0 has been released! This is a long overdue release that fixes many issues and packs a few new features/behavior in.The last release was way back in December of 2020 so the promise of making quicker releases didn't really hold up. Building aapt/aapt2 binaries has gotten increasingly complex over each and every release. Building a pure AOSP build of build tools got a bit more difficult.So lets talk about this release.We've started publishing to [color=var(--color-font)]Maven now on each release build. This has opened up some glaring issues in the Apktool code base:
  • Declared exceptions never thrown
  • Missing docblocks
  • Code smell issues leading to warnings
  • A not very sane API to use in library form
The good news is most of these are resolvable and a good chunk of them were slipped into 2.6.0.Goooler stepped in and upgraded the entire ecosystem of Apktool. Whether from direct dependencies to the CI/CD process to the build process itself. The project should be a bit easier to work in now for those wanting to contribute.Binaries were updated again for aapt1/aapt2 and enhancements were made to our CI process to ensure that static unbroken binaries will also be produced. This should result in less cryptic errors when an aapt build was invalid.The war on obfuscation never ends and this release is no exception. Much work was put into string handling learning from the bundletool project that had to a similar and much better approach of parsing strings.The release as always fixes a good deal of issues between disassembling and building and should lead to a more stable experience.The change log is below, but before is a snippet of news about the next releases. Apktool is an interesting pickle with the [color=var(--color-font)]announcement of APKs effectively not being produced during the application development stage. Bundles will be built and Google will produce the APK for the specific language and resource set per phone. This puts Apktool in an interesting position on many topics.I've started a public discussion about [color=var(--color-font)]Apktool 3 and while nothing is set in stone yet - this is my goal.
  • Apktool 2.6.1 - A few months away - fixes and non-breaking changes
  • Apktool 3.0.0 - 6-10 months away - Removes aapt1 entirely, replaces internal system for configurations for disassembling, breaks API for a more sane library usages
All opinions are welcome, but with that - Apktool 2.6.0.This release had 195 commits by 11 people
  • Connor Tumbleson (iBotPeaches) - 149
  • Goooler - 22
  • Igor Eisberg (IgorEisberg) - 10
  • Comnir (Nir) - 5
  • pashamcr - 2
  • wangyilei - 2
  • MrIkso - 1
  • Andrea Pappacoda - 1
  • Cody Lund (codylund) - 1
  • Matteo Baccan (matteobaccan) - 1
  • itaybia - 1
One thing to note is this release of development was the first release to heavily use rebase/squash merging. This has the side affect of affecting commit counts, but either way - thank you to the contributors for this release.Changes since 2.5.0
  • [[color=var(--color-font)]#2580] Android 12 Support
  • [[color=var(--color-font)]#2529] Published to [color=var(--color-font)]Maven Central
  • [[color=var(--color-font)]7691c] Update internal aapt/aapt2 binaries.
  • Upgrade baksmali/smali to [color=var(--color-font)]v2.5.2
  • Upgrade to gradle 7.2 (Thanks Goooler)
  • Upgrade to snakeyaml 1.29 (Thanks Goooler)
  • Upgrade to guava 30.1.1-jre (Thanks Goooler)
  • Upgrade to junit 4.13.2 (Thanks Goooler)
  • Upgrade to commons-lang 3.12.0 (Thanks Goooler)
  • Upgrade to commons-io 2.11.0 (Thanks Goooler)
  • Upgrade to proguard 7.1.1 (Thanks Goooler)
  • Upgrade to license.hierynomus 0.16.1 (Thanks Goooler)
  • Upgrade to jengelman.shadow 7.0.0 (Thanks Goooler)
  • Upgrade to actions/setup-java@v2 (Thanks Goooler)
  • Added .gitattributes (Thanks Goooler)
  • Added support for SDK in Development (Tiramisu, API 32?)
  • Added automatic execution of aapt/aapt2 binaries during CI process to find broken builds.
  • Added automatic ldd/otool -L execution during CI process to identify non-static “fat” aapt/aapt2 builds.
  • Added test execution on Java 15/16 (Now 8-16) during CI process.
  • Upgrade aapt2 with patches for attr-private and remove reserved pkgIds. (Thanks MrIkso)
  • Upgrade aapt1 with patches for a static binary on Mac arch.
  • [[color=var(--color-font)]#2604] Add lazy init for ResTable for optimizations. (Thanks IgorEisberg)
  • [[color=var(--color-font)]#2605] Add automatic disassemble/assemble JAR files without specifying api level. (Thanks IgorEisberg)
  • [[color=var(--color-font)]#2201] Changed zipslip exceptions to skip file instead of exit on failure.
  • [[color=var(--color-font)]#2229] Changed dummy resource names to APKTOOL_DUPLICATE_{Type}_{RESID} to prevent starting with numeric
  • [[color=var(--color-font)]#2635] Changed all Apache License links to https. (Thanks Goooler)
  • [[color=var(--color-font)]#2632] Changed getHTML() processor to leverage BundleTool code for handling complex string values. (Thanks itaybia)
  • [[color=var(--color-font)]#2099] Fix decoding issue requiring specific order of chunks (library/table). (Thanks LoyieKing)
  • [[color=var(--color-font)]#2299] Fix decoding issues with code points over > 0x10000. (Thanks Comnir)
  • [[color=var(--color-font)]#2546] Fix decoding issues with surrogate pair emojis. (Thanks Comnir)
  • [[color=var(--color-font)]#2455] Fix NPE when decoding to a custom non-empty root directory.
  • [[color=var(--color-font)]#2499] Fix Android 11 dex NPE due to hidden api restriction flags. (Thanks JesusFreke)
  • [[color=var(--color-font)]#2603] Fix dummy resources being built as type resources vs item resources.
  • [[color=var(--color-font)]#2611] Fix numeric string meta-data losing context of data type. (Thanks codylund)
  • [[color=var(--color-font)]#2554] Reduce code smell failures. (Thanks matteobaccan)
  • [[color=var(--color-font)]#2604] Reduce code smells & correct improper opcode use for baksmali. (Thanks IgorEisberg)
  • [[color=var(--color-font)]#2636] Reduce code smells for unused logic, unneeded casting and newer Java language features. (Thanks Goooler)
  • [[color=var(--color-font)]#2604] Remove unused targetSdkVersion for source disassemble as value was not populated yet. (Thanks IgorEisberg)
  • [[color=var(--color-font)]#2633] Remove duplicate workflows for 1 unified GitHub Action workflow. (Thanks Goooler)
Notes
  • Applications are becoming more and more difficult to build with aapt1, using the --use-aapt2 flag during rebuild is a good test.
相关链接:https://github.com/iBotPeaches/Apktool/releases/tag/v2.6.0               https://connortumbleson.com/2021/09/02/apktool-v2-6-0-released/
下载链接:https://bitbucket.org/iBotPeache ... s/apktool_2.6.0.jar  (这是码云上找到的别人镜像的,GITHUB下载实在是有点慢)


对ANDROID分析方面的东西,接触的也不是很多,不知道为什么这东西更新了这么久了也没有人发,有什么更好的工具软件的话,还请回复一下

免费评分

参与人数 23吾爱币 +22 热心值 +20 收起 理由
舒默哦 + 2 + 1 谢谢@Thanks!
1323873 + 1 + 1 谢谢@Thanks!
gff741236 + 1 + 1 我很赞同!
jockin + 1 谢谢@Thanks!
lizhengpu + 1 + 1 我很赞同!
shiyucj + 1 + 1 我很赞同!
chinawolf2000 + 1 + 1 热心回复!
闪的好快啊 + 1 谢谢@Thanks!
asas246 + 1 谢谢@Thanks!
lenbai + 1 + 1 我很赞同!
M1A2 + 1 谢谢@Thanks!
klbengbeng + 1 + 1 谢谢@Thanks!
Kn1fe + 1 + 1 鼓励转贴优秀软件安全工具和文档!
caleb110 + 1 + 1 谢谢@Thanks!
max2012 + 1 谢谢@Thanks!
hamxbb + 1 + 1 鼓励转贴优秀软件安全工具和文档!
jamessteed + 1 + 1 谢谢@Thanks!
torrent + 1 + 1 谢谢@Thanks!
总有bug想害朕 + 1 + 1 谢谢@Thanks!
blindcat + 1 + 1 谢谢@Thanks!
wildbloom + 1 + 1 谢谢@Thanks!
yijinpeng + 1 + 1 热心回复!
gcode + 1 + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

popandpipi 发表于 2021-11-25 02:01
准备学习APK解包!谢谢
blindcat 发表于 2021-10-25 16:07
gcode 发表于 2021-10-25 13:11
xinvyao 发表于 2021-10-25 13:40
好家伙,这是个好东西呀
prospect2005 发表于 2021-10-25 13:57
这是个好东西呀
wsygnr 发表于 2021-10-25 14:21
非常不错的东东
liaowuxin 发表于 2021-10-25 14:45
支持一下
翼国游者 发表于 2021-10-25 14:53
居然更新了,这玩意在爱盘上好久没更新了~
dongxie 发表于 2021-10-25 15:20
感谢提供下载 好东西!
太阳tt123 发表于 2021-10-25 16:39
感谢分享,这是干啥用的
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止灌水或回复与主题无关内容,违者重罚!

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-3-29 21:58

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表