Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added <uses-feature android:glEsVersion="0x00020000"/> to AndroidManifest #1872

Merged
merged 1 commit into from Jan 22, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -63,20 +63,17 @@ public class Cocos2dxGLSurfaceView extends GLSurfaceView {
public Cocos2dxGLSurfaceView(final Context context) {
super(context);

this.setEGLContextClientVersion(2);

this.initView();
}

public Cocos2dxGLSurfaceView(final Context context, final AttributeSet attrs) {
super(context, attrs);

this.setEGLContextClientVersion(2);


this.initView();
}

protected void initView() {
this.setEGLContextClientVersion(2);
this.setFocusableInTouchMode(true);

Cocos2dxGLSurfaceView.mCocos2dxGLSurfaceView = this;
Expand Down
1 change: 1 addition & 0 deletions samples/Cpp/HelloCpp/proj.android/AndroidManifest.xml
Expand Up @@ -5,6 +5,7 @@
android:versionName="1.0">

<uses-sdk android:minSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
1 change: 1 addition & 0 deletions samples/Cpp/SimpleGame/proj.android/AndroidManifest.xml
Expand Up @@ -5,6 +5,7 @@
android:versionName="1.0">

<uses-sdk android:minSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
1 change: 1 addition & 0 deletions samples/Cpp/TestCpp/proj.android/AndroidManifest.xml
Expand Up @@ -5,6 +5,7 @@
android:versionName="1.0">

<uses-sdk android:minSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
Expand Up @@ -5,6 +5,7 @@
android:versionName="1.0">

<uses-sdk android:minSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
Expand Up @@ -5,6 +5,7 @@
android:versionName="1.0">

<uses-sdk android:minSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
Expand Up @@ -5,6 +5,7 @@
android:versionName="1.0">

<uses-sdk android:minSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
Expand Up @@ -5,6 +5,7 @@
android:versionName="1.0">

<uses-sdk android:minSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
Expand Up @@ -5,6 +5,7 @@
android:versionName="1.0">

<uses-sdk android:minSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
3 changes: 2 additions & 1 deletion samples/Lua/HelloLua/proj.android/AndroidManifest.xml
Expand Up @@ -4,7 +4,8 @@
android:versionCode="1"
android:versionName="1.0">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8"/>
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
3 changes: 2 additions & 1 deletion samples/Lua/TestLua/proj.android/AndroidManifest.xml
Expand Up @@ -4,7 +4,8 @@
android:versionCode="1"
android:versionName="1.0">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8"/>
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />

<application android:label="@string/app_name"
android:icon="@drawable/icon">
Expand Down
Expand Up @@ -2,6 +2,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0" package="org.my">

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />
<application android:label="@string/app_name" android:debuggable="true">
<activity android:name=".LuaProjectTemplate"
android:label="@string/app_name"
Expand Down