분류 전체보기 2617

Multidex를 사용할 수 없는 Eclipse에서 JAR에 dex를 추가하여 메소드 65536개 오류 방지하기

출처: https://arincblossom.wordpress.com/2015/07/15/multidex를-사용할-수-없는-eclipse에서-jar에-dex를-추가하여-메소드-65536/ 흔한 라이브러리 왕창 쓰면 나는 오류 Conversion to Dalvik format failed: Unable to execute dex: method ID not in [0, 0xffff]: 65536 해결법 출처 http://stackoverflow.com/questions/24135158/how-to-load-a-jar-from-asse..

JNI Local Reference Changes in ICS ( ICS 부터 바뀌는 JNI Local Reference )

출처: http://aroundck.tistory.com/635 http://android-developers.blogspot.com/2011/11/jni-local-reference-changes-in-ics.html 오늘은 "JNI Local Reference Changes in ICS" 를 주제로 알아보겠습니다. JNI Local Reference Changes in ICS 당신이 native code 를 쓰는 것이 아닌 native 함수만 사용한다면 그만 읽어도 됩니다. 하지만, 당신이 JNI ..

[펌] 모바일 웹 브라우저에서 앱 설치여부에 따라 앱 또는 마켓으로 이동시키기

출처: http://marobiana.tistory.com/m/post/111 모바일 웹 브라우저에서, 앱 설치 여부에 따라 마켓 또는 앱으로 이동 시키기. 일종의 브릿지 페이지.. 먼저 아이폰의 경우.. 간단하다! var userAgent = navigator.userAgent; var visitedAt = (new Date()).getTime(); // 방문 시간 if (userAgent.match(/iPhone|iPad|iPod/)) { setTimeout( fun..