mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 05:07:41 +02:00
Migrate to Gradle Kotlin DSL (#3249)
* feat: initial migration to kotlin * feat: initial migration to kotlin * fix: wire up dependencies * fix: Deprecated tag for kotlin detection * refactor: put all modules into sub-projects * fix: include jar file (android framework) * fix: add version message/info * fix: wire up version/gitrev to properties * fix: wire up proguard on cli * fix: wire up proguard * fix: wire up output cleaning command * fix: drop license header on gradle files - fully rewritten from scratch by myself - no longer including license header on build files * fix: add compile utf8/flags for java8 * refactor: remove unneeded curly braces * feat: progress towards maven-publish * build: publish to maven * docs: update documentation * refactor: prevent implicit order by removal of afterEvaluate * build: remove unused license plugin
This commit is contained in:
@ -553,7 +553,7 @@ public class Main {
|
||||
|
||||
// print out license info prior to formatter.
|
||||
System.out.println(
|
||||
"Apktool v" + ApktoolProperties.getVersion() + " - a tool for reengineering Android apk files\n" +
|
||||
"Apktool " + ApktoolProperties.getVersion() + " - a tool for reengineering Android apk files\n" +
|
||||
"with smali v" + ApktoolProperties.get("smaliVersion") +
|
||||
" and baksmali v" + ApktoolProperties.get("baksmaliVersion") + "\n" +
|
||||
"Copyright 2010 Ryszard Wiśniewski <brut.alll@gmail.com>\n" +
|
||||
@ -577,9 +577,8 @@ public class Main {
|
||||
System.out.println();
|
||||
|
||||
// print out more information
|
||||
System.out.println(
|
||||
"For additional info, see: https://apktool.org/ \n"
|
||||
+ "For smali/baksmali info, see: https://github.com/google/smali");
|
||||
System.out.println("For additional info, see: https://apktool.org \n"
|
||||
+ "For smali/baksmali info, see: https://github.com/google/smali");
|
||||
}
|
||||
|
||||
private static void setupLogging(final Verbosity verbosity) {
|
||||
|
Reference in New Issue
Block a user