이것저것 공부한 기록

[Android] bindService : unable to start service intent u=0 not found 에러 본문

Study/Kotlin&Android

[Android] bindService : unable to start service intent u=0 not found 에러

블랜디 2023. 5. 23. 11:33

타 어플리케이션의 서비스에 binding 하려는데 해당 에러가 뜨면 오타가 아닌 이상 권한 문제이다.

 

QUERY_ALL_PACKAGES permission을 추가해주면 찾을 수 있다.

    <uses-permission
        android:name="android.permission.QUERY_ALL_PACKAGES"
        tools:ignore="QueryAllPackagesPermission" />

 

... 이 간단한거땜에 오전을 다 날려먹었네..