我在Maven Central有一个带小部件的库。当我将该库作为依赖项(从maven central)添加到使用gradle的项目中时,我得到:

java.lang.NoClassDefFoundError: com.my.pacakge.R$styleable

如果我手动下载.aar并将其包含在项目中,则一切正常。我试着使用android studio的代码完成来查看是否包含库的R。当我使用maven依赖项时,键入com.my.pacakge.R不会返回结果,但当我使用local.aar时,它会返回库的R
这是图书馆代码:
// widget constructor
public ForegroundImageView(Context context, AttributeSet attrs) {
    super(context, attrs);

    TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ForegroundImageView);
    Drawable foreground = a.getDrawable(R.styleable.ForegroundImageView_android_foreground);
    if (foreground != null) {
        setForeground(foreground);
    }
    a.recycle();
}

// attrs.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="ForegroundImageView">
        <attr name="android:foreground"/>
    </declare-styleable>
</resources>

最佳答案

问题是依赖项是用publishNonDefault true发布的。

08-16 05:14