Skip to content

Commit

Permalink
解决生成的java文件未打入包内bug
Browse files Browse the repository at this point in the history
  • Loading branch information
qq549631030 committed Mar 23, 2023
1 parent d865528 commit 8333ec8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.1"
if (PLUGIN_ENABLE.toBoolean()) {
classpath "com.github.qq549631030:android-junk-code:1.1.9"
classpath "com.github.qq549631030:android-junk-code:1.2.0"
}
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
2 changes: 1 addition & 1 deletion library/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#project
GROUP=com.github.qq549631030
VERSION_NAME=1.1.9
VERSION_NAME=1.2.0

POM_ARTIFACT_ID=android-junk-code
POM_NAME=AndroidJunkCode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,7 @@ class AndroidJunkCodeTask extends DefaultTask {
}

private void writeJavaFile(JavaFile javaFile) {
def outputDirectory = outDir.toPath()
outputDirectory.resolve("java")
def outputDirectory = new File(outDir, "java").toPath()
if (!javaFile.packageName.isEmpty()) {
for (String packageComponent : javaFile.packageName.split("\\.")) {
outputDirectory = outputDirectory.resolve(packageComponent);
Expand Down

0 comments on commit 8333ec8

Please sign in to comment.