我正在尝试创建一个包含简单服务的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上做了一些研究,但我无法找到问题的答案。
还尝试了不同的启动服务的方式(在行动等方面),但目前还不好。
欢迎所有帮助,如果我提出了一个邪恶的重复问题,我会道歉。
答案 0 :(得分:5)
BaseService正在实现另一个未与aar
文件一起打包的库的接口。这导致应用程序在启动设备后立即崩溃,因为它无法解决依赖关系。
public class BaseService implements OtherLibraryInterface {
...
}
而不是为ClassNotFoundException
抛出OtherLibraryInterface
,而Android会为BaseService
准确抛出异常。这非常令人困惑,让我们相信服务有问题。
将OtherLibrary依赖项显式添加为主应用程序的依赖项解决了这个问题。