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_background.png',
6  'android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png',
7  'android/app/src/main/res/mipmap-hdpi/ic_launcher.png',
8  'android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png',
9  'android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png',
10  'android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png',
11  'android/app/src/main/res/mipmap-xhdpi/ic_launcher.png',
12  'android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png',
13  'android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png',
14  'android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png',
15  'android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png',
16  'android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png',
17  'android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png',
18  'android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png',
19  'android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png',
20  'android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png',
21  'android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png',
22  'android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png',
23  'android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml',
24  'android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml',
25  'assets/iconForeground.png',
26  'assets/iconBackground.png',
27];
28
29export const ADAPTIVE_ICON_XML_WITH_BOTH = `<?xml version="1.0" encoding="utf-8"?>
30<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
31    <background android:drawable="@mipmap/ic_launcher_background"/>
32    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
33</adaptive-icon>`;
34export const ADAPTIVE_ICON_XML_WITH_BACKGROUND_COLOR = `<?xml version="1.0" encoding="utf-8"?>
35<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
36    <background android:drawable="@color/iconBackground"/>
37    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
38</adaptive-icon>`;
39export const SAMPLE_COLORS_XML = `<?xml version="1.0" encoding="utf-8"?>
40<resources>
41  <color name="splashscreen_background">#FFFFFF</color>
42</resources>`;
43export const defaultDirectoryJSON = {
44  './android/app/src/main/res/values/colors.xml': SAMPLE_COLORS_XML,
45};
46