diff --git a/packages/core/platforms/android/widgets-release.aar b/packages/core/platforms/android/widgets-release.aar index a6464c54b..0be222d8e 100644 Binary files a/packages/core/platforms/android/widgets-release.aar and b/packages/core/platforms/android/widgets-release.aar differ diff --git a/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/BorderDrawable.java b/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/BorderDrawable.java index 7534b2b48..d9fd9f914 100644 --- a/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/BorderDrawable.java +++ b/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/BorderDrawable.java @@ -905,13 +905,13 @@ public class BorderDrawable extends ColorDrawable implements BitmapOwner { }; outlineRectF.setEmpty(); outlineRectF.set(getBounds()); - backgroundPath.addRoundRect(outlineRectF, backgroundRadii, Path.Direction.CW); + outlineBackgroundPath.addRoundRect(outlineRectF, backgroundRadii, Path.Direction.CW); if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) { // see setConvexPath notes - outline.setPath(backgroundPath); + outline.setPath(outlineBackgroundPath); } else { - outline.setConvexPath(backgroundPath); + outline.setConvexPath(outlineBackgroundPath); } } else {