Skip to content

Commit

Permalink
bump target sdk and upgrade http libs and json (#3)
Browse files Browse the repository at this point in the history
* bump target sdk and upgrade http libs and json
  • Loading branch information
IndusAryan authored Dec 13, 2023
1 parent bb5b769 commit dc08ab8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,10 @@ subprojects {
}

android {
compileSdkVersion(30)

defaultConfig {
minSdk = 21
targetSdk = 30
compileSdkVersion(33)
targetSdk = 33
}

compileOptions {
Expand Down Expand Up @@ -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
}
}

Expand Down

0 comments on commit dc08ab8

Please sign in to comment.