diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2014-05-18 15:27:39 +0200 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2014-05-18 15:27:39 +0200 |
commit | 916992dc8398db364927a50a8ceb46f3053fce96 (patch) | |
tree | c26e483cb3ba023da9ea8d52ff63f1cd2aa2df87 /tests | |
parent | 59f01679a8c085ff734f9975f255bc56ab22a44d (diff) | |
download | cgeo-916992dc8398db364927a50a8ceb46f3053fce96.zip cgeo-916992dc8398db364927a50a8ceb46f3053fce96.tar.gz cgeo-916992dc8398db364927a50a8ceb46f3053fce96.tar.bz2 |
multiple lint fixes
* remove android proguard rules
* remove unused layout hierarchy elements
* suppress map layout warnings for old layouts
* remove unused images
* typo
Diffstat (limited to 'tests')
-rw-r--r-- | tests/proguard-project.txt | 56 |
1 files changed, 18 insertions, 38 deletions
diff --git a/tests/proguard-project.txt b/tests/proguard-project.txt index f0b04dc..20b2222 100644 --- a/tests/proguard-project.txt +++ b/tests/proguard-project.txt @@ -1,40 +1,20 @@ --optimizationpasses 5
--dontusemixedcaseclassnames
--dontskipnonpubliclibraryclasses
--dontpreverify
--verbose
--optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
+# To enable ProGuard in your project, edit project.properties
+# to define the proguard.config property as described in that file.
+#
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in ${sdk.dir}/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the ProGuard
+# include property in project.properties.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
--keep public class * extends android.app.Activity
--keep public class * extends android.app.Application
--keep public class * extends android.app.Service
--keep public class * extends android.content.BroadcastReceiver
--keep public class * extends android.content.ContentProvider
--keep public class * extends android.app.backup.BackupAgentHelper
--keep public class * extends android.preference.Preference
--keep public class com.android.vending.licensing.ILicensingService
+# Add any project specific keep options here:
--keepclasseswithmembernames class * {
- native <methods>;
-}
-
--keepclasseswithmembers class * {
- public <init>(android.content.Context, android.util.AttributeSet);
-}
-
--keepclasseswithmembers class * {
- public <init>(android.content.Context, android.util.AttributeSet, int);
-}
-
--keepclassmembers class * extends android.app.Activity {
- public void *(android.view.View);
-}
-
--keepclassmembers enum * {
- public static **[] values();
- public static ** valueOf(java.lang.String);
-}
-
--keep class * implements android.os.Parcelable {
- public static final android.os.Parcelable$Creator *;
-}
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
\ No newline at end of file |