aos,ios둘다 문자본인인증은되는데 패스만안되서 하루 시간날려서 적어놓음 

opus,gemini3.0 모두 못찾은거 gpt5.2가 힌트줬네

 

if (Platform.isAndroid && urlStr.startsWith('intent://')) {
 
try {
WebView 로딩을 먼저 끊어야 ERR_UNKNOWN_URL_SCHEME를 막을 확률이 큼
await controller.stopLoading();
} catch (_) {}

_handleIntentUrl(urlStr);

return NavigationActionPolicy.CANCEL;
}
 
 
 
위같이 await controller.stopLoading() 이게 핵심임 
 
반응형

+ Recent posts