Skip to content

Commit

Permalink
presentation:base:1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eadm committed Jun 13, 2020
1 parent 8cbeeee commit 82d1368
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ext.versions = [
viewNavigationName : '1.0.2',
viewInjectionName : '1.0.0',

presentationBaseName : '1.1.0',
presentationBaseName : '1.1.1',

minSdk : 16,
targetSdk : 28,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ru.nobird.android.presentation.base.delegate.PresenterDelegate
abstract class PresenterBase<V>(
private val presenterViewContainer: PresenterViewContainer<V> = DefaultPresenterViewContainer()
) : DisposableViewModel(), PresenterViewContainer<V> by presenterViewContainer {
protected open val delegates: List<PresenterDelegate<V>> = emptyList()
protected open val delegates: List<PresenterDelegate<in V>> = emptyList()

override val nestedDisposables: List<DisposableViewModel>
get() = delegates
Expand Down

0 comments on commit 82d1368

Please sign in to comment.