본문 바로가기

전체 글210

Xcode Errors were encountered while preparing your device for development. Please check the Devices and Simulators Window. 해결 디바이스의 전원을 껏다키면 해결... 2021. 9. 6.
Android 앱 캐시 및 데이터 내가 원하는것만 골라서 삭제해보자. public static void clearApplicationData(Context context) { File cache = context.getCacheDir(); File appDir = new File(cache.getParent()); if (appDir.exists()) { String[] children = appDir.list(); for (String list : children) { Log.d("캐시삭제 ", list); if(list.equals("shared_prefs")) continue; deleteDir(new File(appDir, list)); } } } private static boolean deleteDir(File dir) { if (dir != null && di.. 2021. 8. 20.
Swift WKWebView 로드 시 url에 한글이 포함되어있는 경우 var url = 본인 url주소 변수.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)! url = URL(string: url)! 이렇게 하셔서 url변수를 웹뷰에 로드하시면 문제가 해결됩니다. 2021. 8. 20.
android11 intent 패키지명으로 외부 앱 실행 시 안되는 현상 try{ Intent intent = getPackageManager().getLaunchIntentForPackage(packageName); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent); } catch (Exception e){ e.printStackTrace(); String url = "market://details?id=" + packageName; Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); startActivity(i); } 원래는 이렇게 하여서 패키지명으로 외부앱을 실행했습니다! 근데 안드로이드 11을 타겟팅하신다고 하시면 메니페스트에서 하나 추가해주.. 2021. 7. 22.