Kotlin, the Swift of Android
blog.gouline.net
Kotlin, the Swift of Android
1–10 of 114 posts
Re: Kotlin, the Swift of Android
#2I think as the Android build system improves using other languages will become more common.
Re: Kotlin, the Swift of Android
#3Re: Kotlin, the Swift of Android
#4Re: Kotlin, the Swift of Android
#5I'd rather use Ruby than Swift or Kotlin.
Re: Kotlin, the Swift of Android
#6Scala for Android, https://news.ycombinator.com/item?id=8192406
Re: Kotlin, the Swift of Android
#7Re: Kotlin, the Swift of Android
#8Just a side question, the author mentions method count as a downside of introducing alternate JVM languages. Does the method could slowdown/bloat apps somehow?
Re: Kotlin, the Swift of Android
#9Just a side question, the author mentions method count as a downside of introducing alternate JVM languages. Does the method could slowdown/bloat apps somehow?
> You can reference a very large number of methods in a DEX file, but you can only invoke the first 65536, because that’s all the room you have in the method invocation instruction.
> […] the limitation is on the number of methods referenced, not the number of methods defined. If your DEX file has only a few methods, but together they call 70,000 different externally-defined methods, you’re going to exceed the limit.