elect
10/09/2021, 4:59 PMJason5lee
10/17/2021, 1:15 PMKarlo Lozovina
10/20/2021, 10:43 PMExperimentalStdlibApi
, and I add it via Gradle plugin that adds -Xopt-in=kotlin.ExperimentalStdlibApi
to kotlinOptions.freeCompilerArgs
. Building with Gradle from the command line shows no errors, but Intellij keeps underlining functions (like buildList
) and saying that I need to add the annotation. Using the latest Kotlin 1.6 preview plugin. Any ideas what to try to fix it?mcpiroman
10/22/2021, 5:24 PM/** @See some.other.module.MyClass */
Is there some workaround for this? Something like declaring `ideOnly("other:module:)`dependency in gradle maybe?Javier
10/23/2021, 1:06 PMspand
10/25/2021, 8:48 AMmbonnin
10/25/2021, 3:01 PMelect
10/25/2021, 3:01 PMconner
10/25/2021, 9:09 PMrkeazor
10/28/2021, 6:31 PMivanmorgillo
11/05/2021, 8:11 AMwasyl
11/05/2021, 3:30 PMinternal
classes are marked as errors. I’m on AS Canary, and everything worked fine until the latest Kotlin plugin updatePeter
11/06/2021, 12:58 PMNSLocalizedDescription=The bundle "OpenJDK 11.0.12" couldn't be loaded because it doesn't contain a version for the current architecture.}
2021-11-06 13:41:38.760 idea[2292:43635] Retrying as x86_64...
arch: posix_spawnp: ./IntelliJ IDEA CE.app/Contents/MacOS/idea: Bad CPU type in executable
It seems that
• either it comes with an Intel JDK (when I thought it would come with a M1 Native JDK).
• somehow I downloaded the Intel version of IDEA (but then the install should also have failed ?)
Any tips from others ?
P.S I did install a JDK 11 Azul native JDK, but IDEA still tries to use the bundled JDKConorG
11/11/2021, 1:16 PMJavier
11/12/2021, 10:16 AMholgerbrandl
11/16/2021, 3:31 PMJustin Tullgren
11/17/2021, 1:36 PMokarm
11/20/2021, 1:11 PMMichael Böiers
11/22/2021, 3:39 PMphil-t
11/22/2021, 4:02 PMjava.lang.NoSuchMethodError: 'java.util.List com.intellij.grazie.utils.Text.allOccurrences(java.util.regex.Pattern, java.lang.CharSequence)'
Jurriaan Mous
11/22/2021, 10:00 PMsnowe
11/23/2021, 1:10 AMmbonnin
11/24/2021, 9:55 AMrootProject.name
from settings.gradle.kts but sometimes it's the name of a random file in the repo. I haven't really found a patternrkeazor
11/26/2021, 7:31 PMAyfri
11/27/2021, 4:59 AM/**
and we press ENTERSkovisen
11/30/2021, 5:53 PMRob Elliot
11/30/2021, 6:30 PMRob Elliot
12/01/2021, 6:11 PM.iml
files in the project.
It became
<option value="/<no_path>/lib/kotlinx-serialization-compiler-plugin.jar" />
when it should be
<option value="$KOTLIN_BUNDLED$/lib/kotlinx-serialization-compiler-plugin.jar" />
.Tadeas Kriz
12/02/2021, 6:35 PMKarlo Lozovina
12/02/2021, 6:53 PMbuildList
, @Serializable
, etc... (multiproject build, works ok with 2021.2.3). Anyone seen something similar?Karlo Lozovina
12/02/2021, 6:53 PMbuildList
, @Serializable
, etc... (multiproject build, works ok with 2021.2.3). Anyone seen something similar?pniederw
12/02/2021, 7:41 PMKarlo Lozovina
12/02/2021, 7:55 PMExperimentalStdlibApi
opt-in ... still, I'll wait until 1.6 support lands...pniederw
12/02/2021, 8:36 PMAlexey Belkov [JB]
12/03/2021, 7:46 AMbuildList
is related to that.