분류 전체보기130 Android create keyhash from debug.keystore and release.keystore 카카오 문서를 참고하였음 OS X와 리눅스 : Eclipse "ADT > Preferences > Android > Build > Default debug keystore" 에서 확인 가능합니다.예 : ~/.android/debug.keystoreWindows : Eclipse "Window > Preferences > Android > Build > Default debug keystore" 에서 확인 가능합니다.Windows Vista와 Windows 7 예: C:\Users\\.android\debug.keystoreWindows XP 예 : C:\Documents and Settings\\.android\debug.keystorekeytool : $JAVA_HOME/bin 아래에 존재합니다.ope.. 2015. 1. 30. Android create keyhash 2가지 방법이 있다. 1. 첫번째 방법In order to generate key hash you need to follow some easy steps.1) Download Openssl from: here.2) Make a openssl folder in C drive3) Extract Zip files into this openssl folder created in C Drive.4) Copy the File debug.keystore from .android folder in my case (C:\Users\SYSTEM.android) and paste into JDK bin Folder in my case (C:\Program Files\Java\jdk1.6.0_05\bin)5) Open com.. 2015. 1. 26. Android about Alarmmanager... Alarmmanager 주기적인 알람을 설정할 경우,정확한 시간에 알람이 울리지 않는 경우 고려할 사항 1. 알람 리시버에 WakefulBroadcastReceiver을 상속 받았는지 확인(1분정도의 딜레이가 발생할 가능성이 있으나 거의 정확히 알람이 울림) 2. Note: Beginning with API 19 (KITKAT) alarm delivery is inexact: the OS will shift alarms in order to minimize wakeups and battery use. There are new APIs to support applications which need strict delivery guarantees; see setWindow(int, long, long, Pe.. 2015. 1. 19. Eclipse Contacting software sites has encountered a problem eclipse 업데이트 체크하다가([Help]-[Check for Updates]) 위 메세지가 발생하는 경우가 있다.이 메세지에 뒤따라 나오는 repository를 못찾는다는 것인데,eclipse 버그라는 것 같다. 해결을 위해서는.1. [Windows]-[Preferences]에 들어가서2. Install/Update의 Available Software Site에서 위의 repository를 지우자.web site가 될수도 있고 local 경로가 될수도 있다. 여튼 지우자. 2014. 11. 26. Android File folder delete /** * 폴더 삭제 * @param path * @return */ public static int deleteDir(String path) { File file = new File(path); if (file.exists()) { File[] childFileList = file.listFiles(); for (File childFile : childFileList) { if (childFile.isDirectory()) { deleteDir(childFile.getAbsolutePath()); } else { childFile.delete(); } } file.delete(); return 1; } else { return 0; } } 2014. 11. 23. 이전 1 ··· 16 17 18 19 20 21 22 ··· 26 다음