obytes/app-icon-badge

Not working in an expo environment

josefelbez opened this issue · 6 comments

Hi i can't make it work with a expo environment, the icon is generated correctly in the .expo/app-icon-badge folder but it doesnt appear when I run android or is not within the android folders correctly.

My icons are presented in app.config.ts as

icon: "./assets/icon.png",

android: {
    package: Env.BUNDLE_ID,
    adaptiveIcon: {
      foregroundImage: "./assets/adaptive-icon.png",
      backgroundColor: "#000000",
    },
  },

And the plugin is specified as"

[
      "app-icon-badge",
      {
        enabled: Env.APP_ENV !== "production", // enable/ disable the plugin based on the environment (usually disabled for production builds)
        badges: [
          {
            text: Env.APP_ENV,
            type: "banner",
          },
          {
            text: Env.VERSION.toString(),
            type: "ribbon",
          },
        ],
      },
    ],

this is the icon that is presented in .expo/app-icon-badge
image

but it generates like this in the android res folder
image

i tried to delete the android folders and run prebuild again but no changes

yjose commented

can share the expo version you are using ?

Im using expo Latest version:
50.0.17

yjose commented

@josefelbez Can you replace Env.APP_ENV and Env.VERSION.toString() with static values to make sure they are not the source of the problem?

@josefelbez Can you replace Env.APP_ENV and Env.VERSION.toString() with static values to make sure they are not the source of the problem?

Just did it, still happening.

I mean is not fixed yet, Fyi. @yjose

I can't reproduce the issue. Please use the latest version to see if your problem has been resolved. If not, check if your setup is similar to the Obytes Starter config.