Converting your iOS App to Android Using Kotlin | raywenderlich.com

In this tutorial, you’ll see first-hand how similar these languages are and how simple it is to convert Swift to Kotlin by porting an iOS app to Android.


This is a companion discussion topic for the original entry at https://www.raywenderlich.com/7266-converting-your-ios-app-to-android-using-kotlin

I am getting this error when building the starter kotlin project with Android Studio 3.2.1 :
The Android Gradle plugin supports only Kotlin Gradle plugin version 1.2.51 and higher. Project ‘PokeTheBear-Kotlin-Starter’ is using version 1.2.41.

How can I fix this ?
Thanks

Ah, Kotlin and Gradle have both updated a bit since writing these starter projects. Open up the PokeTheBear-Kotlin-Starter/build.gradle file and update the ext.kotlin_version to 1.2.51. Let me know if that works!

Thanks Lisa, that works.