Hey!
APK: https://drive.google.com/file/d/1XBpFGkIORvQkPu8sYaWFpSZ1ZI87QpxR/view?usp=sharing
File com/samsung/context/sdk/samsunganalytics/internal/connection/Domain.java
public enum Domain {
REGISTRATION(Utils.isEngBin() ? r2 : "https://regi.di.atlas.samsung.com"),
POLICY(r2),
DLS("");
String domain;
static {
String str = "https://stg-api.di.atlas.samsung.com";
if (!Utils.isEngBin()) {
str = "https://dc.di.atlas.samsung.com";
}
}
I believe that there shouldn't be the static block, but str should be initialized with "https://stg-api.di.atlas.samsung.com"
Hey!
APK: https://drive.google.com/file/d/1XBpFGkIORvQkPu8sYaWFpSZ1ZI87QpxR/view?usp=sharing
File
com/samsung/context/sdk/samsunganalytics/internal/connection/Domain.javaI believe that there shouldn't be the
staticblock, butstrshould be initialized with"https://stg-api.di.atlas.samsung.com"