Skip to content

Commit

Permalink
Update dagger to v2.51 (#3387)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Mar 1, 2024
1 parent 26642da commit 7d93e33
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ androidx-room = "2.6.1"
androidx-viewpager2 = "1.0.0"
androidx-work = "2.9.0"
circuit = "0.19.1"
dagger = "2.50"
dagger = "2.51"
eventbus = "3.3.1"
facebook = "16.3.0"
facebook-flipper = "0.247.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import org.greenrobot.eventbus.ThreadMode
abstract class BaseToolActivity<B : ViewDataBinding>(@LayoutRes contentLayoutId: Int) :
BaseBindingActivity<B>(contentLayoutId) {
@Inject
protected lateinit var downloadManager: GodToolsDownloadManager
lateinit var downloadManager: GodToolsDownloadManager
@Inject
@Named(IS_CONNECTED_LIVE_DATA)
internal lateinit var isConnected: LiveData<Boolean>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ internal const val MSG_FEATURE_DISCOVERY = 1

abstract class BaseActivity protected constructor() : AppCompatActivity() {
@Inject
protected lateinit var eventBus: EventBus
lateinit var eventBus: EventBus
@Inject
protected lateinit var settings: Settings
lateinit var settings: Settings

// region Lifecycle
override fun onCreate(savedInstanceState: Bundle?) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import splitties.fragmentargs.arg
abstract class CyoaPageFragment<B : ViewDataBinding, C : BaseController<*>>(@LayoutRes layoutId: Int, page: String?) :
BaseFragment<B>(layoutId), ShowTipCallback {
@Inject
protected lateinit var eventBus: EventBus
internal lateinit var eventBus: EventBus

protected val dataModel by activityViewModels<MultiLanguageToolActivityDataModel>()
internal val toolState by activityViewModels<ToolStateHolder>()
Expand Down

0 comments on commit 7d93e33

Please sign in to comment.