Skip to content

Commit

Permalink
Update Kotlin version, links to blog post articles
Browse files Browse the repository at this point in the history
  • Loading branch information
andijakl committed Jan 29, 2018
1 parent 967c477 commit cc1584c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
@@ -1,7 +1,10 @@
# PartsList
Example App: RecyclerView with Kotlin on Android

Finished source code for blog article. Follow the instructions to go from a new project in Android Studio to a fully-working RecyclerView list.
Finished source code for the blog article introducing RecyclerView with Kotlin support on Android. Follow the instructions to go from a new project in Android Studio to a fully-working RecyclerView list.

* [Part 1: Kotlin & RecyclerView for High Performance Lists in Android](https://www.andreasjakl.com/kotlin-recyclerview-for-high-performance-lists-in-android/)
* [Part 2: How To: RecyclerView with a Kotlin-Style Click Listener in Android](https://www.andreasjakl.com/recyclerview-kotlin-style-click-listener-android/)

## Related Information

Expand Down
1 change: 0 additions & 1 deletion app/src/main/java/com/andresjakl/partslist/MainActivity.kt
Expand Up @@ -76,7 +76,6 @@ class MainActivity : AppCompatActivity() {
* and could be stripped.
*/
class ClassWithConstructorProperties constructor (var a: Int, var b: Int) {

fun calculate() : Int {
return a + b;
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.2.10'
ext.kotlin_version = '1.2.21'
repositories {
google()
jcenter()
Expand Down

0 comments on commit cc1584c

Please sign in to comment.