正在查看: Jurassic World v1.83.4 应用的 TapjoyGpsHelper.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Jurassic World v1.83.4 应用的 TapjoyGpsHelper.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package com.tapjoy;
import android.content.Context;
public class TapjoyGpsHelper {
public final Context a;
public String b;
public boolean c;
public int d = 0;
public int e = 0;
public boolean f;
public Boolean g;
public Boolean h;
public TapjoyGpsHelper(Context context) {
this.a = context;
}
public void checkGooglePlayIntegration() {
if (!isGooglePlayServicesAvailable()) {
throw new TapjoyIntegrationException("Tapjoy SDK is disabled because Google Play Services was not found. For more information about including the Google Play services client library visit http://developer.android.com/google/play-services/setup.html or http://tech.tapjoy.com/product-overview/sdk-change-log/tapjoy-and-identifiers");
}
if (!isGooglePlayManifestConfigured()) {
throw new TapjoyIntegrationException("Failed to load manifest.xml meta-data, 'com.google.android.gms.version' not found. For more information about including the Google Play services client library visit http://developer.android.com/google/play-services/setup.html or http://tech.tapjoy.com/product-overview/sdk-change-log/tapjoy-and-identifiers");
}
}
public String getAdvertisingId() {
return this.b;
}
public int getDeviceGooglePlayServicesVersion() {
return this.d;
}
public int getPackagedGooglePlayServicesVersion() {
return this.e;
}
public boolean isAdIdAvailable() {
return this.f;
}
public boolean isAdTrackingEnabled() {
return this.c;
}
public boolean isAdvertisingIdAllowed() {
if (this.a.getSharedPreferences(TapjoyConstants.TJC_PREFERENCE, 0).contains(TapjoyConstants.PREF_OPTOUT_ADVERTISING_ID)) {
return !Boolean.valueOf(r0.getBoolean(TapjoyConstants.PREF_OPTOUT_ADVERTISING_ID, false)).booleanValue();
}
return true;
}
public boolean isGooglePlayManifestConfigured() {
if (this.h == null) {
try {
this.e = this.a.getPackageManager().getApplicationInfo(this.a.getPackageName(), 128).metaData.getInt("com.google.android.gms.version");
this.h = Boolean.TRUE;
} catch (Exception unused) {
this.h = Boolean.FALSE;
}
}
return this.h.booleanValue();
}
public boolean isGooglePlayServicesAvailable() {
if (this.g == null) {
try {
this.a.getClassLoader().loadClass("com.google.android.gms.ads.identifier.AdvertisingIdClient");
this.g = Boolean.TRUE;
} catch (Error unused) {
this.g = Boolean.FALSE;
} catch (Exception unused2) {
this.g = Boolean.FALSE;
}
}
return this.g.booleanValue();
}
public void loadAdvertisingId(boolean z) {
TapjoyLog.i("TapjoyGpsHelper", "Looking for Google Play Services...");
if (!isGooglePlayServicesAvailable() || !isGooglePlayManifestConfigured()) {
TapjoyLog.i("TapjoyGpsHelper", "Google Play Services not found");
return;
}
TapjoyLog.i("TapjoyGpsHelper", "Packaged Google Play Services found, fetching advertisingID...");
TapjoyLog.i("TapjoyGpsHelper", "Packaged Google Play Services version: " + this.e);
TapjoyAdIdClient tapjoyAdIdClient = new TapjoyAdIdClient(this.a);
if (isAdvertisingIdAllowed()) {
this.f = tapjoyAdIdClient.setupAdIdInfo();
} else {
this.f = false;
}
try {
this.d = this.a.getPackageManager().getPackageInfo("com.google.android.gms", 0).versionCode;
TapjoyLog.i("TapjoyGpsHelper", "Device's Google Play Services version: " + this.d);
} catch (Exception unused) {
TapjoyLog.i("TapjoyGpsHelper", "Error getting device's Google Play Services version");
}
if (this.f) {
this.c = tapjoyAdIdClient.isAdTrackingEnabled();
this.b = tapjoyAdIdClient.getAdvertisingId();
TapjoyLog.i("TapjoyGpsHelper", "Found advertising ID: " + this.b);
TapjoyLog.i("TapjoyGpsHelper", "Is ad tracking enabled: " + Boolean.toString(this.c));
return;
}
TapjoyLog.i("TapjoyGpsHelper", "Error getting advertisingID from Google Play Services");
if (z) {
this.c = false;
if (isAdvertisingIdAllowed()) {
this.b = "00000000-0000-0000-0000-000000000000";
this.f = true;
} else {
resetAdvertisingID();
this.f = false;
}
}
}
public void resetAdvertisingID() {
this.b = "";
}
}