So, I just switched to Android Studio. I imported my projects and they are all working fine. My problem is that I don't have a clue on how to import librarys (ActionBarSherlock, SlidingMenu...). I read a few posts about it but I didn't understand this gradle and maven thing. I'm not asking for a guide, if someone could point me the directions I would be gratefull.
Edit:
buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.9.+' } dependencies { compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' } } apply plugin: 'android' android { compileSdkVersion 19 buildToolsVersion '19.0.1' defaultConfig { minSdkVersion 15 targetSdkVersion 19 versionCode 10 versionName "1.0" } sourceSets { main { manifest.srcFile 'AndroidManifest.xml' java.srcDirs = ['src'] resources.srcDirs = ['src'] aidl.srcDirs = ['src'] renderscript.srcDirs = ['src'] res.srcDirs = ['res'] assets.srcDirs = ['assets'] } instrumentTest.setRoot('tests') debug.setRoot('build-types/debug') release.setRoot('build-types/release') } }