Skip to content

Commit 929b7b0

Browse files
author
Alex
committed
update deps
1 parent 171b9fd commit 929b7b0

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ buildscript {
99
rxjava_version = '3.1.2'
1010
rxandroid_version = '3.0.0'
1111
archx_version = '2.2.0'
12-
appcompatx_version = '1.4.0'
13-
material_version = '1.4.0'
12+
appcompatx_version = '1.4.1'
13+
material_version = '1.5.0'
1414
androidx_core = '1.7.0'
1515
}
1616
repositories {

reactiveviewmodel/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ afterEvaluate {
4444
release(MavenPublication) {
4545
from components.release
4646
groupId = 'com.alexdeww.reactiveviewmodel'
47-
version = '2.4.2'
47+
version = '2.4.3'
4848
}
4949
}
5050
}

reactiveviewmodel/src/main/java/com/alexdeww/reactiveviewmodel/component/ReactiveFragment.kt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
package com.alexdeww.reactiveviewmodel.component
22

33
import androidx.annotation.CallSuper
4+
import androidx.annotation.LayoutRes
45
import androidx.fragment.app.Fragment
56
import androidx.lifecycle.LifecycleOwner
67
import com.alexdeww.reactiveviewmodel.core.RvmViewComponent
78
import io.reactivex.rxjava3.disposables.Disposable
89

9-
abstract class ReactiveFragment : Fragment(), RvmViewComponent {
10+
abstract class ReactiveFragment : Fragment, RvmViewComponent {
11+
12+
constructor(@LayoutRes layoutId: Int) : super(layoutId)
1013

1114
private val disposableOnDestroyList = HashMap<String, Disposable>()
1215
private val disposableOnStopList = HashMap<String, Disposable>()
@@ -48,4 +51,4 @@ abstract class ReactiveFragment : Fragment(), RvmViewComponent {
4851
disposableOnDestroyViewList.put(tag, this)?.dispose()
4952
}
5053

51-
}
54+
}

0 commit comments

Comments
 (0)