(Unity) 使用Unity编辑选项中的minify时
关于GamePod方面,Proguard File中所有GamePod相关内容都要进行例外处理。
请在Build Settings > Player Settings > Publishing Settings > Build路径中确认Custom Proguard File设置, 根据使用下列内容的库,追加定义后使用即可。
以下内容 :
-keep class io.gamepot.common.GamePot { *; }
-keep class io.gamepot.common.GamePotAppStatus { *; }
-keep class io.gamepot.common.GamePotError { *; }
-keep class io.gamepot.common.GamePotLicenseRestfulRequest { *; }
-keep class io.gamepot.common.GamePotLog { *; }
-keep class io.gamepot.common.GamePotSharedPref { *; }
-keep class io.gamepot.common.GamePotPurchaseDetailList { *; }
-keep class io.gamepot.common.GamePotAgreeBuilder { *; }
-keep class io.gamepot.common.GamePotAgreeInfo { *; }
-keep class io.gamepot.common.GamePotLocalPushBuilder { *; }
-keep class io.gamepot.common.GamePotNoticeDialog { *; }
-keep class io.gamepot.common.GamePotChat { *; }
-keep class io.gamepot.common.GamePotChatMessage { *; }
-keep class io.gamepot.common.GamePotLocale { *; }
-keep class io.gamepot.common.GamePotPurchaseInfo { ; }
-keep class io.gamepot.common.GamePotUtils { ; }
-keep class io.gamepot.common.LinkingsQuery$ { ; }
-keep class io.gamepot.common.GamePotPermission { ; }
-keep public interface io.gamepot.common. {;}
-keep class io.gamepot.unity.plugin.GamePotUnityPlugin$SDK { *; }
-keep class com.google.firebase.FirebaseApp { *; }
-keep class io.gamepot.channel.** { *; }
-keep class io.gamepot.channel.google.signin { *; }
-keep class com.google.firebase.iid { *; }
-keep class com.android.billingclient { *; }
-keep class com.android.billingclient.api { *; }
-keep class com.google.gms.** {*;}
-keep class com.google.android.gms.auth.** { *; }
-keep class com.gaa.sdk.iap.** { ; }
-keep class com.gaa.iap.sdk.unity.* { *; }
-keep class com.samsung.android { *; }
-dontwarn com.samsung.**
Last updated