Skip to content

Commit fb4f7a5

Browse files
committed
fix: Use intermediate androidx versions compatible with SDK 34
- androidx.appcompat: 1.5.1 (between 1.3.0 and 1.7.1) - androidx.recyclerview: 1.3.0 (between 1.2.0 and 1.4.0) - androidx.browser: 1.5.0 (between 1.3.0 and 1.8.0) - androidx.annotation: 1.5.0 (between 1.2.0 and 1.9.1) These are newer than current main but still compatible with SDK 34
1 parent cab8c9b commit fb4f7a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ dependencies {
8080
})
8181
testImplementation 'junit:junit:4.13.2'
8282

83-
implementation 'androidx.appcompat:appcompat:1.6.1'
83+
implementation 'androidx.appcompat:appcompat:1.5.1'
8484
implementation 'com.google.android.material:material:1.3.0'
85-
implementation 'androidx.recyclerview:recyclerview:1.3.2'
85+
implementation 'androidx.recyclerview:recyclerview:1.3.0'
8686
implementation 'androidx.cardview:cardview:1.0.0'
87-
implementation 'androidx.browser:browser:1.7.0'
87+
implementation 'androidx.browser:browser:1.5.0'
8888
implementation 'androidx.palette:palette:1.0.0'
8989
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
9090
implementation 'com.google.android.flexbox:flexbox:3.0.0'
91-
implementation "androidx.annotation:annotation:1.7.1"
91+
implementation "androidx.annotation:annotation:1.5.0"
9292
// JSR305 annotations for javax.annotation
9393
implementation 'com.google.code.findbugs:jsr305:3.0.2'
9494
// 3rd part Dependencies...

0 commit comments

Comments
 (0)