add shortcut to ComposeActivity (#1147)
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 13 KiB |
@ -0,0 +1,20 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<shortcut |
||||
android:icon="@mipmap/ic_shortcut_compose" |
||||
android:shortcutId="com.keylesspalace.tusky.Compose" |
||||
android:shortcutLongLabel="@string/compose_shortcut_long_label" |
||||
android:shortcutShortLabel="@string/compose_shortcut_short_label"> |
||||
|
||||
<intent |
||||
android:action="android.intent.action.VIEW" |
||||
android:targetClass="com.keylesspalace.tusky.SplashActivity" |
||||
android:targetPackage="com.keylesspalace.tusky"/> |
||||
<intent |
||||
android:action="com.keylesspalace.tusky.Compose" |
||||
android:targetClass="com.keylesspalace.tusky.ComposeActivity" |
||||
android:targetPackage="com.keylesspalace.tusky"/> |
||||
|
||||
</shortcut> |
||||
|
||||
</shortcuts> |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 13 KiB |
@ -0,0 +1,20 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<shortcut |
||||
android:icon="@mipmap/ic_shortcut_compose" |
||||
android:shortcutId="com.keylesspalace.tusky.Compose" |
||||
android:shortcutLongLabel="@string/compose_shortcut_long_label" |
||||
android:shortcutShortLabel="@string/compose_shortcut_short_label"> |
||||
|
||||
<intent |
||||
android:action="android.intent.action.VIEW" |
||||
android:targetClass="com.keylesspalace.tusky.SplashActivity" |
||||
android:targetPackage="com.keylesspalace.tusky.test"/> |
||||
<intent |
||||
android:action="com.keylesspalace.tusky.Compose" |
||||
android:targetClass="com.keylesspalace.tusky.ComposeActivity" |
||||
android:targetPackage="com.keylesspalace.tusky.test"/> |
||||
|
||||
</shortcut> |
||||
|
||||
</shortcuts> |
@ -0,0 +1,9 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<background android:drawable="@drawable/ic_launcher_background"/> |
||||
<foreground> |
||||
<inset |
||||
android:inset="28%" |
||||
android:drawable="@drawable/ic_create_24dp" /> |
||||
</foreground> |
||||
</adaptive-icon> |