LinusMuema /
kotlin
My personal playground for Android Kotlin features.
31/100 healthLoading repository data…
tatsuyafujisaki / repository
Personal playground for Android
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
./gradlew [module:]dependencies
./gradlew assemble[buildVariant]
./gradlew install[buildVariant]
./gradlew [module:]test[buildVariant]UnitTest
./gradlew [module:]connected[buildVariant]AndroidTest
task clean in project-level build.gradleThe following custom task in the project-level build.gradle is to delete the project-level build
directory when clicking the menu bar > Build > Clean Project.
task clean(type: Delete) {
delete rootProject.buildDir
}
val encoded: String = "<>&'\"".htmlEncode() // <>&'"
val decoded: String = String =
Html.fromHtml("<>&'"", Html.FROM_HTML_MODE_COMPACT).toString() // <>&'"
String.htmlEncode is a part of the Core KTX library and is syntactic sugar for TextUtils.htmlEncode .
val color: Color = Color.valueOf(0x11223344)
/** isOpen and close() require "androidx.drawerlayout:drawerlayout:1.1.0" or higher. */
override fun onBackPressed() {
if (drawerLayout.isOpen) {
drawerLayout.close()
return
}
super.onBackPressed()
}
Selected from shared topics, language and repository description—not editorial ratings.
LinusMuema /
My personal playground for Android Kotlin features.
31/100 healthponomarenko /
Welcome to my Android Development Playground! 🚀 Here, as a beginner in the vast world of Android development using Kotlin, I'm documenting my journey, progress, and solutions to challenges I encounter. This repository serves as a personal space to track and share my learnings, hoping it might be useful for others embarking on a similar path.
39/100 healthmarlonl3001 /
A personal Kotlin playground for mastering everything from the fundamentals to advanced concepts — all while building a modern, clean and fully functional Android app with Jetpack Compose.
oscarnipps /
Personal playground for android development with kotlin which also serves as a refresher utilizing various tips and tricks
27/100 healthNIMP3 /
A personal playground for mobile experiments using iOS, Android, Kotlin Multiplatform, Flutter, and React Native. This repo is focused on testing features, architectures, and solving real-world problems across platforms.
34/100 health