Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
27cb40ee
Commit
27cb40ee
authored
May 24, 2019
by
Viktor De Pasquale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed test options from proguard
parent
c06081b7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
proguard-kotlin.pro
app/proguard-kotlin.pro
+12
-7
No files found.
app/proguard-kotlin.pro
View file @
27cb40ee
## So every class is case insensitive to avoid some bizare problems
-
dontusemixedcaseclassnames
-
dontusemixedcaseclassnames
-
keep
class
kotlin
.
**
{
*
;
}
-
keep
class
kotlin
.
Metadata
{
*
;
}
## If reflection issues come up uncomment this, that should temporarily fix it
#-keep class kotlin.** { *; }
#-keep class kotlin.Metadata { *; }
#-keepclassmembers class kotlin.Metadata {
# public <methods>;
#}
## Never warn about Kotlin, it should work as-is
-
dontwarn
kotlin
.
**
-
dontwarn
kotlin
.
**
-
keepclassmembers
class
kotlin
.
Metadata
{
public
<
methods
>
;
}
# Removes runtime null checks - doesn't really matter if it crashes on kotlin or java NPE
#
#
Removes runtime null checks - doesn't really matter if it crashes on kotlin or java NPE
-
assumenosideeffects
class
kotlin
.
jvm
.
internal
.
Intrinsics
{
-
assumenosideeffects
class
kotlin
.
jvm
.
internal
.
Intrinsics
{
static
void
checkParameterIsNotNull
(
java
.
lang
.
Object
,
java
.
lang
.
String
);
static
void
checkParameterIsNotNull
(
java
.
lang
.
Object
,
java
.
lang
.
String
);
}
}
# Useless option for dex
#
#
Useless option for dex
-
dontpreverify
-
dontpreverify
\ No newline at end of file
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