1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

Android update

This commit is contained in:
Zeno Rogue 2022-07-13 00:02:03 +02:00
parent 68507a555f
commit 0bcf2ca0ab
3 changed files with 7 additions and 7 deletions

View File

@ -1,13 +1,13 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 29 compileSdkVersion 33
buildToolsVersion "29.0.1" buildToolsVersion "33.0.0"
defaultConfig { defaultConfig {
applicationId "com.roguetemple.hyperroid" applicationId "com.roguetemple.hyperroid"
minSdkVersion 18 minSdkVersion 18
targetSdkVersion 29 targetSdkVersion 33
// multiDexEnabled true // multiDexEnabled true
//javaMaxHeapSize "4g" //javaMaxHeapSize "4g"

View File

@ -1,7 +1,7 @@
<?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 xmlns:android="http://schemas.android.com/apk/res/android"
package="com.roguetemple.hyperroid" package="com.roguetemple.hyperroid"
android:versionCode="12060" android:versionName="12.0f" android:versionCode="12070" android:versionName="12.0u"
android:installLocation="auto"> android:installLocation="auto">
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> --> <!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> -->
<!-- <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="9" /> --> <!-- <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="9" /> -->
@ -13,7 +13,7 @@
android:windowSoftInputMode="adjustResize" android:windowSoftInputMode="adjustResize"
android:configChanges="orientation|keyboardHidden|screenSize" android:configChanges="orientation|keyboardHidden|screenSize"
android:name=".HyperRogue" android:name=".HyperRogue"
android:launchMode="singleTask" > android:launchMode="singleTask" android:exported="false">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
@ -25,7 +25,7 @@
android:name=".HyperSettings"> android:name=".HyperSettings">
</activity> </activity>
<service android:name=".ForegroundService" > <service android:name=".ForegroundService" android:exported="false">
</service> </service>
<provider <provider

View File

@ -17,7 +17,7 @@
#define ISANDROID 1 #define ISANDROID 1
#define GL_ES #define GL_ES
#define CAP_ACHIEVE 1 #define CAP_ACHIEVE 0
#define CAP_SHADER 1 #define CAP_SHADER 1
#define CAP_VERTEXBUFFER 0 #define CAP_VERTEXBUFFER 0
#define CAP_TIMEOFDAY 1 #define CAP_TIMEOFDAY 1