Taking Advantage of Kotlin - Part II
Taking Advantage of Kotlin - Part II Let's get set up. I'm sure you have the all requirements that I have said earlier in last post. Let's try to convert a Java - coded app converting into Kotlin. First, You have to download the project, T he Address Book . Unpack the Zip. MyAddressBook-starter contains the starter app Steps 1 and 2 are the introduction and getting started steps, so there are no folders for these ones. MyAddressBook-stepN folders contain the app in the finished state after step N. The final app can be found in the MyAddressBook-final folder. App Overview MyAddressBook is a simplified address book app that displays a list of contacts in a RecyclerView. You'll be converting all of the Java code into Kotlin, so take a moment to familiarize yourself with the existing code in the MyAddressBook-starter app. Open MyAddressBook-starter in Android Studio. Run it. Contact.java The Contact class is a simple Java...