├── README.md ├── exercises.zip ├── setup.txt └── slides.pdf /README.md: -------------------------------------------------------------------------------- 1 | # Intro-to-Kotlin 2 | An introductory workshop into Kotlin development 3 | 4 | The slides provide a small overview of the language and why it's useful for Android developers. 5 | 6 | The excercises are meant to be used with the EduTools Plugin for IntelliJ & Android Studio 7 | 8 | # Expected Flow 9 | 1. Go Through Slides Until `Hello Kotlin` 10 | 2. Transition to the exercises and work through basic syntax 11 | 3. Finish with slides for additional resources 12 | 13 | # Get Started 14 | To get started, download or clone this repo to a local working directory. You can then follow the instructions included in `setup.txt` within this repo. 15 | 16 | # Setup Video 17 | Setup instructions are included in the repo, but I've also created a short video to walkthrough the setup process. 18 | 19 | Click on the image below to view the video. 20 | 21 | [![Setup Video](https://img.youtube.com/vi/3vA6BV34Ueg/0.jpg)](https://youtu.be/3vA6BV34Ueg "Setup Video") 22 | -------------------------------------------------------------------------------- /exercises.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8ebel/Intro-to-Kotlin/d53616ef5a7aafe235f15ffbfee861647e6a87ee/exercises.zip -------------------------------------------------------------------------------- /setup.txt: -------------------------------------------------------------------------------- 1 | # EduTools Plugin Install Guide 2 | - Make sure you have Android Studio 3.0+ installed 3 | - Open Android Studio 4 | - Go to "Plugin" settings 5 | - Click on “Install JetBrains Plugin” 6 | - Search for “EduTools” 7 | - Click "Install" 8 | - Restart Android Studio once it’s done 9 | - Select “Learner” 10 | - Select “Start” 11 | 12 | # Setup Workshop Code 13 | - Open Android Studio with EduTools Plugin enabled 14 | - Select “Browse Courses” 15 | - Click the green arrow icon to “Import Local Course” 16 | - Navigate to the workshop archive file named "exercises.zip" 17 | - Select and then click "Join" 18 | -------------------------------------------------------------------------------- /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8ebel/Intro-to-Kotlin/d53616ef5a7aafe235f15ffbfee861647e6a87ee/slides.pdf --------------------------------------------------------------------------------