Category: Mobile Development
-
My 9th Google I/O
This week was all about Google I/O and this year was my 9th year watching the event. I enjoyed this year’s event compared to the last 2-3 years. It reminded me of when Google introduced Holo theme and Material Design. This year they introduced Material You. On the technical side, they introduced a bunch of updates […]
-
Pass list of objects in Intent using Kotlin
Every Android developer is familiar with passing data between Activities using Bundle. The old Java way was to implement Parcelable class and then you override all the required methods. See example below. You can read more of the details here. I’m not really a fan of this type of implementation because it will make my […]
-
OnlineJobs for iOS (v4.5.2) Bug
Last week, it was one of those times where you know something went wrong when suddenly you get multiple Slack notifications. I received a Slack notification for every minute, I had to mute the channel. When I open the Bugsnag dashboard, I could see it was affecting hundreds of users. As of this moment, 154 […]
-
Bintray Shutting Down
Next month, JFrog will shut down JCenter and Bintray and my experience with their service will go along with them.
-
Dynamic TableViewCell Height
I’m going to demonstrate on how I achieved the dynamic height for my UITableViewCell. Below is what it looks like. This is a UITableViewCell for comments. ImageView on the left side is for the user’s avatar, the top most UILabel is for the username and lastly at the bottom is the UILabel for comment. Yes […]