Skip to content

Commit d47f637

Browse files
Minimal apps branding (#642)
* Add icon/splash - just a quick starting point. * Call the apps CreateAI - micro:bit CreateAI doesn't fit - on iPad the space is smooshed and on Android phone I just see "micro:bit..." * Assets cap plugin pulls in prettier xml formatting so ignore the existing SVGs in the app
1 parent 367a8cc commit d47f637

File tree

74 files changed

+90
-216
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+90
-216
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
src/translations.ts
22
src/messages/
3+
src/images/

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,31 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8" ?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3-
43
<application
54
android:allowBackup="true"
65
android:icon="@mipmap/ic_launcher"
76
android:label="@string/app_name"
87
android:roundIcon="@mipmap/ic_launcher_round"
98
android:supportsRtl="true"
109
android:theme="@style/AppTheme">
11-
1210
<activity
1311
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation"
1412
android:name=".MainActivity"
1513
android:label="@string/title_activity_main"
1614
android:theme="@style/AppTheme.NoActionBarLaunch"
1715
android:launchMode="singleTask"
1816
android:exported="true">
19-
2017
<intent-filter>
2118
<action android:name="android.intent.action.MAIN" />
2219
<category android:name="android.intent.category.LAUNCHER" />
2320
</intent-filter>
24-
2521
</activity>
2622

2723
<provider
2824
android:name="androidx.core.content.FileProvider"
2925
android:authorities="${applicationId}.fileprovider"
3026
android:exported="false"
3127
android:grantUriPermissions="true">
32-
<meta-data
33-
android:name="android.support.FILE_PROVIDER_PATHS"
34-
android:resource="@xml/file_paths"></meta-data>
28+
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
3529
</provider>
3630
</application>
3731

2.38 KB
3.56 KB
1.57 KB
9.83 KB
3.58 KB
5.5 KB
17.4 KB
23.6 KB

0 commit comments

Comments
 (0)