-
Updated
Mar 24, 2022 - Kotlin
android-architecture
Here are 800 public repositories matching this topic...
-
Updated
Sep 9, 2021 - Java
-
Updated
Feb 5, 2021
-
Updated
Nov 19, 2021 - Java
-
Updated
Jan 4, 2022 - Java
-
Updated
May 14, 2021 - Java
-
Updated
Oct 30, 2021 - Kotlin
-
Updated
Aug 5, 2020 - Java
-
Updated
Jun 3, 2021 - Java
-
Updated
Dec 10, 2020
-
Updated
Nov 26, 2020 - Java
-
Updated
Oct 1, 2020 - Java
-
Updated
Jun 13, 2021 - Java
-
Updated
Nov 3, 2021 - Java
Why not Hilt?
Why don't you use Hilt? Google says
Dagger and Hilt code can coexist in the same codebase. However, in most cases it is best to use Hilt to manage all of your usage of Dagger on Android.
-
Updated
Apr 27, 2020 - Java
-
Updated
Dec 24, 2020 - Java
-
Updated
Jun 4, 2021 - Kotlin
-
Updated
Dec 16, 2021 - Java
-
Updated
Mar 14, 2022 - Kotlin
-
Updated
Nov 3, 2020 - Kotlin
-
Updated
Dec 14, 2018 - Java
-
Updated
Jan 3, 2022 - Kotlin
-
Updated
Mar 17, 2022 - Kotlin
-
Updated
Jul 8, 2019 - Kotlin
-
Updated
Aug 2, 2020 - Java
If you want to contribute resources to learn-jetpack-compose-android, Pull Requests are welcomed!
If you are a beginner looking for your first contribution to Open Source, I will help you with Pull Request and contributing guide.
Feel free to send Pull Requests, fix typos, grammatical mistakes ...
-
Updated
Apr 29, 2020 - HTML
Improve this page
Add a description, image, and links to the android-architecture topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the android-architecture topic, visit your repo's landing page and select "manage topics."
举个例子:
@Nullable public static String getString(@NonNull Intent intent, @NonNull String key, @Nullable String defaultValue) { return getString(intent.getExtras(), key, defaultValue); }
getString的已经有了defaultValue,然而还是Nullable,整个方法返回的也是Nullable,那么这个默认值感觉没有什么意义,也没有节省任何非空的判断