We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
private static void getOAIDOrOtherId(Application application, boolean tryWidevine, IRegisterCallback callback) { getOAID(application, new IGetter() { @Override public void onOAIDGetComplete(String result) { if (TextUtils.isEmpty(result)) { onOAIDGetError(new OAIDException("OAID is empty")); return; } Holder.INSTANCE.clientId = result; Holder.INSTANCE.oaid = result; OAIDLog.print("Client id is OAID/AAID: " + result); //应该增加callback.onComplete callback.onComplete(result, null); } @Override public void onOAIDGetError(Exception error) { getOtherId(error, application, tryWidevine, callback); } }); }
The text was updated successfully, but these errors were encountered:
public static void register(Application application, IRegisterCallback callback) { register(application, false, null); } 还有这个方法callback没用
public static void register(Application application, IRegisterCallback callback) { register(application, false, null); }
Sorry, something went wrong.
callback居然没传入?源码已修改,稍后发个新版
ba12377
No branches or pull requests
The text was updated successfully, but these errors were encountered: