spierce7
07/27/2018, 1:41 PMrunBlocking
?Aregev2
07/27/2018, 2:58 PMAregev2
07/28/2018, 10:34 AMthevery
07/29/2018, 10:20 PMXCTest
from K/N?dany
07/30/2018, 2:32 PMrudolf.hladik
07/30/2018, 6:20 PMthevery
07/30/2018, 7:11 PMjdiaz
07/30/2018, 8:46 PMthevery
07/31/2018, 3:00 PMthevery
08/01/2018, 11:17 AMkoufa
08/01/2018, 11:24 AMchristophsturm
08/02/2018, 11:44 AMthevery
08/02/2018, 10:16 PMerror: conflicting nullability specifier on parameter types, 'nonnull' conflicts with existing specifier '_Nullable'
- (int32_t)compareToOther:(YOUMStdlibEnum *)other __attribute__((swift_name("compareTo(other:)")));
^
note: previous declaration is here
- (int32_t)compareToOther:(id _Nullable)other __attribute__((swift_name("compareTo(other:)")));
@protocol YOUMStdlibComparable
@required
- (int32_t)compareToOther:(id _Nullable)other __attribute__((swift_name("compareTo(other:)")));
@end;
@interface YOUMStdlibEnum : KotlinBase <YOUMStdlibComparable>
- (instancetype)initWithName:(NSString *)name ordinal:(int32_t)ordinal __attribute__((swift_name("init(name:ordinal:)"))) __attribute__((objc_designated_initializer));
- (id)clone __attribute__((swift_name("clone()")));
- (int32_t)compareToOther:(YOUMStdlibEnum *)other __attribute__((swift_name("compareTo(other:)")));
@property (readonly) NSString *name;
@property (readonly) int32_t ordinal;
@end;
Is it a known problem? Maybe some workaround?drofwarcs
08/03/2018, 3:46 AMadam-mcneilly
08/03/2018, 3:13 PMkhairil.ushan
08/03/2018, 7:03 PMkonan
plugin I can set it on framework('MyLib')
inside konanArtifacts
block.snowe
08/04/2018, 11:38 PMraniejade
08/05/2018, 9:37 AMraniejade
08/05/2018, 9:37 AMsendilkumarn [JHipster]
08/05/2018, 5:49 PMwasm
? Or we can just call the main method at this point?thevery
08/05/2018, 6:32 PMkotlin-platform-native
test compile task (compileTestDebugKotlinNative
) is dynamic so you can access it only after configuration using
task test(dependsOn: 'compileTestDebugKotlinNative', overwrite: true) {
doLast {
exec {
def textExecutable = tasks["compileTestDebugKotlinNative"].outputFile
commandLine("xcrun", "simctl", "spawn", "iPhone 8", textExecutable)
}
}
}
or
afterEvaluate { project ->
project.task('test', dependsOn: 'compileTestDebugKotlinNative', type: Exec, overwrite: true) {
def textExecutable = tasks["compileTestDebugKotlinNative"].outputFile
commandLine("xcrun", "simctl", "spawn", "iPhone 8", textExecutable)
}
}
@ilya.matveev which option is better in your opinion? Or maybe you have some plans to 'fix' test task in plugin for simulator?drofwarcs
08/05/2018, 8:36 PMjava.lang.NoClassDefFoundError: Could not initialize class org.jetbrains.kotlin.backend.konan.KonanPlatform
from the K\N plungin for Appcode after upgrading to Appcode to 2018.2? Most of the features of the plugin(code completion, documentation..etc) stops working after this crash. Going back to 2018.1 works fine but the version of the plugin for that version always uses K/N 7.1.thevery
08/05/2018, 10:35 PMkhairil.ushan
08/06/2018, 7:05 AM.framework
. but when i ran it on xcode, i got a lot error mostly complain the -
character in the class name
@protocol MppProjectRepository
@required
- (id<MppKotlinx-coroutines-core-nativeDeferred>)searchProjectParams:(MppSearchProjectInteractorParams *)params __attribute__((swift_name("searchProject(params:)")));
@end;
Is there something to configure to avoid this issue?rjhdby
08/06/2018, 11:50 AMimport platform.posix.*
fun getPrecisionIni() = "precision".cstr
produce error on compile time
example_num.kt:10:37: error: unresolved reference: cstr
fun getPrecisionIni() = "precision".cstr
evanchooly
08/06/2018, 10:52 PMkpgalligan
08/07/2018, 2:54 AMrjhdby
08/07/2018, 8:15 AMrjhdby
08/07/2018, 2:43 PMerror: no spread elements allowed here
for this code?
immutableBinaryBlobOf(*(name.toCharArray() as ShortArray))
shusek
08/07/2018, 3:54 PM