@nativescript-community/ui-image 5.0.8 → 5.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.0.9](https://github.com/nativescript-community/ui-image/compare/v5.0.8...v5.0.9) (2025-12-11)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **android:** build fix ([145269a](https://github.com/nativescript-community/ui-image/commit/145269a197867aa8b8597af021730e33e2d6bcdd))
11
+
6
12
  ## [5.0.8](https://github.com/nativescript-community/ui-image/compare/v5.0.7...v5.0.8) (2025-12-09)
7
13
 
8
14
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/ui-image",
3
- "version": "5.0.8",
3
+ "version": "5.0.9",
4
4
  "description": "Advanced and efficient image display plugin which uses Glide (Android) and SDWebImage (iOS) to implement caching, placeholders, image effects, and much more.",
5
5
  "main": "./index",
6
6
  "sideEffects": false,
@@ -44,5 +44,5 @@
44
44
  },
45
45
  "license": "Apache-2.0",
46
46
  "readmeFilename": "README.md",
47
- "gitHead": "68b66b496eb26b5097673b220df2e371aae94615"
47
+ "gitHead": "06b74c929674458c5eed33b53f76f743aeb7f543"
48
48
  }
@@ -6,15 +6,9 @@ dependencies {
6
6
  def glideCompilerVersion = project.hasProperty("glideCompilerVersion") ? project.glideCompilerVersion : "4.16.0"
7
7
  def glideTransformationsVersion = project.hasProperty("glideTransformationsVersion") ? project.glideTransformationsVersion : "4.3.0"
8
8
  def glideOkHttpVersion = project.hasProperty("glideOkHttpVersion") ? project.glideOkHttpVersion : "4.11.0"
9
+ def androidXAppCompatVersion = project.hasProperty("androidXAppCompat") ? project.androidXAppCompat : "1.1.0"
9
10
 
10
- def androidXAppCompatVersion = "1.1.0"
11
- if (project.hasProperty("androidXAppCompat")) {
12
- androidXAppCompatVersion = androidXAppCompat
13
- outLogger.withStyle(Style.SuccessHeader).println "\t + using android X library androidx.appcompat:appcompat:$androidXAppCompatVersion"
14
- }
15
11
  implementation "androidx.appcompat:appcompat:$androidXAppCompatVersion"
16
-
17
-
18
12
  implementation "com.github.bumptech.glide:glide:$glideVersion"
19
13
  annotationProcessor "com.github.bumptech.glide:compiler:$glideCompilerVersion"
20
14
  implementation "jp.wasabeef:glide-transformations:$glideTransformationsVersion"