Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devhumblechris/the-resource
A curated list of resources for Kotlin Jetpack Compose Resources
https://github.com/devhumblechris/the-resource
Last synced: about 2 months ago
JSON representation
A curated list of resources for Kotlin Jetpack Compose Resources
- Host: GitHub
- URL: https://github.com/devhumblechris/the-resource
- Owner: DevHumbleChris
- License: mit
- Created: 2023-11-22T09:23:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-22T15:40:16.000Z (about 1 year ago)
- Last Synced: 2024-04-16T17:27:09.927Z (9 months ago)
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jetpack Compose Resources
A curated list of resources for Jetpack Compose.
## Official Documentation
- [Jetpack Compose Documentation](https://developer.android.com/jetpack/compose)## Tutorials
- [Getting Started with Jetpack Compose](https://developer.android.com/codelabs/jetpack-compose-basics)
- [Jetpack Compose Navigation Tutorial](https://developer.android.com/codelabs/jetpack-compose-navigation)## Sample Projects
- [Jetpack Compose Samples](https://github.com/android/compose-samples)## Videos
- [Jetpack Compose Basics](https://www.youtube.com/watch?v=Q9MtlmmN4Q0)## Retrofit dependencies
```
// Retrofit
implementation("com.squareup.retrofit2:retrofit:2.9.0")
// Retrofit with Scalar Converter
implementation("com.squareup.retrofit2:converter-scalars:2.9.0")// Update Retrofit with Searilization
implementation("com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:1.0.0")
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.okhttp3:okhttp:4.11.0")
implementation("io.coil-kt:coil-compose:2.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1")
```# Android Permissions ( Add Internet Permissions)
1. Open `manifests/AndroidManifest.xml`. Add this line just before the `` tag:```
```
# Coil dependency
```
// Coil
implementation("io.coil-kt:coil-compose:2.4.0")
```