fix(build.gradle): upgrade compile/target sdk to 33 and dependencies

This commit is contained in:
darkdemon 2022-12-07 13:35:07 +05:30
parent 4410925457
commit f8d2dc4824
No known key found for this signature in database
GPG Key ID: 698A958D1F0F2899
1 changed files with 4 additions and 4 deletions

View File

@ -41,11 +41,11 @@ subprojects {
} }
android { android {
compileSdkVersion(30) compileSdkVersion(33)
defaultConfig { defaultConfig {
minSdk = 21 minSdk = 21
targetSdk = 30 targetSdk = 33
} }
compileOptions { compileOptions {
@ -76,8 +76,8 @@ subprojects {
// but you dont need to include any of them if you dont need them // but you dont need to include any of them if you dont need them
// https://github.com/recloudstream/cloudstream/blob/master/app/build.gradle // https://github.com/recloudstream/cloudstream/blob/master/app/build.gradle
implementation(kotlin("stdlib")) // adds standard kotlin features, like listOf, mapOf etc implementation(kotlin("stdlib")) // adds standard kotlin features, like listOf, mapOf etc
implementation("com.github.Blatzar:NiceHttp:0.3.2") // http library implementation("com.github.Blatzar:NiceHttp:0.4.0") // http library
implementation("org.jsoup:jsoup:1.13.1") // html parser implementation("org.jsoup:jsoup:1.15.3") // html parser
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.1") implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.1")
implementation("io.karn:khttp-android:0.1.2") implementation("io.karn:khttp-android:0.1.2")
} }