Steven
04/16/2019, 4:03 PMval iOSMain by sourceSets.creating
ivan.savytskyi
04/16/2019, 6:50 PMRobert
04/16/2019, 7:45 PMsunbreak
04/17/2019, 2:39 AMgalex
04/17/2019, 3:54 AMmben
04/17/2019, 11:59 AMMohammadsss1
04/17/2019, 2:36 PMShan
04/18/2019, 2:01 PMShan
04/18/2019, 10:22 PMfrom(components["java"])
and artifact(tasks["sourcesJar"])
within my maven publication in my MPP build file?Rainer Schlonvoigt
04/19/2019, 6:22 AMpardom
04/19/2019, 7:06 PMcommon
implementation of URI
?Nikolai
04/20/2019, 1:52 PMWe discovered that your app contains obfuscated code, selector mangling, or features meant to subvert the App Review process by changing this app's concept after approval to the App Store.
The next submission of this app may require a longer review time, and this app will not be eligible for an expedited review until this issue is resolved.
Is where any chance that it was caused by app.framework that was built in multiplatform project?Patrick Jackson
04/21/2019, 12:52 AMNikolai
04/22/2019, 2:39 AMThank You
to everyone who worked on this technology and everyone who helping other peoples here in Slack (in this and any other channels). We had a lot of questions, issues and troubles during our development and it’s great that you can came here and ask question. Than You all.Mohammadsss1
04/22/2019, 10:17 AMPatrick Jackson
04/22/2019, 10:54 PMLeoColman
04/23/2019, 1:39 PMapply plugin: 'kotlin'
.LeoColman
04/23/2019, 1:39 PMsubprojects
is configured?Konstantin Tskhovrebov
04/23/2019, 8:26 PMkotlinx.serialization
for protobuf serialization, but it's not support enum ids 😢
Any news about it?
PS: jvm + web platforms at the momentribesg
04/24/2019, 8:22 AMrudolf.hladik
04/24/2019, 1:52 PMorg.jetbrains.kotlinx:kotlinx-coroutines-core-native
dependency and don’t even throw an error. I have iosMain.dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.2.0"
}
and in buildscript buildscript {
repositories {
maven { url "<https://kotlin.bintray.com/kotlinx>" }
maven { url "<https://dl.bintray.com/jetbrains/kotlin-native-dependencies>" }
ivan.savytskyi
04/24/2019, 3:27 PM1.3.30
the compilation of ios target fails with this stack trace:
...:compileKotlinIos FAILED
e: Compilation failed: null
* Compiler version info: Konan: 1.2 / Kotlin: 1.3.30
* Output kind: LIBRARY
e: kotlin.KotlinNullPointerException
at org.jetbrains.kotlin.backend.common.phaser.PhaseConfig.phaseSetFromConfiguration(PhaseConfig.kt:64)
at org.jetbrains.kotlin.backend.common.phaser.PhaseConfig.<init>(PhaseConfig.kt:14)
at org.jetbrains.kotlin.backend.konan.Context.<init>(Context.kt:216)
at org.jetbrains.kotlin.backend.konan.KonanDriverKt.runTopLevelPhases(KonanDriver.kt:20)
at org.jetbrains.kotlin.cli.bc.K2Native.doExecute(K2Native.kt:78)
at org.jetbrains.kotlin.cli.bc.K2Native.doExecute(K2Native.kt:35)
at org.jetbrains.kotlin.cli.common.CLICompiler.execImpl(CLICompiler.kt:84)
at org.jetbrains.kotlin.cli.common.CLICompiler.execImpl(CLICompiler.kt:42)
at org.jetbrains.kotlin.cli.common.CLITool.exec(CLITool.kt:103)
at org.jetbrains.kotlin.cli.common.CLITool.exec(CLITool.kt:81)
at org.jetbrains.kotlin.cli.common.CLITool.exec(CLITool.kt:49)
at org.jetbrains.kotlin.cli.common.CLITool$Companion.doMainNoExit(CLITool.kt:214)
at org.jetbrains.kotlin.cli.common.CLITool$Companion.doMain(CLITool.kt:206)
at org.jetbrains.kotlin.cli.bc.K2Native$Companion$main$1.invoke(K2Native.kt:217)
at org.jetbrains.kotlin.cli.bc.K2Native$Companion$main$1.invoke(K2Native.kt:208)
at org.jetbrains.kotlin.konan.util.UtilKt.profileIf(Util.kt:39)
at org.jetbrains.kotlin.konan.util.UtilKt.profile(Util.kt:33)
at org.jetbrains.kotlin.cli.bc.K2Native$Companion.main(K2Native.kt:210)
at org.jetbrains.kotlin.cli.bc.K2NativeKt.main(K2Native.kt:296)
at org.jetbrains.kotlin.cli.utilities.MainKt.main(main.kt:16)
Did anyone see the same issue?kgonyon
04/24/2019, 5:53 PMdarkmoon_uk
04/24/2019, 11:34 PMbasher
04/24/2019, 11:52 PMinitRuntimeIfNeeded
for threads created outside of K/N runtime (e.g. GCD threads on iOS)?oleksandr.stepanov
04/25/2019, 9:12 AMcinterops
dependency to the build.gradle
of common module, so it makes Pods accessible for Kotlin code in iOS module, compiles and links with Pods frameworks.
This is almost done in https://github.com/RubyLichtenstein/Kotlin-Multiplatform-Firebase repo for Firebase Pod, however they link against pre-compiled framework placed in c_interop/firestore directory.
What I need, is to build these frameworks as part of gradle build step and link against them while creating Kotlin framework for iOS.
If anybody has succeeded with such task, could you, please, share the sample project?
Thanks.Dmitry Motyl
04/25/2019, 1:28 PMUnresolved reference: WeakReference
GarouDan
04/25/2019, 2:42 PM<https://github.com/johnrengelman/shadow>
plugin, to create fatJars.
I’ve already done the integration in my project but I’m seeing only a knows task
. (I’m using gradle 5.3.1
)
My current configuration is:
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
...
plugins {
kotlin("multiplatform")
id("com.github.johnrengelman.shadow") version "5.0.0"
}
...
tasks.withType<ShadowJar> {
baseName = "app"
classifier = ""
version = ""
}
With ./gradlew tasks
I can se only a knows
task
Shadow tasks
------------
knows - Do you know who knows?
and if I run ./gradlew shadowJar
I receive an error like:
* What went wrong:
Task 'shadowJar' not found in root project 'my_project'.
Does someone have a working example with a kotlin mpp project and fatJars?
It looks like the shadowJar
task is created only in the presence of the JavaPlugin
and because I’m using Kotlin it is not being created.
Thanks in advance!pardom
04/25/2019, 6:15 PMpardom
04/25/2019, 8:02 PMld: 46 duplicate symbols for architecture x86_64
Anyone know how to avoid this?pardom
04/25/2019, 8:02 PMld: 46 duplicate symbols for architecture x86_64
Anyone know how to avoid this?Kris Wong
04/25/2019, 8:10 PMkpgalligan
04/25/2019, 8:24 PMpardom
04/25/2019, 8:24 PMbinary { framework { } }
?kpgalligan
04/25/2019, 8:27 PMpardom
04/25/2019, 8:28 PM