Browse Source

Fix module-name given to the Kotlin compiler for each module

Aidan Follestad 5 năm trước cách đây
mục cha
commit
1fecef8a82
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      build.gradle

+ 1 - 1
build.gradle

@@ -27,7 +27,7 @@ allprojects {
 subprojects {
   tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
     kotlinOptions {
-      freeCompilerArgs += ['-module-name', project.path.replace('/', '.').replace(':', '_')]
+      freeCompilerArgs += ['-module-name', project.path.replace(':', '')]
     }
   }
 }