I am trying to use the Simple Voice Chat mod in my dev env, however, the project will not build when using fg.deobf to load the mod, and obvoiusly fails when not using fg.deobf as the obfuscated mod is then running in a deobfuscated environment. Here is the code I am using:
...
dependencies {
minecraft 'net.minecraftforge:forge:1.19.2-43.2.0'
implementation "de.maxhenkel.voicechat:voicechat-api:2.3.3"
runtimeOnly fg.deobf("maven.modrinth:simple-voice-chat:forge-1.19.2-2.3.24")
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
}
...
and here is the gradle build log:
Heres my full build.gradle:
Thanks!