Abhimanyu

Results 9 issues of Abhimanyu

**Changes** 1. Changed icons used to use Nia Design System defined icons. 2. Replaced `ArrowBack` from `Rounded` to `Filled` variant as `Rounded` was not used, but `Filled` was.

### Describe your environment * Android device: _____LGE * Android OS version: _____Android 6 * Google Play Services version: _____ * Firebase/Play Services SDK version: _____ * FirebaseUI version: ____6.2.0...

auth

**Describe the bug** Unable to setup custom domain name Current jitpack artifact URL - https://jitpack.io/#Abhimanyu14/emoji-core Repo URL - https://github.com/Abhimanyu14/emoji-core GitHub user URL - https://github.com/Abhimanyu14 Custom domain - https://makeappssimple.com/ **To Reproduce**...

Migrating Hilt compiler from "hilt-android-compiler" to "hilt-compiler". "hilt-android-compiler" is renamed to "hilt-compiler" https://github.com/google/dagger/releases/tag/dagger-2.29.1

**What I have done and why** Migrating Hilt compiler from "hilt-android-compiler" to "hilt-compiler". "hilt-android-compiler" is renamed to "hilt-compiler" https://github.com/google/dagger/releases/tag/dagger-2.29.1 **How I'm testing it** _Choose at least one:_ - Unit tests...

For Jetpack Compose, the file names will mostly match the Composable method name. But, detekt is not checking for method names. ## Expected Behavior `CustomButton.kt` ``` data class CustomButtonData( //...

rules
discussion

## Expected Behavior If `build.gradle` has `kotlinOptions.freeCompilerArgs` defined for opt-in experimental APIs, the `@androidx.compose.material3.ExperimentalMaterial3Api` is not required in the usage site in the code. But, detekt still shows lint error...

bug

MissingPackageDeclaration rule is reporting an issue for a file that does have package declaration. ## Expected Behavior No issues ## Observed Behavior MissingPackageDeclaration rule is reporting an issue for a...

bug

Can we add an extension function similar to `List` for `ImmutableList`? ``` @kotlin.internal.InlineOnly public inline fun ImmutableList?.orEmpty(): ImmutableList = this ?: persistentListOf() ```