Fix Gradle sync error in Android Studio.

This commit is contained in:
akwizgran
2025-04-29 09:41:38 +01:00
parent 1a603d52da
commit 0f9c65d13c

View File

@@ -6,9 +6,9 @@ sourceSets.configureEach { sourceSet ->
idea {
module {
sourceDirs += compileJava.options.generatedSourceOutputDirectory
generatedSourceDirs += compileJava.options.generatedSourceOutputDirectory
testSourceDirs += compileTestJava.options.generatedSourceOutputDirectory
generatedSourceDirs += compileTestJava.options.generatedSourceOutputDirectory
sourceDirs += file(compileJava.options.generatedSourceOutputDirectory)
generatedSourceDirs += file(compileJava.options.generatedSourceOutputDirectory)
testSourceDirs += file(compileTestJava.options.generatedSourceOutputDirectory)
generatedSourceDirs += file(compileTestJava.options.generatedSourceOutputDirectory)
}
}