最近我试图删除所有棉绒问题,并且在清单中出现了一个问题:
"清单中引用的类com.octo.android.robospice.JacksonSpringAndroidSpiceService,在项目或库中找不到"
<service
android:name="com.octo.android.robospice.JacksonSpringAndroidSpiceService"
android:exported="false" >
</service>
这是maven依赖项,也包含在build.gradle文件中:
dependencies {
...
compile 'com.octo.android.robospice:robospice:1.4.11'
compile 'com.octo.android.robospice:robospice-spring-android:1.4.11'
...
}
还有什么方法可以解决这个lint警告,还是我必须压制它?
答案 0 :(得分:1)
我知道这是一个老问题,但是今天我遇到了类似的问题。问题出在服务名下。如果您的项目中有该类,则名称应为:
//Duplication example
color: (property) => {
return (property === null) ? self.element.style.color : self.element.style.color = property;
}
答案 1 :(得分:0)
在我的情况下,我忘了在kotlin文件的顶部添加软件包
package com.user.examplephone;
答案 2 :(得分:0)
示例:
android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
android:screenOrientation="portrait"
android:theme="@style/LicensesTheme"
tools:ignore="MissingClass"/>
您需要添加
tools:ignore="MissingClass"