Revision: 2779
http://sourceforge.net/p/swingme/code/2779
Author: yuranet
Date: 2024-08-31 15:45:28 +0000 (Sat, 31 Aug 2024)
Log Message:
-----------
fix to install on new android versions
Modified Paths:
--------------
SwingMETest/android/AndroidManifest.xml
Modified: SwingMETest/android/AndroidManifest.xml
===================================================================
--- SwingMETest/android/AndroidManifest.xml 2024-08-19 19:16:22 UTC (rev 2778)
+++ SwingMETest/android/AndroidManifest.xml 2024-08-31 15:45:28 UTC (rev 2779)
@@ -4,7 +4,7 @@
android:versionCode="1"
android:versionName="1.0">
- <uses-sdk android:targetSdkVersion="30" />
+ <uses-sdk android:targetSdkVersion="34" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
@@ -38,7 +38,8 @@
android:launchMode="singleTask"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize|stateHidden"
- android:configChanges="orientation|keyboard|keyboardHidden|screenLayout|uiMode|screenSize|smallestScreenSize">
+ android:configChanges="orientation|keyboard|keyboardHidden|screenLayout|uiMode|screenSize|smallestScreenSize"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|