|
@@ -4,6 +4,7 @@ import android.app.Activity;
|
|
|
import android.app.Application;
|
|
|
import android.content.Context;
|
|
|
import android.content.Intent;
|
|
|
+import android.content.res.Configuration;
|
|
|
import android.os.Build;
|
|
|
import android.text.TextUtils;
|
|
|
import android.webkit.WebView;
|
|
@@ -404,6 +405,25 @@ public final class YYXXCommSdk {
|
|
|
new Object[]{activity, permissions, callback});
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ public void onConfigurationChanged(Configuration newConfigs) {
|
|
|
+ if (checkSdkBridgeNull(Function.ON_CONFIGURATION_CHANGED, null)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ SdkBridgeManager.call(Function.ON_CONFIGURATION_CHANGED, new Class[]{Intent.class}, new Object[]{newConfigs});
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public void onRequestPermissionsResult(int requestCode,String[] permissions,int[] grantResults){
|
|
|
+ if (checkSdkBridgeNull(Function.ON_REQUEST_PERMISSIONS_RESULT, null)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ SdkBridgeManager.call(Function.ON_REQUEST_PERMISSIONS_RESULT, new Class[]{int.class,String[].class,int[].class}, new Object[]{requestCode,permissions,grantResults});
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
public String getCurrentOpenId() {
|
|
|
if (checkSdkBridgeNull(Function.GET_CURRENT_USER_ID, null)) {
|
|
|
return "";
|