3

I've added the v4 and v7-appcompat support dependecies into my pom.xml file:

<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>

And now I want to add the AppCompat style to my activities, but it's not found. It seems the AppCompat resources have not been loaded from the APKLIB.

Does anyone know why that's happening?

Thanks!

nano
  • 2,511
  • 4
  • 25
  • 42
  • You can chek if AppCompat resources really present in apklib. Just find this apklib in your local maven repository and open it as zip archive – Bersh Sep 03 '13 at 08:48

0 Answers0