0
我想混淆我的團隊創建的使用類反射的jar文件。 (我想?)Proguard - 保持反射/內省類
比如我有以下幾點:
Field fProposalPopupFiled = ContentAssistant.class.getDeclaredField("fProposalPopup");
我應該如何修改我library.pro文件,以確保適當的類保持?
我知道我需要爲proguard使用-keep
參數,但是現在我應該寫出特定於上述示例的那一行嗎?