gpt4 book ai didi

来自库的 Android 外部服务(AAR,不是共享服务)

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:52:16 25 4
gpt4 key购买 nike

我正在尝试创建一个包含简单服务的 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]]

我不需要绑定(bind)服务,因为应用程序不必与服务通信。我也不需要 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>

这是我的图书馆的 list :

<?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 做了一些研究,但没能找到我的问题的答案。

Android service in library

还尝试了不同的启动服务的方式(在 action 等上),但到目前为止效果不佳。

欢迎所有帮助,如果我提出了一个邪恶的重复问题,我深表歉意。

最佳答案

BaseService 正在实现来自另一个库的接口(interface),该库未与 aar 文件打包在一起。这导致应用程序在设备上启动后立即崩溃,因为它无法解决依赖关系。

public class BaseService implements OtherLibraryInterface {
...
}

Android 不会为 OtherLibraryInterface 抛出 ClassNotFoundException,而是为 BaseService 抛出该异常。这非常令人困惑,让我们相信服务有问题。

将 OtherLibrary 依赖项显式添加为对主应用程序的依赖项解决了这个问题。

关于来自库的 Android 外部服务(AAR,不是共享服务),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31922987/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com