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
19 lines
515 B
XML
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>
|
|
|
|
|