android/example: add short name for the launcher

This commit is contained in:
Daniel Kochmański 2015-10-26 10:13:08 +01:00
parent a61a0cb0a3
commit 8af6929bc8
2 changed files with 2 additions and 1 deletions

View file

@ -11,7 +11,7 @@
android:label="@string/app_name"
android:debuggable="true">
<activity android:name="HelloEclActivity">
<intent-filter>
<intent-filter android:label="@string/app_name_short">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Embeddable Common-Lisp</string>
<string name="app_name_short">Embeddable CL</string>
</resources>