Mehedi Hassan Piash | Senior Software Engineer | Android | iOS | KMP | Ktor | Jetpack Compose | React-Native.

November 19, 2022

Authenticate api if accessToken expired in retrofit api client in android [Kotlin]

November 19, 2022 Posted by Piash , No comments
 Expiring access token for authenticating api is a common case in mobile app development when implementing any api in our app. In this case, we have to update the access token called the refresh token to access the api further.As we use retrofit and okHttp in our android application for calling...

September 03, 2022

Exposed BaseTable for generating createdAt and updatedAt in Ktor part-4

September 03, 2022 Posted by Piash , No comments
 ktor BaseTable in terms of IntIdTableimport org.jetbrains.exposed.dao.*import org.jetbrains.exposed.sql.ReferenceOptionimport org.joda.time.DateTimeimport org.joda.time.DateTimeZonefun currentUtc(): DateTime = DateTime.now(DateTimeZone.UTC)abstract class BaseIntIdTable(name: String) : IntIdTable(name)...

May 27, 2022

March 31, 2022

ExoPlayer in Android Part-1 [kotlin]

March 31, 2022 Posted by Piash , No comments
 Sometimes we need the player to play our media either video or audio. Exoplayer is the best choice to play our video and audio.So what is Exoplayer? ExoPlayer is an application level media player for Android. It provides an alternative to Android’s MediaPlayer API for playing audio and video both...