Skip to content

Instantly share code, notes, and snippets.

View yusuf-murodov's full-sized avatar
🎯
Focusing

yusuf-murodov

🎯
Focusing
View GitHub Profile
@nuhkoca
nuhkoca / HiltDataBinding.kt
Last active February 26, 2024 16:33
A demonstration about how to inject BindingAdapters with Dagger Hilt.
BindingScoped.kt
@Scope
@Retention(AnnotationRetention.BINARY)
annotation class BindingScoped
-------------------------------------------------------
CustomBindingComponent.kt
@dirkvranckaert
dirkvranckaert / AndroidManifest.xml
Last active September 19, 2021 00:26
Taking a picture using a FileProvider
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name">
...
<provider