Skip to content

Commit

Permalink
Revert java to 1.8, fixes #826 (#827)
Browse files Browse the repository at this point in the history
Release 1.2.27
  • Loading branch information
koral-- authored Jul 3, 2023
1 parent 84a9259 commit c10c4f1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#### 1.2.27
- 2023-07-03 - [commits](https://github.com/koral--/android-gif-drawable/compare/v1.2.26...v1.2.27)
- Revert java to 1.8, fixes [(#826)](https://github.com/koral--/android-gif-drawable/pull/826), thanks @droplet-js for reporting

#### 1.2.26
- 2023-07-30 - [commits](https://github.com/koral--/android-gif-drawable/compare/v1.2.25...v1.2.26)
- 2023-06-30 - [commits](https://github.com/koral--/android-gif-drawable/compare/v1.2.25...v1.2.26)
- Update dependency versions
- Update NDK to 25.2.9519653
- Update Android Gradle plugin to 8.0.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Bundled GIFLib via JNI is used to render frames. This way should be more efficie
Insert the following dependency to `build.gradle` file of your project.
```groovy
dependencies {
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.26'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.27'
}
```
Note that Maven central repository should be defined eg. in top-level `build.gradle` like this:
Expand Down
4 changes: 2 additions & 2 deletions android-gif-drawable/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
compileSdkVersion versions.compileSdk

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RELEASE_SIGNING_ENABLED=true

GROUP=pl.droidsonroids.gif
POM_ARTIFACT_ID=android-gif-drawable
VERSION_NAME=1.2.26
VERSION_NAME=1.2.27

POM_NAME=android-gif-drawable
POM_DESCRIPTION=Views and Drawable for displaying animated GIFs for Android
Expand Down

0 comments on commit c10c4f1

Please sign in to comment.