0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 20:03:05 +02:00
Anki-Android/AndroidManifest.xml
Daniel Svärd 3b291a4c22 Moved UI strings for deck picker to resources
Moved all the UI strings for the deck picker screen into strings.xml so
that they can be changed easily and to enable future translation.
2009-10-04 18:47:18 +02:00

18 lines
969 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ichi2.anki"
android:versionName="0.2" android:versionCode="4">
<application android:label="@string/app_name" android:icon="@drawable/anki" android:debuggable="false">
<activity android:name=".Ankidroid" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="DeckPicker" android:label="@string/deckpicker_title" />
<activity android:name="Preferences" android:label="Preferences" />
<activity android:name="About" android:label="About" />
</application>
<uses-sdk android:minSdkVersion="3" />
<uses-permission android:name="android.permission.VIBRATE" />
</manifest>