Fixed
Status Update
Comments
es...@google.com <es...@google.com> #2
Thanks for the feedback. To help us troubleshoot this issue further, we will need more information. Please share detailed reproduction steps and as much as possible of the following information when it applies:
1. Gradle and Android Plugin Version (File -> Project Structure -> Project)
2. Build logs
3. idea.log file if the issue occurs from Android Studio (select Help > Show Log in Finder / Explorer)
4. Gradle profile if it is a performance issue as described inhttps://developer.android.com/studio/build/optimize-your-build#profile
For more information on what’s needed and how to obtain this information please read the guide athttps://developer.android.com/studio/report-bugs#build-bugs
1. Gradle and Android Plugin Version (File -> Project Structure -> Project)
2. Build logs
3. idea.log file if the issue occurs from Android Studio (select Help > Show Log in Finder / Explorer)
4. Gradle profile if it is a performance issue as described in
For more information on what’s needed and how to obtain this information please read the guide at
ja...@gmail.com <ja...@gmail.com> #3
gradle: 6.2.2
android plugin: 3.6.0
Steps to reproduce the issue:
1. open any android project
2. exclude one file in the way shown in this issue, e.g. Foo.java
3. change Foo.java to add some syntax errors
4. build project
android plugin: 3.6.0
Steps to reproduce the issue:
1. open any android project
2. exclude one file in the way shown in this issue, e.g. Foo.java
3. change Foo.java to add some syntax errors
4. build project
jv...@google.com <jv...@google.com>
je...@google.com <je...@google.com>
ga...@google.com <ga...@google.com> #4
Thank you for filing the issue. The problem is that we do not apply "dynamic" filtering when computing the sources, we only apply glob-like filtering. E.g in you project, using
sourceSets {
androidTest {
java {
exclude '**/Foo.java'
}
}
}
fixes the issue.
We'll work on the fix, it should land probably in 4.2 alphas.
ga...@google.com <ga...@google.com> #5
The fix will be released in 4.2.0-alpha04.
ag/If45275c21d8bf74cd80216cd8c3ac90b099a14ae
sa...@gmail.com <sa...@gmail.com> #7
With 4.2.0-alpha13
, I still can see no effect of exclude
statement in sourceSets { main { kotlin {} } }
(neither in sourceSets { main { java {} } }
).
ga...@google.com <ga...@google.com> #8
Re #7: Android Gradle plugin controls only java
source set, Kotlin Gradle plugins controls the kotlin
one. WRT java
one, can you please share a sample project that reproduces the issue?
ma...@gmail.com <ma...@gmail.com> #9
Hello everyone,
The Authentication and Documentation team have finished their work on updating the documentation, the changes should be live soon. Fow now I will close this Bug Report, please open a separate one in case the current state of the docs are still incomplete.
https://twitter.com/OnepieceVostfrf
https://twitter.com/dbs_vostfr
https://vk.com/@twflix24-one-piece-red-tw
https://vk.com/@cinemajos-avatar-la-voie-de-leau-streaming-vf-en-francais-vostfr-fr
https://issuetracker.google.com/issues/250610583
https://issuetracker.google.com/issues/250609756
https://issuetracker.google.com/issues/250609759
https://issuetracker.google.com/issues/250610272
https://issuetracker.google.com/issues/250610273
https://issuetracker.google.com/issues/250610276
https://issuetracker.google.com/issues/250610278
https://issuetracker.google.com/issues/250610593
https://issuetracker.google.com/issues/250610280
https://issuetracker.google.com/issues/250610923
https://issuetracker.google.com/issues/250610282
https://issuetracker.google.com/issues/250611106
https://issuetracker.google.com/issues/250610598
https://issuetracker.google.com/issues/250611463
https://issuetracker.google.com/issues/250611111
https://issuetracker.google.com/issues/250610933
https://issuetracker.google.com/issues/250610935
https://issuetracker.google.com/issues/250611113
https://issuetracker.google.com/issues/250610937
https://issuetracker.google.com/issues/250611116
https://issuetracker.google.com/issues/250611466
https://issuetracker.google.com/issues/250612724
https://issuetracker.google.com/issues/250612604
https://issuetracker.google.com/issues/250612726
https://issuetracker.google.com/issues/250611471
https://issuetracker.google.com/issues/250177858
https://issuetracker.google.com/issues/250172577
https://www.endezo-it.com/2022/10/the-dark-event-of-indonesian-football.html
https://www.49erssports.com/2022/10/kanjuruhan-tragedy-arema-fc-management.html
https://one-piece-red-full-movie-english.webflow.io/
https://documenter.getpostman.com/view/21828632/2s83tJGAat
The Authentication and Documentation team have finished their work on updating the documentation, the changes should be live soon. Fow now I will close this Bug Report, please open a separate one in case the current state of the docs are still incomplete.
Description
AI-192.7142.36.36.6241897, JRE 1.8.0_212-release-1586-b04x64 JetBrains s.r.o, OS Windows 10(amd64) v10.0 , screens 1280x720
AS: 3.6.1; Kotlin plugin: 1.3.61; Android Gradle Plugin: (plugin information not found); Gradle: 6.2.2; NDK: from local.properties: (not specified), latest from SDK: (not found); LLDB: pinned revision 3.1 not found, latest from SDK: (package not found); CMake: from local.properties: (not specified), latest from SDK: (not found), from PATH: (not found)
IMPORTANT: Please read
Android gradle build: excluded java source files get compiled: e.g.,
android {
sourceSets {
androidTest {
java {
exclude { element ->
element.file.path.endsWith("Foo.java")
}
}
java.sourceFiles.each { println "file: " + it }
}
}
}
The Foo.java is excluded from the source set. But android build: still tries to compile Foo.java and emit compiling errors in the Foo.java.