@nativescript-community/ui-image 4.1.4 → 4.1.5
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 +11 -0
- package/package.json +2 -2
- package/platforms/android/include.gradle +12 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
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
|
+
## [4.1.5](https://github.com/nativescript-community/ui-image/compare/v4.1.4...v4.1.5) (2022-02-18)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* **android:** build fix with N forks ([dfb24ef](https://github.com/nativescript-community/ui-image/commit/dfb24efb98bc0a2b777b2261db71513b8ea215e8))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
## [4.1.4](https://github.com/nativescript-community/ui-image/compare/v4.1.3...v4.1.4) (2022-01-14)
|
7
18
|
|
8
19
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-image",
|
3
|
-
"version": "4.1.
|
3
|
+
"version": "4.1.5",
|
4
4
|
"description": "Advanced and efficient image display plugin which uses Fresco (Android) and SDWebImage (iOS) to implement caching, placeholders, image effects, and much more.",
|
5
5
|
"main": "./image",
|
6
6
|
"sideEffects": false,
|
@@ -36,5 +36,5 @@
|
|
36
36
|
},
|
37
37
|
"license": "Apache-2.0",
|
38
38
|
"readmeFilename": "README.md",
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "9b313b3320e8d081321b71597f7c52019cc9ab5c"
|
40
40
|
}
|
@@ -1,7 +1,18 @@
|
|
1
1
|
|
2
|
+
import groovy.json.JsonSlurper
|
2
3
|
repositories {
|
4
|
+
mavenCentral()
|
5
|
+
def appDir = "$rootDir/../../.."
|
6
|
+
def widgetsDir = "$appDir/node_modules/@nativescript/core/platforms/android"
|
7
|
+
def appPackageJsonFile = file("$appDir/package.json")
|
8
|
+
if (appPackageJsonFile.exists()) {
|
9
|
+
def appPackageJson = new JsonSlurper().parseText(appPackageJsonFile.text)
|
10
|
+
if (appPackageJson.dependencies['@akylas/nativescript'] != null) {
|
11
|
+
widgetsDir = "$appDir/node_modules/@akylas/nativescript/platforms/android"
|
12
|
+
}
|
13
|
+
}
|
3
14
|
flatDir {
|
4
|
-
dirs
|
15
|
+
dirs "$widgetsDir"
|
5
16
|
}
|
6
17
|
}
|
7
18
|
dependencies {
|