标签:
从Lollipop开始,service服务必须采用显示方式启动。
Intent intent = new Intent("a.b.c");intent.setPackage(getPackageName());startService(intent);
如何解决Android 5.0中出现的警告:Service Intent must be explicit
原文地址:http://www.cnblogs.com/linson0116/p/5581577.html