We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6938b commit a04433cCopy full SHA for a04433c
1 file changed
build.gradle
@@ -102,6 +102,15 @@ if (JavaVersion.current() != JavaVersion.VERSION_1_8) {
102
compileJava.options.release = 8;
103
}
104
105
+// add protobuf generated sources for correct importing project in the JntelliJ
106
+sourceSets {
107
+ main {
108
+ java {
109
+ srcDirs 'build/generated/source/proto/main/java'
110
+ }
111
112
+}
113
+
114
test {
115
if (osName.contains("linux")) {
116
environment "AAPT2_PATH", "build/resources/main/linux/aapt2"
0 commit comments