* (html5) -s PRECISE_F32=2 was added to the compile, fixes "drunk midi". However, it hurts performance. This will be removed after FMOD fixes their stuff (see http://www.fmod.org/questions/question/midi-sounds-drunk-in-html5/ ) * (html5) Enabled Proton's persistent support for dink/dmod installs and saves git-svn-id: svn://rtsoft.com/rtsvn/projects/RTDink@1621 353e56fe-9613-0410-8469-b96ad8e6f29c
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.rtsoft.rtdink"
|
|
android:versionCode="11"
|
|
android:versionName="1.91"
|
|
android:installLocation="preferExternal"
|
|
>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application android:label="@string/app_name"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
android:icon="@drawable/icon"
|
|
>
|
|
<activity android:name="Main"
|
|
android:label="@string/app_name"
|
|
android:configChanges="keyboard|keyboardHidden|orientation"
|
|
android:screenOrientation="landscape"
|
|
>
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="21" />
|
|
</manifest>
|