From 30fe88a4ba257f72b44e3a9c86c259a86a693918 Mon Sep 17 00:00:00 2001 From: nin0dev Date: Sun, 24 Mar 2024 07:30:23 -0400 Subject: [PATCH] Increased target SDK --- app/build.gradle | 19 ++++++++++++++----- build.gradle | 1 + 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index fddf240..facec91 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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:+' } diff --git a/build.gradle b/build.gradle index 29d6565..e348c9a 100644 --- a/build.gradle +++ b/build.gradle @@ -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 } \ No newline at end of file