Revision: 2482
http://sourceforge.net/p/swingme/code/2482
Author: yuranet
Date: 2021-06-28 09:33:58 +0000 (Mon, 28 Jun 2021)
Log Message:
-----------
use shared proguard file
Modified Paths:
--------------
SwingMETest/ios/build.gradle
SwingMETest/src/net/yura/mobile/test/MainTest.java
Removed Paths:
-------------
SwingMETest/ios/proguard.append.cfg
Modified: SwingMETest/ios/build.gradle
===================================================================
--- SwingMETest/ios/build.gradle 2021-06-28 09:32:23 UTC (rev 2481)
+++ SwingMETest/ios/build.gradle 2021-06-28 09:33:58 UTC (rev 2482)
@@ -33,6 +33,10 @@
}
}
+moeMainProGuard {
+ appendCfgFile "../../iOSME/proguard.append.cfg"
+}
+
dependencies {
implementation rootProject
implementation project(":iOSME")
Deleted: SwingMETest/ios/proguard.append.cfg
===================================================================
--- SwingMETest/ios/proguard.append.cfg 2021-06-28 09:32:23 UTC (rev 2481)
+++ SwingMETest/ios/proguard.append.cfg 2021-06-28 09:33:58 UTC (rev 2482)
@@ -1,3 +0,0 @@
-
--keep class net.yura.mobile.test.MyMidlet { *; }
-
Modified: SwingMETest/src/net/yura/mobile/test/MainTest.java
===================================================================
--- SwingMETest/src/net/yura/mobile/test/MainTest.java 2021-06-28 09:32:23 UTC (rev 2481)
+++ SwingMETest/src/net/yura/mobile/test/MainTest.java 2021-06-28 09:33:58 UTC (rev 2482)
@@ -261,7 +261,8 @@
case DesktopPane.DRAGGED: return "DRAGGED";
case DesktopPane.PRESSED: return "PRESSED";
case DesktopPane.RELEASED: return "RELEASED";
- default: return "Unknown";
+ case DesktopPane.CANCEL: return "CANCEL";
+ default: return "Unknown " + type;
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|