├── .gitattributes ├── .gitignore ├── AUTHORS ├── README.md ├── assets ├── android.svg ├── androiddevnotes.png ├── jetpack_compose_androiddevnotes.png └── kotlin.svg └── contributing.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevnotes/awesome-jetpack-compose-android-apps/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | desktop.ini -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevnotes/awesome-jetpack-compose-android-apps/HEAD/AUTHORS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevnotes/awesome-jetpack-compose-android-apps/HEAD/README.md -------------------------------------------------------------------------------- /assets/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevnotes/awesome-jetpack-compose-android-apps/HEAD/assets/android.svg -------------------------------------------------------------------------------- /assets/androiddevnotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevnotes/awesome-jetpack-compose-android-apps/HEAD/assets/androiddevnotes.png -------------------------------------------------------------------------------- /assets/jetpack_compose_androiddevnotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevnotes/awesome-jetpack-compose-android-apps/HEAD/assets/jetpack_compose_androiddevnotes.png -------------------------------------------------------------------------------- /assets/kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevnotes/awesome-jetpack-compose-android-apps/HEAD/assets/kotlin.svg -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevnotes/awesome-jetpack-compose-android-apps/HEAD/contributing.md --------------------------------------------------------------------------------