bump target sdk and upgrade http libs and json (#3)

* bump target sdk and upgrade http libs and json
master
IndusAryan 2023-12-14 00:42:27 +05:30 committed by GitHub
parent bb5b769127
commit dc08ab8d29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 6 deletions

View File

@ -40,11 +40,10 @@ subprojects {
}
android {
compileSdkVersion(30)
defaultConfig {
minSdk = 21
targetSdk = 30
compileSdkVersion(33)
targetSdk = 33
}
compileOptions {
@ -74,9 +73,9 @@ subprojects {
// these dependencies can include any of those which are added by the app,
// 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(kotlin("stdlib")) // adds standard kotlin features
implementation("com.github.Blatzar:NiceHttp:0.4.4") // http library
implementation("org.jsoup:jsoup:1.16.2") // html parser
}
}