Skip to content

Commit

Permalink
Version 1.0.9, try fixing Jitpack build by upgrading Java compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
acsbendi committed Dec 10, 2024
1 parent 8bb579d commit 171e817
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ allprojects {

```gradle
dependencies {
implementation 'com.github.acsbendi:Android-Request-Inspector-WebView:1.0.8'
implementation 'com.github.acsbendi:Android-Request-Inspector-WebView:1.0.9'
}
```

Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
`maven-publish`
}

val currentVersion = "1.0.8"
val currentVersion = "1.0.9"

group = "com.acsbendi"
version = currentVersion
Expand All @@ -28,8 +28,8 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

publishing {
Expand Down

0 comments on commit 171e817

Please sign in to comment.