UNPKG

rn-logo-replacer

Version:

This is a project aiming at remplacing the logo of a react native app with a single npx command

18 lines (17 loc) 408 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AndroidIcon = void 0; const icon_1 = require("../icon"); const androidIconPaths = [ "mipmap-hdpi", "mipmap-mdpi", "mipmap-xhdpi", "mipmap-xxhdpi", "mipmap-xxxhdpi" ]; class AndroidIcon extends icon_1.Icon { constructor() { super(androidIconPaths); } } exports.AndroidIcon = AndroidIcon;