1export const LIST_OF_ANDROID_ADAPTIVE_ICON_FILES_FINAL = [
2  'android/app/src/main/res/values/colors.xml',
3  'android/app/src/main/res/mipmap-mdpi/ic_launcher.png',
4  'android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png',
5  'android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png',
6  'android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png',
7  'android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png',
8  'android/app/src/main/res/mipmap-hdpi/ic_launcher.png',
9  'android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png',
10  'android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png',
11  'android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png',
12  'android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png',
13  'android/app/src/main/res/mipmap-xhdpi/ic_launcher.png',
14  'android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png',
15  'android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png',
16  'android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png',
17  'android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png',
18  'android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png',
19  'android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png',
20  'android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png',
21  'android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png',
22  'android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png',
23  'android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png',
24  'android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png',
25  'android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png',
26  'android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png',
27  'android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png',
28  'android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml',
29  'android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml',
30  'assets/iconForeground.png',
31  'assets/iconBackground.png',
32  'assets/iconMonochrome.png',
33];
34
35export const ADAPTIVE_ICON_XML_WITH_BOTH = `<?xml version="1.0" encoding="utf-8"?>
36<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
37    <background android:drawable="@mipmap/ic_launcher_background"/>
38    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
39</adaptive-icon>`;
40export const ADAPTIVE_ICON_XML_WITH_BOTH_AND_MONOCHROME = `<?xml version="1.0" encoding="utf-8"?>
41<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
42    <background android:drawable="@mipmap/ic_launcher_background"/>
43    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
44    <monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
45</adaptive-icon>`;
46export const ADAPTIVE_ICON_XML_WITH_BACKGROUND_COLOR = `<?xml version="1.0" encoding="utf-8"?>
47<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
48    <background android:drawable="@color/iconBackground"/>
49    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
50</adaptive-icon>`;
51export const ADAPTIVE_ICON_XML_WITH_BACKGROUND_COLOR_AND_MONOCHROME = `<?xml version="1.0" encoding="utf-8"?>
52<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
53    <background android:drawable="@color/iconBackground"/>
54    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
55    <monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
56</adaptive-icon>`;
57export const SAMPLE_COLORS_XML = `<?xml version="1.0" encoding="utf-8"?>
58<resources>
59  <color name="splashscreen_background">#FFFFFF</color>
60</resources>`;
61export const defaultDirectoryJSON = {
62  './android/app/src/main/res/values/colors.xml': SAMPLE_COLORS_XML,
63};
64