This repository was archived by the owner on Jan 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +13
-11
lines changed
java/de/tum/in/tumcampusapp/utils Expand file tree Collapse file tree 5 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 17
17
steps :
18
18
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
19
19
- uses : actions/checkout@v3
20
-
20
+ - name : Set up JDK 17
21
+ uses : actions/setup-java@v3
22
+ with :
23
+ java-version : ' 17'
24
+ distribution : ' adopt'
21
25
- name : Build
22
26
run : ./gradlew build
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id ' de.aaschmid.cpd' version ' 3.1 '
2
+ id ' de.aaschmid.cpd' version ' 3.3 '
3
3
}
4
4
// apply plugin: "io.gitlab.arturbosch.detekt"
5
5
apply plugin : ' com.android.application'
@@ -17,7 +17,8 @@ apply from: '../gradle/scripts/checkstyle.gradle'
17
17
apply from : ' ../gradle/scripts/testLogging.gradle'
18
18
19
19
android {
20
- compileSdkVersion 32
20
+ compileSdk 33
21
+ namespace " de.tum.in.tumcampusapp"
21
22
buildTypes {
22
23
all {
23
24
proguardFiles(file(' ../proguard' ). listFiles())
@@ -37,9 +38,9 @@ android {
37
38
defaultConfig {
38
39
applicationId " de.tum.in.tumcampus"
39
40
minSdkVersion 26
40
- targetSdkVersion 32
41
- versionCode 587
42
- versionName " 4.2 -dev"
41
+ targetSdkVersion 33
42
+ versionCode 588
43
+ versionName " 4.3 -dev"
43
44
44
45
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
45
46
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest xmlns : tools =" http://schemas.android.com/tools"
3
- package =" de.tum.in.tumcampusapp" >
4
-
2
+ <manifest xmlns : tools =" http://schemas.android.com/tools" >
5
3
<uses-sdk tools : overrideLibrary =" android.support.test.uiautomator.v18" />
6
4
</manifest >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
3
xmlns : tools =" http://schemas.android.com/tools"
4
- package =" de.tum.in.tumcampusapp"
5
4
android : installLocation =" auto"
6
5
tools : ignore =" UnusedAttribute" >
7
6
<!-- Standard access rights -->
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ val Menu.allItems: List<MenuItem>
55
55
get() {
56
56
return items.flatMap { item ->
57
57
if (item.hasSubMenu()) {
58
- item.subMenu.allItems
58
+ item.subMenu!! .allItems
59
59
} else {
60
60
listOf (item)
61
61
}
You can’t perform that action at this time.
0 commit comments