We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83403c5 commit b4992c7Copy full SHA for b4992c7
packages/image/platforms/android/include.gradle
@@ -34,12 +34,12 @@ dependencies {
34
35
// if ui-mobile-base is provided as source the name is nativescript.aar
36
//else use widget-release.aar
37
- if (file("$widgetsDir/nativescript.aar").exists()) {
+ if (file("$widgetsDir/widgets-release.aar").exists()) {
38
+ implementation(name:'widgets-release', ext:'aar')
39
+ } else {
40
implementation(name:'nativescript', ext:'aar')
41
}
- if (file("$widgetsDir/widget-release.aar").exists()) {
- implementation(name:'widget-release', ext:'aar')
42
- }
+ }
43
44
45
0 commit comments