본문 바로가기

전체 글208

Mac(맥) 에서 사용하는 유용한 무료 DB(데이터베이스) SQL 툴 DBeaver 이라는 툴 입니다. 무료이기도 하고 정말 윈도우에서 쓰다가 맥으로 넘어와서 여기는 뭘 깔아서 조회해보지? 할때 정말 좋은거같아요. 많은 데이터베이스를 지원하고있더라구요..! 연결도 그렇게 어렵지않게 할수 있었습니다. https://dbeaver.io/ DBeaver Community | Free Universal Database Tool DBeaver Universal Database Tool Free multi-platform database tool for developers, database administrators, analysts and all people who need to work with databases. Supports all popular databases: MySQ.. 2021. 9. 27.
Xcode Errors 'GoogleUtilities/GULSceneDelegateSwizzler.h' file not found 해결법 pod update 명령어로 해결했습니다! 2021. 9. 9.
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.