Files
android_development/tools/recovery_l10n/AndroidManifest.xml
Doug Zongker a95366ae57 add an app to generate localized text bitmaps needed for recovery
Recovery only knows how to display images, so any text has to be
turned into bitmaps.  This app displays each localized version of the
text in a TextView and then captures a bitmap, combining them and
generating an output PNG.

Change-Id: Ib16858a1d66e9839d1255b962fb1aaf8982bfe10
2012-08-29 16:04:12 -07:00

19 lines
515 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.recovery_l10n">
<application android:label="Recovery Localizer">
<activity android:name="Main"
android:label="Recovery Localizer">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>