개발/개발 자료
(Android) Service Intent must be explicit
시원한물냉
2016. 8. 13. 22:17
안드로이드 다운로더 라이브러리를 사용하다가 이런 오류가 나온다면,
Service Intent must be explicit: Intent { act=com.android.vending.licensing.ILicensingService }
아래와 같이 조치해보자. LicenseChecker.java 의 150번째 줄 쯤에 서비스 바인드 하는 부분임
Intent bindIntent = new Intent("com.android.vending.billing.InAppBillingService.BIND");
bindIntent.setPackage("com.android.vending");
bindService(bindIntent, mServiceConn, Context.BIND_AUTO_CREATE);
빨간색 부분을 추가해주면 된다