Increased target SDK
This commit is contained in:
parent
d21f742eda
commit
30fe88a4ba
2 changed files with 15 additions and 5 deletions
|
@ -1,14 +1,15 @@
|
|||
plugins {
|
||||
id 'com.android.application'
|
||||
id 'org.jetbrains.kotlin.android'
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'dev.vencord.vendroid'
|
||||
namespace 'com.nin0dev.vendroid'
|
||||
compileSdk 34
|
||||
|
||||
defaultConfig {
|
||||
applicationId "dev.vencord.vendroid"
|
||||
minSdk 21
|
||||
applicationId "com.nin0dev.vendroid"
|
||||
minSdk 24
|
||||
targetSdk 34
|
||||
versionCode 3
|
||||
versionName "1.0"
|
||||
|
@ -24,13 +25,21 @@ android {
|
|||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
targetCompatibility JavaVersion.VERSION_11
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = '17'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'androidx.annotation:annotation:1.7.1'
|
||||
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.28'
|
||||
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||
implementation 'com.google.android.material:material:1.10.0'
|
||||
implementation 'androidx.activity:activity:1.8.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||
implementation 'androidx.core:core-ktx:+'
|
||||
}
|
||||
|
||||
|
|
|
@ -2,4 +2,5 @@
|
|||
plugins {
|
||||
id 'com.android.application' version '8.3.1' apply false
|
||||
id 'com.android.library' version '8.3.1' apply false
|
||||
id 'org.jetbrains.kotlin.android' version '2.0.0-Beta5' apply false
|
||||
}
|
Loading…
Reference in a new issue