We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
例如这个方法:getLaunchAppDetailsSettingsIntent 场景: 跳到设置,让用户去授权,客户返回app后,在onActivityResult重新判断客户有没有授权,做一些操作 bug: 因为你自动Intent.FLAG_ACTIVITY_NEW_TASK,导致onActivityResult无法获取回调,所以客户回到app界面就什么反应都没有! 建议:要吗去掉添加isNewTask,或者增加重载方法暴露boolean参数,表示是否要isNewTask这个flag!