From 789de1ca7a8edd39c979b4d45e3f4d280adb1040 Mon Sep 17 00:00:00 2001 From: IndusAryan Date: Sat, 11 Nov 2023 22:51:15 +0530 Subject: [PATCH] remove kapt and its annotation processor --- app/build.gradle.kts | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 540d8584..aabbd9e4 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -8,7 +8,6 @@ plugins { id("com.android.application") id("com.google.devtools.ksp") id("kotlin-android") - id("kotlin-kapt") id("org.jetbrains.dokka") } @@ -34,12 +33,12 @@ android { enable = true } - // disable this for now - //externalNativeBuild { - // cmake { - // path("CMakeLists.txt") - // } - //} + /* disable this for now + externalNativeBuild { + cmake { + path("CMakeLists.txt") + } + }*/ signingConfigs { create("prerelease") { @@ -58,9 +57,8 @@ android { defaultConfig { applicationId = "com.lagradost.cloudstream3" minSdk = 21 - // https://developer.android.com/about/versions/14/behavior-changes-14#safer-dynamic-code-loading - targetSdk = 33 // android 14 is fucked + targetSdk = 33 // android 14 is fu*ked versionCode = 62 versionName = "4.2.1" @@ -93,10 +91,6 @@ android { arg("room.schemaLocation", "$projectDir/schemas") arg("exportSchema", "true") } - - kapt { - includeCompileClasspath = true - } } buildTypes {