Adam
02/20/2024, 11:52 AMPiotr Krzemiński
03/13/2024, 7:08 AMtony
03/20/2024, 5:26 PMProperty.update()
API, which doesn't exist, because it was removedGiuseppe Barbieri
03/23/2024, 10:52 AMmaven
should be inside repositories
settings.gradle
pluginManagement {
repositories {
gradlePluginPortal()
maven {
url '<https://maven.example.com/plugins>'
}
}
}
Giuseppe Barbieri
03/25/2024, 7:59 AMApp
package authoring.tutorial
and the mainClass = <http://org.example.App|org.example.App>
Oleg Nenashev
04/04/2024, 2:24 PMJosh Friend
04/20/2024, 2:11 AMA change incauses the whole project to become out-of-date.buildSrc
Thus, when making small incremental changes, the(ref)command-line option is often helpful to get faster feedback. Remember to run a full build regularly.--no-rebuild
`--no-rebuild`: Do not rebuild project dependencies. Useful for debugging and fine-tuning(ref) I just tried this flag and my build immediately failed because it didn't rebuild the conventions plugin included build, which is basically what I expected that flag to do based on the "Do not rebuild project dependencies" description. The other parts of the docs around this don't make sense to me though, how is this useful for iterating on conventions plugins if using this flag prevents them from being rebuilt?, but can lead to wrong results. Use with caution!buildSrc
Travis Furrer
06/03/2024, 6:12 PMGopal Indra
06/08/2024, 8:22 AMCould not find method claspath() for arguments [com.google.gms.google-services:4.4.2] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.* Try:
Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.* Get more help at https://help.gradle.org BUILD FAILED in 59s Error: Gradle task assembleDebug failed with exit code 1
René
06/24/2024, 8:47 PMJakub Chrzanowski
08/16/2024, 6:32 PMtasks.named(Copy, "myCopy") {
2️⃣
Should be tasks.named("myCopy", Copy) {
2️⃣Oleg Nenashev
08/23/2024, 1:28 PMMartin Nguyen
09/02/2024, 4:56 AMOleg Nenashev
10/02/2024, 8:25 AMtony
10/07/2024, 4:48 PMuploadArchives
task 😱 (in Figure 1
). Does that task still exist?Oleg Nenashev
10/09/2024, 5:46 AMOleg Nenashev
10/21/2024, 7:02 PMSlackbot
10/25/2024, 5:06 AMAnurag Verma
10/30/2024, 8:22 PMNikolay
11/11/2024, 5:14 PMNikolay
11/11/2024, 5:15 PMOleg Nenashev
11/18/2024, 6:04 PMTheGoesen
11/26/2024, 2:29 PMSiva Babu Tavva
11/29/2024, 11:39 AMshizuoka yamamoto
11/30/2024, 10:32 AMJeet Patel
12/07/2024, 2:33 PMCould not resolve all files for configuration 'path provider androidandroidJdkImage'.> Failed to transform core-for-system-modules.jar to match attributes {artifactType=_internal_android_jdk_image, org.gradle.libraryelements=jar, org.gradle.usage=java-runtime}. > Execution failed for JdkImageTransform: C:\Users\jeets\AppData\Local\Android\sdk\platforms\android-34\core-for-system-modules.jar. > Error while executing process C:\Program Files\Android\Android Studio\jbr\bin\jlink.exe with arguments {--module-path C:\Users\jeets\.gradle\caches\transforms-3\4a46fc89ed5f9adfe3afebf74eb8bfeb\transformed\output\temp\jmod --add-modules java.base --output C:\Users\jeets\.gradle\caches\transforms-3\4a46fc89ed5f9adfe3afebf74eb8bfeb\transformed\output\jdkImage --disable-plugin system-modules} * Try:
Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.
Get more help at https://help.gradle.org.BUILD FAILED in 2m 8s Error: Gradle task assembleDebug failed with exit code 1
Adam
12/12/2024, 4:37 PMJorge Andres Matamoros
01/14/2025, 3:43 PMAdam
03/06/2025, 9:13 AM