Skip to content

Commit

Permalink
Version 1.7
Browse files Browse the repository at this point in the history
Merged https://github.com/hsiafan/apk-parser
Fixed some exceptions in the ThreadCodeAnalyzer and FileCodeAnalyzer classes
Added ScriptCodeAnalyzer
Added CryptoAnalyzer
Added ApkyAnalyzerTool
Added ApkAnalyzer
Added ApkDexAnalyzer
Added ApkMetaAnalyzer
Added ApkSignersAnalyzer
  • Loading branch information
OpticFusion1 committed Sep 26, 2022
1 parent 03edf93 commit 1a55878
Show file tree
Hide file tree
Showing 141 changed files with 13,219 additions and 48 deletions.
28 changes: 20 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>optic_fusion1</groupId>
<artifactId>Kitsune</artifactId>
<version>1.6</version>
<version>1.7</version>

<build>
<resources>
Expand Down Expand Up @@ -143,20 +143,32 @@
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.14.3</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.11.0</version>
<version>1.15.3</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>5.12.1</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.58</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.58</version>
<optional>true</optional>
</dependency>
</dependencies>

<properties>
Expand Down
Loading

0 comments on commit 1a55878

Please sign in to comment.