kapt {
generateStubs = true
}


를 왜 해줘야 하는지..ㅠㅠ 몇시간을 날린거야..!!

http://pluu.github.io/blog/kotlin/2017/07/23/kotlin-generatestubs/

'링크모음 > Android' 카테고리의 다른 글

Dagger2 + Junit 테스트  (1) 2017.09.02
코틀린 dagger2  (0) 2017.09.02
Android Junit MVP + RxJava  (0) 2017.09.01
안드로이드 인스턴트앱 개발 참고 링크모음  (0) 2017.08.31
Google AR 링크 정리  (0) 2017.08.30

'링크모음 > Android' 카테고리의 다른 글

코틀린 dagger2  (0) 2017.09.02
Android Junit 테스트 링크 모음  (0) 2017.09.01
안드로이드 인스턴트앱 개발 참고 링크모음  (0) 2017.08.31
Google AR 링크 정리  (0) 2017.08.30
이미지 프로세싱 튜터리어ㄹ  (0) 2017.08.30

'링크모음 > etc' 카테고리의 다른 글

파일별 시그니처 확인법  (0) 2017.09.05
무료 강의  (0) 2017.09.02
조직에서 원하는 인재상?  (0) 2017.08.23
권한설정 법  (0) 2017.08.21
A/B 테스팅이란  (0) 2017.08.16

'링크모음 > rxswift' 카테고리의 다른 글

간단한 json http / https 요청 테스트시..  (0) 2017.10.11
rxswift Single, Maybe, Completable 사용법  (0) 2017.08.10
RxSwift 기본 #2  (0) 2017.08.10
RxSwift 기본 #1  (0) 2017.08.10
RxSwift Single,Maybe등 사용설명  (0) 2017.08.10

AIA 공식 문서

https://developer.android.com/topic/instant-apps/index.html


AIA 개발적용한 예제 대표 사이트 소개

https://developers-kr.googleblog.com/2017/08/500-million-devices-now-supported-for.html?m=1


AIA 디자인 가이드

https://developer.android.com/topic/instant-apps/ux-best-practices.html


관련 해외 참고 자료

Refactoring an existing Android app to support Instant App




Android Instant Apps, step-by-step

https://medium.com/vimeo-engineering-blog/vimeo-android-instant-apps-2f8b1e94760c


Making the Domain Android App Instant 

http://tech.domain.com.au/2017/06/making-the-domain-android-app-instant-%E2%9A%A1/


AIA tourtrial

https://willowtreeapps.com/ideas/an-introduction-to-android-instant-apps

TFLearn 의 메인 커미터가 초보자를 위한 텐서플로우 예제를 모아놓은 TensorFlow-Examples 깃허브 레파지토리를 만들었습니다. 이 예제는 크게 두 부분으로 나뉘어서 윗부분은 쥬피터 노트북과 일반 코드로 두가지 버전으로 작성되어 있습니다. 

'링크모음 > Android' 카테고리의 다른 글

Google AR 링크 정리  (0) 2017.08.30
이미지 프로세싱 튜터리어ㄹ  (0) 2017.08.30
구글 스피치api 제작  (0) 2017.08.27
챗봇 만들기  (0) 2017.08.27
datBinding 작동방식  (0) 2017.08.27

http://jybaek.tistory.com/671

https://brunch.co.kr/@pilsogood/10

http://sdusb.blogspot.com/2017/08/android-databinding-6-inversebinding.html

http://pluu.github.io/blog/android/droidkaigi/2017/08/21/doridkaigi-android/

http://hugrypiggykim.com/2017/08/24/%EB%94%A5%EB%9F%AC%EB%8B%9D-%EA%B5%90%EC%9C%A1-%EC%9E%90%EB%A3%8C-deep-learning-lecture/

'링크모음 > React' 카테고리의 다른 글

리엑터 패턴 모아놓은 곳  (0) 2017.11.11
리엑트 네이티브 애니메이션 튜터리얼  (0) 2017.11.06
RN 러닝 링크 모음  (0) 2017.08.13
리엑티브 네이티브 계산기 예제 1  (0) 2017.08.11
RN 예제 소스 모음  (0) 2017.08.10

안드로이드 O의 새로운 기능 정리 링크

https://academy.realm.io/kr/posts/android-oreo-new-features/

rxjava 가 메이저 버전 업(1->2)을 하면서 몇 가지 변경점이 생겼다.

변경점에 대한 자세한 내용은 아래 링크를 참조하기 바란다.

Flowable 이라는 base reactive class 가 추가 되었다. Observable 과의 차이는 backpressure buffer의 기본 탑재 유무이다.

출처 : https://stackoverflow.com/a/42005735

I'd suggest using a Single as it is more accurate representation of the data flow: you make a request to the server and the you get either one emission of data OR an error:

Single:     onSubscribe (onSuccess | onError)?

For an Observable you could theoretically get several emissions of data AND an error

Observable: onSubscribe onNext? (onCompleted | onError)?

However, if you are using , I'd suggest using a Maybe instead of Single. The difference between those two is that Maybe handles also the case when you get the response from server but it contains no body.

Maybe:      onSubscribe (onSuccess | onCompleted | onError)?


'링크모음 > Swift' 카테고리의 다른 글

swift4 tour  (0) 2017.10.22
노티피케이션 사용법  (0) 2017.10.20
swift 에서 self 값 체크  (0) 2017.10.18
pod update/install 시 라이버러리를 전부 강제 3.2로 세팅하기  (0) 2017.10.16
Contributing to Swift  (0) 2017.08.30
https://brunch.co.kr/@svillustrated/12
바로가기

'링크모음 > etc' 카테고리의 다른 글

무료 강의  (0) 2017.09.02
Headless Chrome으로 AWS Lambda에서 웹사이트 스크린샷 찍기 링크구분  (0) 2017.08.31
권한설정 법  (0) 2017.08.21
A/B 테스팅이란  (0) 2017.08.16
azure 공부방법  (0) 2017.08.15

+ Recent posts