Shreyas Patil

Results 21 issues of Shreyas Patil

## Introduction When the sonatype host took a lot of time to respond while running the `closeAndReleaseRepository`, the exception occurred twice. So there must be a configuration to specify a...

Currently, the report is generated in a single file which is not convenient to refer to in a vast project. So if the report is divided across multiple files based...

Should we not use `distinctUntilChanged()` in dao?. ```kt @Query("SELECT * FROM ${Post.TABLE_NAME} WHERE ID = :postId") fun getPostById(postId: Int): Flow fun getPostByIdUntilChanged(id: Int) = getPostById(id).distinctUntilChanged() ``` cause if we update...

- Setup CodeCov tool for measuring code coverage of the Noty Android application and API service. - Not important at all. Still, we can consider this at then end. -...

priority-low
noty-api
noty-android
Blocked

Throw error while running KSP if name of declared property is one from the fixed reserved generated properties like `_stateFlowImpl`, `fun asStateFlow()`

enhancement
hacktoberfest

It would be nice to have kotlin extensions support for this library. It'll make easy development for kotlin. For e.g. ```kotlin socket.on("chat-message") { data -> // handle data } ```

enhancement

Subscribers/Observers shouldn't listen when activity is stopped.

enhancement
improvement

# Summary - This PR adds a utility function that supports performing SQL transactions with ease. - Fixed typo of a filename `DataSourceExtensions.kt` _(Earlier its name was `DataSoruceExtensions.kt`)_. ## Example...