Skip to content

Commit ee3c1b0

Browse files
authored
Merge pull request #10 from mobilehackinglab/fix/get-method-code
Fix for get_method_code and set minimum Java version to 21
2 parents 2982cb6 + a1e67ee commit ee3c1b0

File tree

3 files changed

+589
-290
lines changed

3 files changed

+589
-290
lines changed

plugin/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = 'jadx.plugins'
7-
version = '1.3'
7+
version = '1.4'
88

99
repositories {
1010
mavenCentral()
@@ -17,7 +17,7 @@ dependencies {
1717

1818
java {
1919
toolchain {
20-
languageVersion = JavaLanguageVersion.of(17) // Also supported older Java versions
20+
languageVersion = JavaLanguageVersion.of(21)
2121
}
2222
}
2323

@@ -29,7 +29,7 @@ jar {
2929
attributes(
3030
'Jadx-Plugin': 'true',
3131
'Jadx-Plugin-Class': 'com.mobilehackinglab.jadxplugin.McpPlugin',
32-
'Jadx-Plugin-Version': '1.2.0',
32+
'Jadx-Plugin-Version': '1.4.0',
3333
'Jadx-Plugin-Id': 'jadx-mcp-plugin',
3434
'Jadx-Plugin-Description': 'Exposes Jadx info over HTTP',
3535
'Jadx-Plugin-Author': 'Mobile Hacking Lab'
@@ -47,7 +47,7 @@ jar {
4747

4848
shadowJar {
4949
archiveBaseName = 'jadx-mcp-plugin'
50-
archiveVersion = '1.3.0'
50+
archiveVersion = '1.4.0'
5151
mergeServiceFiles()
5252
}
5353

0 commit comments

Comments
 (0)