Sha256: ee4f82b95eb92e31e18ccb54b42ce5ab6d15eb557111a54c80c5a8298dd1ee59
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.pichurriajuegos.muruby" android:versionCode="1" android:versionName="1.0" android:installLocation="auto"> <application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:allowBackup="true" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:hardwareAccelerated="true" > <activity android:name="Mruby" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> <!-- Android 2.3.3 --> <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="12" /> <!-- OpenGL ES 2.0 --> <uses-feature android:glEsVersion="0x00020000" /> <!-- Allow writing to external storage --> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> </manifest>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
muruby-0.0.0 | skel/android-project/AndroidManifest.xml |