Skip to content

Commit 836c367

Browse files
committed
gradle: upgrade AndroidX dependencies
Signed-off-by: Harsh Shandilya <[email protected]>
1 parent 15cb99a commit 836c367

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
buildscript {
22
ext {
3-
activityVersion = '1.3.1'
3+
activityVersion = '1.4.0'
44
annotationsVersion = '1.2.0'
55
appcompatVersion = '1.3.1'
66
biometricVersion = '1.1.0'
77
collectionVersion = '1.1.0'
88
constraintLayoutVersion = '2.1.1'
99
coordinatorLayoutVersion = '1.1.0'
10-
coreKtxVersion = '1.6.0'
10+
coreKtxVersion = '1.7.0'
1111
coroutinesVersion = '1.5.2'
1212
datastoreVersion = '1.0.0'
1313
desugarVersion = '1.1.5'
1414
fragmentVersion = '1.3.6'
1515
jsr305Version = '3.0.2'
1616
junitVersion = '4.13.2'
17-
lifecycleRuntimeKtxVersion = '2.3.1'
17+
lifecycleRuntimeKtxVersion = '2.4.0'
1818
materialComponentsVersion = '1.4.0'
1919
preferenceVersion = '1.1.1'
2020
zxingEmbeddedVersion = '4.3.0'

ui/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ group groupName
1212
final def keystorePropertiesFile = rootProject.file("keystore.properties")
1313

1414
android {
15-
compileSdkVersion 30
15+
compileSdkVersion 31
1616
buildFeatures {
1717
buildConfig = true
1818
dataBinding = true

ui/src/main/java/com/wireguard/android/activity/LogViewerActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ class LogViewerActivity : AppCompatActivity() {
126126
}
127127
}
128128

129-
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
129+
override fun onCreateOptionsMenu(menu: Menu): Boolean {
130130
menuInflater.inflate(R.menu.log_viewer, menu)
131-
saveButton = menu?.findItem(R.id.save_log)
131+
saveButton = menu.findItem(R.id.save_log)
132132
return true
133133
}
134134

0 commit comments

Comments
 (0)