mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 10:19:06 +01:00
Fix problem in AS after 8962fefd
Commit 8962fefd introduced a problem while loading the project into
Android Studio. Apparently the fix from that commit did not handly
updated types of the more recent Gradle API. This update should fix it.
This commit is contained in:
@@ -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 += compileJava.options.generatedSourceOutputDirectory.get().getAsFile()
|
||||
generatedSourceDirs += compileJava.options.generatedSourceOutputDirectory.get().getAsFile()
|
||||
testSourceDirs += compileTestJava.options.generatedSourceOutputDirectory.get().getAsFile()
|
||||
generatedSourceDirs += compileTestJava.options.generatedSourceOutputDirectory.get().getAsFile()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user