We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 100427d commit 50c1a94Copy full SHA for 50c1a94
src/platforms/android/index.ts
@@ -511,7 +511,7 @@ export class AndroidAssetGenerator extends AssetGenerator {
511
template: AndroidOutputAssetTemplateSplash,
512
pipe: Sharp
513
): Promise<[string, OutputInfo]> {
514
- const drawableDir = `drawable-${template.density}`;
+ const drawableDir = template.density ? `drawable-${template.density}` : 'drawable';
515
516
const resPath = this.getResPath(project);
517
const parentDir = join(resPath, drawableDir);
0 commit comments