Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in / Register
Toggle navigation
GmsCore
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
17
Issues
17
List
Boards
Labels
Milestones
Merge Requests
3
Merge Requests
3
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
e
apps
GmsCore
Commits
cfc90b45
Unverified
Commit
cfc90b45
authored
Oct 25, 2019
by
Marvin W
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ensure ProGuard does not "optimize" away our code
parent
2c5c30bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
proguard.flags
proguard.flags
+5
-4
No files found.
proguard.flags
View file @
cfc90b45
# We use ProGuard for optimizations, obfuscation is for those who have sth to hide
-dontobfuscate
-optimizations !code/allocation/variable
# We're referencing stuff that is unknown to the system
#-libraryjar ../unifiednlp-compat/build/classes/java/main
-dontwarn java.awt.**
...
...
@@ -15,6 +11,7 @@
-dontwarn com.caverock.androidsvg.**
-dontwarn org.slf4j.**
-dontwarn org.codehaus.jackson.**
-dontwarn com.android.location.provider.**
# Disable ProGuard Notes, they won't help here
-dontnote
...
...
@@ -38,6 +35,10 @@
@org.microg.gms.common.HttpFormClient$* *;
}
# Keep our stuff
-keep class org.microg.** { *; }
-keep class com.google.android.gms.** { *; }
# Keep asInterface method cause it's accessed from SafeParcel
-keepattributes InnerClasses
-keepclassmembers interface * extends android.os.IInterface {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment