Simple plugin to rename fields based on the strings passed to methods like JSONObject's getString() and friends.
Turns something like this:
this.a = json.getString("importantString");
this.b = json.getInt("someNumber");...into something like this:
this.importantString = json.getString("importantString");
this.someNumber = json.getInt("someNumber");Install using location id: github:rufus-stone:jadx-name-figurer-outer
In jadx-cli:
jadx plugins --install "github:rufus-stone:jadx-name-figurer-outer"