Welcome! › Forums › Unity Plugins › In-App Web Browser › The browser won’t open when it’s a Release Build. › Reply To: The browser won’t open when it’s a Release Build.
August 27, 2023 at 8:00 am
#23011
Kai
Participant
Hello!
I managed to find the answer to the question I asked the other day on my own. All I had to do was add the following settings to the “proguard-user.txt” file:
`
-keep class com.unity3d.player.UnityPlayer { *; }
-keep class inappbrowser.kokosoft.com.Helper { *; }
-keep class inappbrowser.kokosoft.com.DisplayOptions { *; }
`
Sorry for the trouble.