Lamberto Basti
Lamberto Basti
I have my `data class` that has: ```kotlin @Serializable @XmlSerialName( value = "project", namespace = POM_XML_NAMESPACE, ) data class ProjectObjectModel(...) ``` But, some very old `pom.xml` do not provide any...
Something red appears on my logcat when launching this: ``` val completionIntent = Intent(this@LoginActivity, MainActivity::class.java) val cancelIntent = Intent(this@LoginActivity, LoginActivity::class.java) cancelIntent.flags = Intent.FLAG_ACTIVITY_CLEAR_TOP mOktaAuth.login(this@LoginActivity, PendingIntent.getActivity(this@LoginActivity, OKTA_REQUEST_CODE, completionIntent, 0), PendingIntent.getActivity(this@LoginActivity, OKTA_REQUEST_CODE,...
I have no clue why. The wsdl file is public and it's [this one](https://www.onvif.org/ver10/device/wsdl/devicemgmt.wsdl). Plugin configuration: ``` wsdl2javaExt { cxfVersion = "3.2.7" closureOf { locale = Locale.UK stabilizeAndMergeObjectFactory = true...
Use case: when building a Kotlin/JS project, the Gradle plugin will create in rootProject `build/js` a yarn environment with all required modules in all subprojects (which is very handy). When...
Changes: - Most of the polling logic has been replaced with coroutine code. - Added TelegramBotUpdateBuilder DSL to build the bot - Exposed TelegramBotApiClient's properties to allows custom extension -...
Class `Instant` has been annotated with `@JsExport` to allow usage of it from JS code. Due to [**KT-62385** @JsExport doesn't play well with the WasmTarget](https://youtrack.jetbrains.com/issue/KT-62385), a workaround has been added...
Describe proposed changes and the issue being fixed (Optional) Fixes [link to the issue] - [CMP-8134](https://youtrack.jetbrains.com/issue/CMP-8134/Switch-the-ClassLoader-used-by-ResourceReader) ## Testing (Optional) Describe how you tested your changes (provide a snippet or/and steps)...
[Reproducer here!](https://github.com/Kotlin/kotlinx.serialization/files/7506463/repro.zip) Using latest versions of kotlinx serialization and Kotlin. Also tested on JDK 15 and 1.8. When compiling it errors with: ``` text > Task :compileKotlin FAILED e: java.lang.IndexOutOfBoundsException:...
# Problem Currently, `StringResources.getString(...)` and `ResourceEnvironment` are only convenient to use inside a composition. For **server-side rendering (SSR)** with Kotlin/WasmJS, we need to serve html pages that are SEO-friendly and...
Hi! I am trying to figure out how to represent correctly a Gradle Version Catalog. I thought of: ```kotlin @Serializable data class GradleVersionCatalog( val versions: Map = emptyMap(), val libraries:...