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

View File

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