Skip to content

Commit

Permalink
targetSDK 34
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemkinator committed Jul 25, 2023
1 parent edd58df commit 0082bef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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'
Expand All @@ -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'
Expand Down
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 0082bef

Please sign in to comment.