Skip to content

Commit 1ccd65a

Browse files
committed
Downgrade all AndroidX dependencies to latest stable version.
1 parent 48a5430 commit 1ccd65a

3 files changed

Lines changed: 9 additions & 12 deletions

File tree

buildSrc/dependencies.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ rootProject.ext.versions = [
1010
coroutines: '1.3.8',
1111
],
1212
androidx : [
13-
core : '1.5.0-alpha01',
14-
annotation : '1.2.0-alpha01',
15-
appCompat : '1.3.0-alpha01',
16-
activity : '1.2.0-alpha06',
17-
fragment : '1.3.0-alpha06',
13+
core : '1.3.1',
14+
annotation : '1.1.0',
15+
appCompat : '1.1.0',
16+
activity : '1.1.0',
17+
fragment : '1.2.5',
1818
coordinatorLayout: '1.1.0',
19-
recyclerView : '1.2.0-alpha04',
19+
recyclerView : '1.1.0',
2020
constraintLayout : '1.1.3',
2121
arch : '2.1.0',
22-
lifecycle : '2.3.0-alpha05',
22+
lifecycle : '2.2.0',
2323
test : [
2424
core : '1.3.0-beta01',
2525
monitor: '1.3.0-beta01',
@@ -31,7 +31,7 @@ rootProject.ext.versions = [
3131
],
3232
espresso : '3.3.0-beta01'
3333
],
34-
material : '1.3.0-alpha01',
34+
material : '1.2.0-rc01',
3535
rxJava2 : '2.2.19',
3636
rxJava3 : '3.0.4',
3737
rxKotlin3 : '3.0.0',

samples/demo-common/src/main/res/layout/activity_notes.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@
3333
app:layout_constraintStart_toStartOf="parent"
3434
app:layout_constraintTop_toTopOf="parent" />
3535

36-
<com.google.android.material.progressindicator.ProgressIndicator
36+
<reactivecircus.blueprint.ui.widget.IndeterminateProgressBar
3737
android:id="@+id/progress_bar"
38-
style="@style/Widget.MaterialComponents.ProgressIndicator.Circular.Indeterminate"
3938
android:layout_width="wrap_content"
4039
android:layout_height="wrap_content"
4140
android:visibility="gone"

samples/demo-rx/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ android {
1919

2020
lintOptions {
2121
disable 'GoogleAppIndexingWarning'
22-
// TODO remove once lint analysis error is fixed
23-
disable "NullSafeMutableLiveData"
2422
}
2523

2624
buildTypes {

0 commit comments

Comments
 (0)