0

I 'm new to Android Studio ... I was using eclipse and my project was associated with appcompat v7 and I watched that video of how to import your project folder to android studio from eclipse but I wondered what about the appcompat v7 do I forget about or what ?

Ahmed Samy
  • 1,006
  • 2
  • 11
  • 24

2 Answers2

0

To get round this, look for refs in the project.properties or .classpath files that came in from the Eclipse project and remove/comment them out, eg

<classpathentry combineaccessrules="false" kind="src" path="/android-support-v7-appcompat"/>
atulkhatri
  • 10,896
  • 3
  • 53
  • 89
0

Use file>Import project. After it's imported go to build.gradle and paste:

dependencies {
  compile fileTree(dir: 'libs', include: ['*.jar'])
  compile 'com.android.support:appcompat-v7:21.0.3'
}
Muhammad Ali
  • 3,478
  • 5
  • 19
  • 30