tangweijun

update

...@@ -32,4 +32,6 @@ ...@@ -32,4 +32,6 @@
32 - 2020-3-27 32 - 2020-3-27
33 - 加了玩家达到某个vip等级的事件类型,加了角色上报的回调和上报的类型日志,替换PoolSdk_V2_xxxx.jar 33 - 加了玩家达到某个vip等级的事件类型,加了角色上报的回调和上报的类型日志,替换PoolSdk_V2_xxxx.jar
34 - 2020-4-9 34 - 2020-4-9
35 - - 在登录之后增加实名认证返回选择框,替换PoolSdk_V2_xxxx.jar
...\ No newline at end of file ...\ No newline at end of file
35 + - 在登录之后增加实名认证返回选择框,替换PoolSdk_V2_xxxx.jar
36 +- 2020-4-16
37 + - 权限返回接口加了一个上下文的参数,替换PoolSdk_V2_xxxx.jar
...\ No newline at end of file ...\ No newline at end of file
......
No preview for this file type
No preview for this file type
...@@ -106,7 +106,7 @@ public class AppActivity extends Activity implements OnClickListener { ...@@ -106,7 +106,7 @@ public class AppActivity extends Activity implements OnClickListener {
106 @Override 106 @Override
107 public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) { 107 public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
108 super.onRequestPermissionsResult(requestCode, permissions, grantResults); 108 super.onRequestPermissionsResult(requestCode, permissions, grantResults);
109 - PoolSdkHelper.onRequestPermissionsResult(requestCode, permissions, grantResults); 109 + PoolSdkHelper.onRequestPermissionsResult(this,requestCode, permissions, grantResults);
110 } 110 }
111 111
112 @Override 112 @Override
......
...@@ -442,7 +442,7 @@ public static void showExitDialog(final PoolExitDialogListener exitDialogListene ...@@ -442,7 +442,7 @@ public static void showExitDialog(final PoolExitDialogListener exitDialogListene
442 442
443 ### 2.11、Android 生命周期接口(必接) ### 443 ### 2.11、Android 生命周期接口(必接) ###
444 444
445 -`注意:权限返回接口为必接接口,接入代码 PoolSdkHelper.onRequestPermissionsResult(requestCode, permissions, grantResults);` 445 +`注意:权限返回接口为必接接口,接入代码 PoolSdkHelper.onRequestPermissionsResult(this,requestCode, permissions, grantResults);`
446 446
447 说明:在游戏 Activity 的 onStart、onPause、onResume、 onStop、onDestroy、onRestart、onNewIntent、 onActivityResult、onConfigurationChanged、onSaveInstanceState、onRestoreInstanceState、onWindowFocusChanged、onWindowAttributesChanged、onRequestPermissionsResult中分别调用对应的接口 447 说明:在游戏 Activity 的 onStart、onPause、onResume、 onStop、onDestroy、onRestart、onNewIntent、 onActivityResult、onConfigurationChanged、onSaveInstanceState、onRestoreInstanceState、onWindowFocusChanged、onWindowAttributesChanged、onRequestPermissionsResult中分别调用对应的接口
448 448
......
No preview for this file type
No preview for this file type