I have imported my android Eclipse project into Android Studio 1.0. The import ignored all of my source code files, so I have manually added them to the project. The error that I am getting is found on all of the activity names found in my AndroidManifest.xml file. For example:
<activity android:name="com.company.myapp.beforelogin.InitialActivity"></activity>
The AndroidManifest is unable to resolve the symbols "beforelogin" and "InitialActivity". I have read here (AndroidStudio : Cannot resolve symbol MainActivity) that Android Studio doesn't recognize my code as source code. So I tried this (How to get Android Studio to recognize file as source (test)) to add my directory as a sourceSet in my build.gradle file, but it didn't work. My project structure looks like this:
-app
-src
-build.gradle
-main
-res
-com
-AndroidManifest.xml
Any help would be greatly appreciated. Thanks.