Jenkins Build great things at any scale The leading open source automation server, Jenkins provides hundreds of plugins to support building, deploying and automating any project.DocumentationDownload Download and run Jenkins Download Jenkins. Open up a terminal in the download directory. READ MORE
Category: JAVA
Easy Parcelable in Kotlin
https://medium.com/the-lazy-coders-journal/easy-parcelable-in-kotlin-the-lazy-coders-way-9683122f4c00 Parcelable: The lazy coder’s way @Parcelize class Item( var imageId: Int, var title: String, var details: String, var price: Double, var category: Category, var postedOn: Long ) : Parcelable See, easy as that! All you need is just to confirm READ MORE
An introduction to Kotlin Coroutines for Android, GDG Android Athens Meetup Notes
Congrats to the speaker Antonis Lillis for the great presentation. An introduction to Kotlin Coroutines for Android Wednesday, Feb 27, 2019, 7:00 PM The Cube8 Kleisovis Str, 10677 Athens, GR 72 Members Went Welcome back to yet an another exciting READ MORE
Multi-OS Engine
Multi-OS Engine Create iOS Apps in Java Port your existing Android App, or build a native Cross-Platform App from scratch. Get Started Overview The following image shows the typical development of mobile apps that target the two popular target platforms: READ MORE
Kotlin Cheat Sheet and Quick Reference
Kotlin Cheat Sheet and Quick Reference https://koenig-media.raywenderlich.com/uploads/2018/08/RW_Kotlin_Cheatsheet_1_0.pdf
ARCHITECTURE COMPONENTS – Android Jetpack
Android Jetpack Jetpack is a collection of Android software components to make it easier for you to develop great Android apps. These components help you follow best practices, free you from writing boilerplate code, and simplify complex tasks, so you READ MORE
Android Sunflower
https://github.com/googlesamples/android-sunflower https://developer.android.com/jetpack/docs/getting-started#take_advantage_of_jetpack A gardening app illustrating Android development best practices with Android Jetpack. Android Sunflower is currently released as an alpha and is under heavy development. To view the latest changes, please visit the Releases page. Note that some changes (such READ MORE
RxAndroid
https://code.tutsplus.com/tutorials/rxjava-for-android-apps-introducing-rxbinding-and-rxlifecycle–cms-28565 https://www.vokal.io/blog/reactive-forms-with-rxandroid https://gist.github.com/hzsweers/b9e25e244d59d7e3274b https://academy.realm.io/posts/donn-felker-reactive-android-ui-programming-with-rxbinding/ Adding TextWatcher on EditText using Rxjava and RxBinding https://placona.co.uk/building-a-beautifully-smart-form-in-android-using-rxjava/ https://academy.realm.io/posts/donn-felker-reactive-android-ui-programming-with-rxbinding/
getBoundsOnScreen(android.graphics.Rect)’ on a null object reference
getBoundsOnScreen(android.graphics.Rect)’ on a null object reference Set the hint on the TextInputLayout instead of the nested EditText. It wont crash. <android.support.design.widget.TextInputLayout android:id=”@+id/til1″ android:layout_width=”match_parent” android:layout_height=”wrap_content” android:hint=”Phone Number”> <EditText android:layout_width=”match_parent” android:layout_height=”wrap_content” android:id=”@+id/login_phone” android:inputType=”number” android:singleLine=”true” /> </android.support.design.widget.TextInputLayout> https://medium.com/@markchristopherng/a-new-year-a-new-os-upgrade-to-oreo-2f91783e159f Testing After doing the upgrade, READ MORE
java.lang.ArrayIndexOutOfBoundsException: length=227; index=1017
Problems with Instant Run (Android Studio 2.0 beta 4) and Retrofit java.lang.ArrayIndexOutOfBoundsException: length=227; index=1017 This morning I was playing with a toy app I have which uses Retrofit, and I’ve found the following problem with it (and Instant Run): 02-16 READ MORE