use nicer app name

This commit is contained in:
Josh Holtrop 2012-11-11 21:04:48 -05:00
parent 3510b413ae
commit 5859dbe917
2 changed files with 19 additions and 15 deletions

View File

@ -1,16 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.homelinux.holtrop.opengltest"
android:versionCode="1"
android:versionName="1.0">
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<activity android:name="MainOpenGL"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.homelinux.holtrop.opengltest"
android:versionCode="1"
android:versionName="1.0">
<application
android:label="@string/app_name"
android:icon="@drawable/ic_launcher">
<activity
android:name="MainOpenGL"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
</manifest>

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">MainOpenGL</string>
<string name="app_name">Josh\'s OpenGL Test App</string>
</resources>