- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
20 lines
655 B
Java
20 lines
655 B
Java
package com.firemonkeys.cloudcellapi.util;
|
|
|
|
import android.content.SharedPreferences;
|
|
import com.firemonkeys.cloudcellapi.CC_Component;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class FacebookAccessToken {
|
|
static final String TAG = "cloudcellapi.util.FacebookAccessToken";
|
|
|
|
public static void setFacebookAccessToken(String str) {
|
|
SharedPreferences.Editor edit = CC_Component.GetActivity().getPreferences(0).edit();
|
|
edit.putString("access_token", str);
|
|
edit.commit();
|
|
}
|
|
|
|
public static String getFacebookAccessToken() {
|
|
return CC_Component.GetActivity().getPreferences(0).getString("access_token", "");
|
|
}
|
|
}
|