使用v7-appcompat APKLIB找不到Theme.AppCompat

时间:2013-08-24 16:43:31

标签: android maven android-support-library android-appcompat apklib

我已将v4和v7-appcompat支持依赖添加到我的pom.xml文件中:

<dependency>
     <groupId>android.support</groupId>
     <artifactId>compatibility-v7-appcompat</artifactId>
     <version>18</version>
     <type>apklib</type>
</dependency>
<dependency>
    <groupId>android.support</groupId>
    <artifactId>compatibility-v7-appcompat</artifactId>
    <version>18</version>
    <type>jar</type>
</dependency>
<dependency>
    <groupId>android.support</groupId>
    <artifactId>compatibility-v4</artifactId>
    <version>18</version>
</dependency>

现在我想将AppCompat样式添加到我的活动中,但是找不到它。似乎没有从APKLIB加载AppCompat资源。

有谁知道为什么会这样?

谢谢!

0 个答案:

没有答案