-
Notifications
You must be signed in to change notification settings - Fork 948
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 #768 from SecUpwN/development
Unchaining WIP-Release v0.1.39-alpha
- Loading branch information
Showing
94 changed files
with
1,582 additions
and
735 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
|
||
# Keystores | ||
keystore.jks | ||
|
||
# Built application files | ||
*.apk | ||
*.ap_ | ||
|
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
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 |
---|---|---|
@@ -1,49 +1,62 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE module PUBLIC | ||
<?xml version="1.0"?><!DOCTYPE module PUBLIC | ||
"-//Puppy Crawl//DTD Check Configuration 1.2//EN" | ||
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> | ||
|
||
<module name="Checker"> | ||
<!--module name="NewlineAtEndOfFile"/--> | ||
<module name="NewlineAtEndOfFile" /> | ||
<module name="FileLength"> | ||
<property name="max" value="2500"/> | ||
<property name="max" value="2500" /> | ||
</module> | ||
<!--module name="FileTabCharacter"/--> | ||
|
||
<!-- Name Checks --> | ||
<module name="TreeWalker"> | ||
<property name="severity" value="info" /> | ||
|
||
<module name="ConstantName" /> | ||
<module name="LocalFinalVariableName" /> | ||
<module name="LocalVariableName" /> | ||
<module name="MemberName" /> | ||
<module name="MethodName" /> | ||
<module name="ParameterName" /> | ||
<module name="StaticVariableName" /> | ||
<module name="TypeName" /> | ||
</module> | ||
<module name="TreeWalker"> | ||
|
||
<!--module name="ConstantName"/> | ||
<module name="LocalFinalVariableName"/> | ||
<module name="LocalVariableName"/> | ||
<module name="MemberName"/> | ||
<module name="MethodName"/> | ||
<module name="ParameterName"/> | ||
<module name="StaticVariableName"/> | ||
<module name="TypeName"/--> | ||
|
||
|
||
<!-- Checks for imports --> | ||
<!-- See http://checkstyle.sf.net/config_import.html --> | ||
<module name="IllegalImport"/> <!-- defaults to sun.* packages --> | ||
<module name="RedundantImport"/> | ||
<module name="AvoidStarImport"/> | ||
<module name="IllegalImport" /><!-- defaults to sun.* packages --> | ||
<module name="RedundantImport" /> | ||
<module name="UnusedImports"> | ||
<property name="processJavadoc" value="true"/> | ||
<property name="processJavadoc" value="true" /> | ||
</module> | ||
|
||
<!-- Modifier Checks --> | ||
<!-- See http://checkstyle.sf.net/config_modifiers.html --> | ||
<module name="ModifierOrder"/> | ||
<module name="RedundantModifier"/> | ||
<module name="ModifierOrder" /> | ||
<module name="RedundantModifier" /> | ||
|
||
<module name="CovariantEquals"/> | ||
<module name="EmptyStatement"/> | ||
<module name="CovariantEquals" /> | ||
<module name="EmptyStatement" /> | ||
|
||
|
||
<module name="IllegalInstantiation"/> | ||
<module name="IllegalInstantiation"> | ||
<property name="classes" value="java.util.Vector"/> | ||
<property name="classes" value="java.util.Hashtable"/> | ||
</module> | ||
<module name="IllegalType"> | ||
<property name="illegalClassNames" value="java.util.Vector"/> | ||
<property name="illegalClassNames" value="java.util.Hashtable"/> | ||
<property name="illegalClassNames" value="java.util.ArrayList"/> | ||
<property name="illegalClassNames" value="java.util.LinkedList"/> | ||
<property name="illegalClassNames" value="android.util.Log"/> | ||
</module> | ||
|
||
<!--module name="MissingSwitchDefault"/--> | ||
<!--module name="RedundantThrows"/--> | ||
<module name="SimplifyBooleanExpression"/> | ||
<module name="SimplifyBooleanReturn"/> | ||
<module name="SimplifyBooleanExpression" /> | ||
<module name="SimplifyBooleanReturn" /> | ||
</module> | ||
</module> |
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
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 |
---|---|---|
|
@@ -228,4 +228,4 @@ public int getDescription() { | |
return description; | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.