diff --git a/.idea/misc.xml b/.idea/misc.xml index 773fe0f..0ad17cb 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,7 @@ + - + diff --git a/app/build.gradle b/app/build.gradle index 9f7cf63..14f0d56 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -11,12 +11,12 @@ keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) android { namespace 'de.lemke.studiportal' - compileSdk 33 + compileSdk 34 defaultConfig { applicationId "de.lemke.studiportal" minSdk 26 - targetSdk 33 + targetSdk 34 versionCode 16 versionName "1.3.2" @@ -76,7 +76,7 @@ android { } } -configurations.all { +configurations.configureEach { exclude group: 'androidx.appcompat', module: 'appcompat' exclude group: 'androidx.core', module: 'core' exclude group: 'androidx.drawerlayout', module: 'drawerlayout' @@ -86,7 +86,7 @@ configurations.all { } dependencies { - implementation 'io.github.oneuiproject:design:1.2.5' + implementation 'io.github.oneuiproject:design:1.2.6' implementation 'io.github.oneuiproject.sesl:appcompat:1.4.0' implementation 'io.github.oneuiproject.sesl:preference:1.1.0' implementation 'io.github.oneuiproject.sesl:recyclerview:1.4.0' diff --git a/build.gradle b/build.gradle index 9394cb1..8390fdc 100644 --- a/build.gradle +++ b/build.gradle @@ -6,17 +6,18 @@ buildscript { maven { url 'https://jitpack.io' } } dependencies { - classpath 'com.android.tools.build:gradle:8.0.2' + classpath 'com.android.tools.build:gradle:8.1.0' // NOTE: Do not place your application dependencies here; they belong in the individual module build.gradle files } } plugins { - id 'com.android.application' version '8.0.2' apply false - id 'com.android.library' version '8.0.2' apply false + id 'com.android.application' version '8.1.0' apply false + id 'com.android.library' version '8.1.0' apply false id 'org.jetbrains.kotlin.android' version '1.7.20' apply false id 'com.google.dagger.hilt.android' version '2.42' apply false + //id 'com.google.devtools.ksp' version '1.8.10-1.0.9' apply false } -task clean(type: Delete) { +tasks.register('clean', Delete) { delete rootProject.buildDir } \ No newline at end of file