diff --git a/build.gradle.kts b/build.gradle.kts index b19ff67..8038bbd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,8 +12,8 @@ buildscript { dependencies { classpath("com.android.tools.build:gradle:7.0.4") // Cloudstream gradle plugin which makes everything work and builds plugins - classpath("com.github.recloudstream:gradle:master-SNAPSHOT") - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10") + classpath("com.github.recloudstream:gradle:-SNAPSHOT") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21") } } @@ -41,11 +41,10 @@ subprojects { } android { - compileSdkVersion(30) - defaultConfig { minSdk = 21 - targetSdk = 30 + compileSdkVersion(33) + targetSdk = 33 } compileOptions { @@ -76,8 +75,8 @@ subprojects { // but you dont need to include any of them if you dont need them // https://github.com/recloudstream/cloudstream/blob/master/app/build.gradle implementation(kotlin("stdlib")) // adds standard kotlin features, like listOf, mapOf etc - implementation("com.github.Blatzar:NiceHttp:0.3.2") // http library - implementation("org.jsoup:jsoup:1.13.1") // html parser + implementation("com.github.Blatzar:NiceHttp:0.4.4") // http library + implementation("org.jsoup:jsoup:1.16.2") // html parser } }