ANDROID ENGINEER

Shreyansh Lodha

Android developer and Kotlin enthusiast crafting mobile experiences

About

Hi, I’m Shreyansh, a Kotlin advocate who’s been crafting Android experiences for over 6 years. Currently solving complex mobile challenges as a Staff Engineer at Mutual Mobile | A Grid Dynamics Company.

My days are spent architecting KMP solutions, building with Jetpack Compose, and obsessing over API design. I’m driven by the belief that great code should be both powerful and elegant.

Beyond the IDE, I’m an avid gamer and tech explorer, always curious about what’s next in mobile development.

TechCarousel.kt
1 @Preview
2 @Composable
3 fun TechCarousel() {
4   val skills = remember {
5     listOf(
6       "Kotlin", "Android", "Compose",
7       "Gradle", "Java", "Git", "GitHub",
8       "Firebase", "SQLite", "Docker",
9       "Linux", "GraphQL", "Ktor",
10     )
11   }
12   HorizontalMultiBrowseCarousel(
13     state = rememberCarouselState { skills.size },
14     preferredItemWidth = 120.dp,
15   ) { SkillChip(skills[it]) }
16 }
2019
2020
2021
2022
2025
Now