ios 라이브러리를 Framework 형태로 만들기 및 배포. 출처: http://hoiogi.tistory.com/24 1. Library를 Framework로 만들어 배포해야할 필요성. 회사에서 진행되고 있는 작업들중에 웹서버와 iOS App. 사이를 연결시켜주는 SDK(library)를 만들어 배포하는 작업이 있다. 보통은 static library로 만들어서 Header파일과 libXXX.a 파일을 배포하게 된다. SDK 사용자는 Header.. IT_Programming/Objective-C · Swift · iOS 2015.06.30
Rx (Reactive Extensions) 출처: http://functionalthinking.appspot.com/sp.search?q=Rx 참고자료 1) http://tiii.tistory.com/15 2) http://tiii.tistory.com/16 3) http://tiii.tistory.com/17 4) http://tiii.tistory.com/18 5) http://tiii.tistory.com/21 Exact matchRxPages starting with "Rx"Rx Simplified (Reactive Programming in Python)Rx: Curing Your Asynchronous Programming BluesRx on AndroidRx/ExampleRxJ.. IT_Programming/Dev Libs & Framework 2015.06.29
iOS Application 앱 스토어 등록 절차 / Dropbox를 이용하여 서버없이 iOS 테스트용 앱 배포하기(Ad-Hoc distribution) 출처: http://passion.dothome.co.kr/?p=53 http://blog.saltfactory.net/ios/distribute-ios-app-using-with-dropbox-without-server.html http://seapy.com/1975 http://seungbinkim.blogspot.kr/2014/03/xcode-iphone.html 폰에서 앱을 실행하려면, 개발자 센터에서 몇 가지를 해줘야 한다사이트의 오른쪽에 Certificates, Identifiers... 눌러서 이동하면 .. IT_Programming/Objective-C · Swift · iOS 2015.06.26
[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