Trying to do a GET HTTPS request but it is not working on IOS MOE. If I do a normal HTTP request it works fine, but with HTTPS there is no error or success response. On Android HTTPS requests are working fine.
Altough I found the problem. Adding this option to gradle:
moe {
proguardLevel 'all'
}
causes the problem. But this option reduces the file size so I would rather keep it. I am guessing that I must add some lines in the proguard.append.cfg
in order to make this work. Has anyone any ideas what those lines should be? Current content of the proguard.append.cfg
:
-keep class com.badlogic.** { *; }
-keep enum com.badlogic.** { *; }
-keepclassmembers class ** {
@org.moe.natj.objc.ann.** public *;
}
-keep class mk.gdx.firebase.**{*;}
-keepattributes Signature
-keepattributes *Annotation*
I am using LibGDX 1.9.8, IOS-MOE 1.4.2 and Java 8.