Android库声明样式运行时错误

时间:2014-11-02 07:22:53

标签: android maven android-gradle android-build aar

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

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

如果我手动下载.aar并将其包含在项目中,一切正常。我尝试使用Android Studio的代码完成功能来查看是否包含了库R。当我使用maven依赖项时,键入com.my.pacakge.R不会返回任何结果,但是当我使用本地.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>

1 个答案:

答案 0 :(得分:1)

问题是依赖关系是使用publishNonDefault true发布的。