0

This image shows the project structure and the error

img

I'm following this tutorial to build a sample app using Kudan.

Here I got an error (Shown in the screenshot) after step 5 (means after Adding kudanar.jar and cardboard.jar as file dependencies )

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115

1 Answers1

1

I'm not sure I see why you need a new module for cardboard. You can just place the cardboard.jar into app/libs, and in the app/build.gradle, you can compile that JAR file as well as any others with this one line

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
  • Thanks! works fine after removing the cardboard and kudan module. as you said i have added those .jar files into app/libs. thanks again – Rahunanthanan Sep 14 '16 at 05:05