[iOS] 맥에서 구글 드라이브를 이용한 URL 앱 배포 (adhoc) / iOS 앱 내부 배포 (ad-hoc , OTA ) 가이드 (Dropbox 활용) 출처 : http://canapio.tistory.com/28 : http://devlecture.tistory.com/entry/팁03-iOS-앱-내부-배포-adhoc-OTA-가이드-Dropbox-활용 1. 구글 드라이브 web host 폴더 만들기 1) 구글 드라이브 가입하기 2) 구글 드라이브 컴퓨터에 설치하기 3) 배포용 폴더 만들기 (본인의 경우 Google 드라이브>2015 학교>수업>안드로.. IT_Programming/Objective-C · Swift · iOS 2015.06.26
GoogleMap animation with zoom 출처: http://android-er.blogspot.kr/2013/02/googlemap-animation-with-zoom.html?m=1 It's modified from the exercise "Animation on Google Maps Android API v2". Also enable various ui control, such as ZoomControls, Compass and All Gestures.Re-allocate layout to include a seekbar to set the expected zoom level.<LinearLayout xmlns:android="http://schemas.android.com/apk/res/an.. IT_Programming/Android_Java 2015.06.26
WebView에서 YouTube 플러그인 동작시키기 출처: http://www.androidpub.com/71946 참고: http://googledevkr.blogspot.kr/2013/01/no-webview-required-with-native-youtube.html https://developers.google.com/youtube/android/player/ https://www.youtube.com/yt/dev/ko/api-resources.html http://quicket-engineering.tumblr.com/post/50468482450/youtube-api http://www.javaro.net/xe/tips/356 http://www.androidside.com/bbs/board.ph.. IT_Programming/Android_Java 2015.06.25
Android 이메일&MMS 로 이미지 파일 첨부 보내기 출처: http://mashroom.tistory.com/17 * Case Email - private void SendEmail(String subject, String text, ArrayList<String>filePaths, String... addressTo) { Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("image/jpeg"); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "subject"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+filePaths.get(0.. IT_Programming/Android_Java 2015.06.24
Swipe/Pull to Refresh for Android RecyclerView (or any other vertically scrolling view) 출처: http://sapandiwakar.in/pull-to-refresh-for-android-recyclerview-or-any-other-vertically-scrolling-view/ SwipeRefreshLayout has been in the support library for quite some time. It is a standard (and probably the easiest) way to implement the common Pull to Refresh pattern in Android. The SwipeRefreshLayout should be used whenever the user can refresh the contents of a v.. IT_Programming/Android_Java 2015.06.24
Android WEAR 에만 NOTIFICATION 띄우기 출처: http://www.pressblog.co.kr/linkblog/606449 안드로이드 웨어에서는 onGoing 속성(취소가 불가능한 '진행중') 을 가진 Notification은 카드뷰를 띄우지 않습니다. 클라이언트 앱에서 NotificationCompat 을 이용해 'startForeground'로 앱을 띄우고 있는 경우에는 웨어에 카드뷰가 뜨지 않아 당황스럽습니다. (같.. IT_Programming/Android_Java 2015.06.23
안드로이드 여러 APK 를 하나의 어플리케이션으로 관리하기 출처: http://blog.naver.com/huewu/110120437386 Multiple APK Support 이 포스트는 구글 개발자 사이트의 내용을 기반으로 작성되었습니다. 배경 이야기 안드로이드 에코 시스템 상에서 하나의 APK 는 하나의 어플리케이션을 뜻 합니다. 그리고 각각의 APK 는 서로 다른 패키지 이름을 갖곤 하지요. 그런데, .. IT_Programming/Android_Java 2015.06.23
Android Studio로 버전코드/버전네임 관리하기 출처: https://ringsterz.wordpress.com/2015/03/06/android-studio%EB%A1%9C-%EB%B2%84%EC%A0%84%EC%BD%94%EB%93%9C%EB%B2%84%EC%A0%84%EB%84%A4%EC%9E%84-%EA%B4%80%EB%A6%AC%ED%95%98%EA%B8%B0/ PlayStore에 등록된 앱은 VersionCode와 VersionName의 두가지 속성을 가지고 있다.VersionCode는 정수값을 이용하는데, 플레이 스토어 내부적으로 상위 버전.. IT_Programming/Android_Java 2015.06.23
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.. IT_Programming/Android_Java 2015.06.23
[Android] jar, apk의 메소드 아이디 카운트 체크 출처: http://blog.goooood.net/299 google analytics v4를 사용하기 위해서 google play service를 update했더니 에러 메세지가 출력되면서 APK 빌드가 안되는 문제가 발생했다. Unable to execute dex: method ID not in [0, 0xffff]: 65536 원인은 프로젝트에 여러개의 라이브러리가 포함 되어 있엇는데 최신버전의 google play se.. IT_Programming/Android_Java 2015.06.23