📄 midletsje.pro
字号:
#
# This ProGuard configuration file illustrates how to process J2ME midlets.
# Usage:
# java -jar proguard.jar @midlets.pro
#
# Specify the library jars, input jars, and output jar.
-libraryjars C:\Nokia\Devices\Series_60_MIDP_SDK_for_Symbian_OS_v_1_2\lib\Series_60_MIDP_SDK_for_Symbian_OS_v_1_2\j2me-debug.zip
-injars S2.jar
-outjar S3.jar
# Allow methods with the same signature, except for the return type,
# to get the same obfuscation name.
-overloadaggressively
# Put all obfuscated classes into the nameless root package.
# -defaultpackage ''
# Preserve all public midlets.
-keep public class * extends javax.microedition.midlet.MIDlet
#-keep public class BusQuery
-keepclasseswithmembers public class FanJian {
public static void main(java.lang.String[]);
}
# Print out a list of what we're preserving.
-printseeds
-printmapping map.txt
# Your midlet may contain more items that need to be preserved;
# typically classes that are dynamically created using Class.forName:
# -keep public class mypackage.MyClass
# -keep public interface mypackage.MyInterface
# -keep public class * implements mypackage.MyInterface
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -