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

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

概述我正在尝试创建一个包含简单服务的 Android库.例如: public class BasicService extends Service { public BasicService() { Log.d("I", "work"); } @Override public IBinder onBind(Intent intent) { 我正在尝试创建一个包含简单服务的 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上做过一些研究,但我无法找到问题的答案.

Android service in library

还尝试了不同的启动服务的方式(在行动等),但迄今为止没有好处.

如果我提出了一个邪恶的重复问题,欢迎所有的帮助和道歉.

解决方法 BaseService正在实现另一个库的接口,该接口未与aar文件打包在一起.这导致应用程序在设备启动后立即崩溃,因为它无法解决依赖关系.
public class BaseService implements OtherlibraryInterface {    ...}

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

将Otherlibrary依赖项显式添加为主应用程序的依赖项解决了此问题.

总结

以上是内存溢出为你收集整理的来自库的Android外部服务(AAR,不是共享服务)全部内容,希望文章能够帮你解决来自库的Android外部服务(AAR,不是共享服务)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1135190.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存