-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from VenomVendor/release/v-2.0.0
Release/v 2.0.0 Fixes#5 Updated gradle to the latest Updated support versions. Bump version for next release. Updated Proguard rules. Fixes #5 In some devices android service was not starting, this was the reason behind app getting struck at 0/0 during deletion. Removed deletion in service & made it in async task. Added support for deleting multiple sms at once Update to Lambda expressions Removed unnecessary global variables. Added delay in showing sms switching dialog. Fixed formatting.
- Loading branch information
Showing
29 changed files
with
819 additions
and
531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/* | ||
-optimizationpasses 5 | ||
-allowaccessmodification | ||
-dontpreverify | ||
|
||
# The remainder of this file is identical to the non-optimized version | ||
# of the Proguard configuration file (except that the other file has | ||
# flags to turn off optimization). | ||
|
||
-dontusemixedcaseclassnames | ||
-dontskipnonpubliclibraryclasses | ||
-verbose | ||
|
||
-keepattributes *Annotation* | ||
-keep public class com.google.vending.licensing.ILicensingService | ||
-keep public class com.android.vending.licensing.ILicensingService | ||
|
||
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native | ||
-keepclasseswithmembernames class * { | ||
native <methods>; | ||
} | ||
|
||
# keep setters in Views so that animations can still work. | ||
# see http://proguard.sourceforge.net/manual/examples.html#beans | ||
-keepclassmembers public class * extends android.view.View { | ||
void set*(***); | ||
*** get*(); | ||
} | ||
|
||
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations | ||
-keepclassmembers enum * { | ||
public static **[] values(); | ||
public static ** valueOf(java.lang.String); | ||
} | ||
|
||
-keepclassmembers class * implements android.os.Parcelable { | ||
public static final android.os.Parcelable$Creator CREATOR; | ||
} | ||
|
||
-keepclassmembers class **.R$* { | ||
public static <fields>; | ||
} | ||
|
||
# The support library contains references to newer platform versions. | ||
# Don't warn about those in case this app is linking against an older | ||
# platform version. We know about them, and they are safe. | ||
-dontwarn android.support.** | ||
|
||
# Understand the @Keep support annotation. | ||
-keep class android.support.annotation.Keep | ||
|
||
-keep @android.support.annotation.Keep class * {*;} | ||
|
||
-keepclasseswithmembers class * { | ||
@android.support.annotation.Keep <methods>; | ||
} | ||
|
||
-keepclasseswithmembers class * { | ||
@android.support.annotation.Keep <fields>; | ||
} | ||
|
||
-keepclasseswithmembers class * { | ||
@android.support.annotation.Keep <init>(...); | ||
} |
Oops, something went wrong.