File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/main/java/com/wireguard/android/activity Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
ext {
3
- activityVersion = ' 1.3.1 '
3
+ activityVersion = ' 1.4.0 '
4
4
annotationsVersion = ' 1.2.0'
5
5
appcompatVersion = ' 1.3.1'
6
6
biometricVersion = ' 1.1.0'
7
7
collectionVersion = ' 1.1.0'
8
8
constraintLayoutVersion = ' 2.1.1'
9
9
coordinatorLayoutVersion = ' 1.1.0'
10
- coreKtxVersion = ' 1.6 .0'
10
+ coreKtxVersion = ' 1.7 .0'
11
11
coroutinesVersion = ' 1.5.2'
12
12
datastoreVersion = ' 1.0.0'
13
13
desugarVersion = ' 1.1.5'
14
14
fragmentVersion = ' 1.3.6'
15
15
jsr305Version = ' 3.0.2'
16
16
junitVersion = ' 4.13.2'
17
- lifecycleRuntimeKtxVersion = ' 2.3.1 '
17
+ lifecycleRuntimeKtxVersion = ' 2.4.0 '
18
18
materialComponentsVersion = ' 1.4.0'
19
19
preferenceVersion = ' 1.1.1'
20
20
zxingEmbeddedVersion = ' 4.3.0'
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ group groupName
12
12
final def keystorePropertiesFile = rootProject. file(" keystore.properties" )
13
13
14
14
android {
15
- compileSdkVersion 30
15
+ compileSdkVersion 31
16
16
buildFeatures {
17
17
buildConfig = true
18
18
dataBinding = true
Original file line number Diff line number Diff line change @@ -126,9 +126,9 @@ class LogViewerActivity : AppCompatActivity() {
126
126
}
127
127
}
128
128
129
- override fun onCreateOptionsMenu (menu : Menu ? ): Boolean {
129
+ override fun onCreateOptionsMenu (menu : Menu ): Boolean {
130
130
menuInflater.inflate(R .menu.log_viewer, menu)
131
- saveButton = menu? .findItem(R .id.save_log)
131
+ saveButton = menu.findItem(R .id.save_log)
132
132
return true
133
133
}
134
134
You can’t perform that action at this time.
0 commit comments