Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 올인원타이머
- 타이머앱
- 특가게시판
- 뷰 상태 저장
- Android
- RX
- Quickly
- 특가촌
- java.lang.OutOfMemoryError: Java heap space
- 대학톡
- moveToState
- todofication
- fragment
- 안드로이드 클린 아키텍쳐
- List
- onViewCreated
- kotlin
- Koin
- 카드 내역 공유 앱
- 카드내역 공유
- RxJava
- nvidia-docker
- 뷰 상태복구
- 특가알람
- 작성
- android clean architecture
- recyclerview
- 안드로이드
- compileKotlin FAILED
- andorid
Archives
- Today
- Total
seoft
ShortCut 관련 기능 실행시 - Caller can't access shortcut information 에러 본문
[문제정의]
ShortCut 리스트 load 후 실행 할 로직을 위해 해당 코드 실행시
val launcherApps : LauncherApps by lazy { App.get.getSystemService(Context.LAUNCHER_APPS_SERVICE) as LauncherApps } launcherApps.getShortcuts(shortcutQuery,Process.myUserHandle()) |
다음 에러 발생
Caller can't access shortcut information |
hasShortcutHostPermission() 호출시 false로 반환되는 상태
[문제해결]
manifest를 홈런처로 지정해야만 사용이 가능
<activity android:name=".ui.main.MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.HOME"/> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> |
또한 Default Home Launcher로 지정이 안된 상태면 권한이 없어 에러가 야기됨
'android' 카테고리의 다른 글
Android Room 종합예제(기본연동, ForeignKey, enum, list, Rx연동, unit test) (0) | 2019.11.30 |
---|---|
rxjava subscribeOn observeOn 요약 (0) | 2019.11.30 |
Cannot find a version of '...' that satisfies the version constraints: 오류 해결 (0) | 2019.09.22 |
rxjava 호출 후 1초간 재 호출이 안될경우 이벤트 실행 (1) | 2019.09.22 |
UnitTest에 LiveData사용시 에러 (0) | 2019.09.22 |
Comments