According to new IDE for android I decided to import projects from my old eclipse.
Unfortunatelly I cannot run them because of information Error: Activity Class not sp
Did you correctly imported also your library in Android Studio?
Check Files > Project Structures > Libraries
Did you see your library L?
Replace apply plugin: 'com.android.Library'
(from module level gradle) to apply plugin: 'com.android.application'
You may have to edit the launch configuration to tell it what Activity to run, or if it is running your default activity, ensure your Manifest is correctly stating this Activity.
Click the dropdown next to the Green Run Arrow on the top bar. And press 'Edit configurations':
Please check if your src folders are added into the build path. I imported my workspace from Eclipse by export to Gradle, and by default only gen folders were marked as source files. Because of that, IDE cannot compile your source files and cannot launch any activities.
Hope that will help.