Closed StevensND closed 1 month ago
Managed to solve the Gradle version error but now I'm getting this error ...
@Adubbz @TSRBerry
I'm still on Ghidra 11.0.3. Once the Arch repositories update to Ghidra 11.2 I'll have a look.
@StevensND latest gradle requirements is JDK 21
this line is no longer permitted in the context("configuration" cannot be dependency anymore), and must be removed https://github.com/Adubbz/Ghidra-Switch-Loader/blob/master/build.gradle#L64
https://github.com/Adubbz/Ghidra-Switch-Loader/blob/master/gradle/wrapper/gradle-wrapper.properties#L3
swap for distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
after addressing this, then a new issue appears
in other words.
remove https://github.com/Adubbz/Ghidra-Switch-Loader/blob/master/build.gradle#L63-L64
add implementation group: 'org.lz4', name: 'lz4-java', version: '1.8.0' localDeps group: 'org.lz4', name: 'lz4-java', version: '1.8.0'
add distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
@StevensND latest gradle requirements is JDK 21
this line is no longer permitted in the context("configuration" cannot be dependency anymore), and must be removed https://github.com/Adubbz/Ghidra-Switch-Loader/blob/master/build.gradle#L64
https://github.com/Adubbz/Ghidra-Switch-Loader/blob/master/gradle/wrapper/gradle-wrapper.properties#L3 swap for
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
after addressing this, then a new issue appears
in other words.
remove https://github.com/Adubbz/Ghidra-Switch-Loader/blob/master/build.gradle#L63-L64
add implementation group: 'org.lz4', name: 'lz4-java', version: '1.8.0' localDeps group: 'org.lz4', name: 'lz4-java', version: '1.8.0'
add distributionUrl=https://services.gradle.org/distributions/gradle-8.10.2-bin.zip
Cool. TYSM for the help!!.
I was only missing:
add implementation group: 'org.lz4', name: 'lz4-java', version: '1.8.0' localDeps group: 'org.lz4', name: 'lz4-java', version: '1.8.0'
Because I had no idea that I needed to modify that. Again: Tysm ♥
I was trying to update SwitchLoader to latest Ghidra version: 11.2
I'm getting this error about Gradle. I saw that you're using 7.5.1 and the latest Gradle version is 8.10.2
Can you update this?. Thanks.