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:
Connor Tumbleson
2023-08-05 06:28:31 -04:00
committed by GitHub
parent 0a354a9d97
commit 342ff67a4c
19 changed files with 338 additions and 521 deletions

View File

@ -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) {