Skip to content

Commit

Permalink
fix(android): build issues ResourceDrawableIdHelper.instance (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski authored Jan 17, 2025
1 parent 66cb3f5 commit f210909
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/brown-apricots-guess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'react-native-bottom-tabs': patch
---

fix(android): build issues ResourceDrawableIdHelper.instance
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ object ResourceIdHelper {
}

fun getResourceUri(context: Context, name: String): Uri? {
val drawableUri = ResourceDrawableIdHelper.instance.getResourceDrawableUri(context, name)
val drawableUri = ResourceDrawableIdHelper.getInstance().getResourceDrawableUri(context, name)
if (drawableUri != Uri.EMPTY) {
return drawableUri
}
Expand Down

0 comments on commit f210909

Please sign in to comment.