일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- AccountManager
- Android O
- In-app Billing
- 배포
- 안드로이드 개발 레벨업 교과서
- Android O Preview
- GCM
- unreal
- Android
- ios9
- NSURLConnection
- Google Cloud Messasing
- Unchecked Exception
- xcode
- 카카오톡
- Push
- service
- signing
- 페이스북
- 다른 앱에서 열기
- gradle
- contentprovider
- android studio
- Activity 수명 주기
- ios
- HTTP
- BLOCK
- 트위터
- 데이터 공유
- Google Cloud Messasging
- Today
- Total
목록Android (32)
노블의 개발이야기
Android O는 Android 플랫폼을 변경한 것이며, 이러한 변경은 targetSdkVersion을 변경하지 않더라도 앱 동작에 영향을 미치거나 앱을 완전히 중단시킬 수 있습니다. Android O 기기에서 실행되는 모든 앱에 영향을 미치는 주요 변경사항 1. 백그라운드 위치 업데이트 빈도가 더 적음 앱이 백그라운드 서비스로부터 위치 업데이트를 수신하는 경우, 이전 버전의 Android에 비해 Android O는 업데이트 수신 빈도가 더 적습니다. * 백그라운드 서비스는 위치 업데이트를 시간당 몇 번 이상 수신할 수 없습니다. * 앱이 포어그라운드에 있을 때는 위치 업데이트 빈도가 영향을 받지 않습니다.백그라운드 위치 제한 2. net.hostname이 더 이상 지원되지 않음 net.hostname..
Context의 정의 Interface to global information about an application environment. This is an abstract class whose implementation is provided by the Android system. It allows access to application-specific resources and classes, as well as up-calls for application-level operations such as launching activities, broadcasting and receiving intents, etc. Application 환경에 대한 전역 정보를 접근하기 위한 인터페이스. 추상 클래스이며 ..