我正在尝试创建一个包含简单服务的
Android库.例如:
public class BasicService extends Service { public BasicService() { Log.d("I","work"); } @Override public IBinder onBind(Intent intent) { return null; } }
我按以下方式启动服务:
startService(new Intent(this,BasicService.class));
该服务被编译成AAR文件,在将其添加到应用程序后,我得到一个ClassNotFoundException.
Caused by: java.lang.ClassNotFoundException: Didn't find class "nl.company.example.library.Services.BasicService" on path: DexPathList[[zip file "/data/app/nl.example.aartest-1/base.apk"],nativeLibraryDirectories=[/vendor/lib,/system/lib]]
我不需要绑定服务,因为应用程序不必与服务通信.我也不需要aidl接口,因为我不想与其他应用程序共享该服务.我知道我需要在应用程序端(而不是库)声明服务,所以我按照以下方式执行:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="nl.company.example.exampleApp" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="17" android:targetSdkVersion="19" /> <application android:settings... > <service android:name="nl.company.example.library.Services.BasicService" android:enabled="true" android:exported="true" /> </application> </manifest>
这是我的图书馆的清单:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="nl.company.example.library" > <application/> </manifest>
我在Stackoverflow / Google上做过一些研究,但我无法找到问题的答案.
还尝试了不同的启动服务的方式(在行动等),但迄今为止没有好处.
如果我提出了一个邪恶的重复问题,欢迎所有的帮助和道歉.