first of all i am new to Android, i have imported an eclipse project to android studio. On building project it is showing this error
\"Error:Execution
from manifest you can see the error log. check the image
This issue is due to issue in Manifest file or build.gradle file. You can check my post https://wordpress.com/post/dhingrakimmi.wordpress.com/23
Looks like this happens if you added a service - Android Studio automatically adds
<service
android:name=".nameofyourclass"
and if you add another <service line of the type you wanted to make, that's a conflict. Check for duplicate service per file.
Remove sdk configuration from manifest file, in android studio we need to define in build.gradle only
and also change compileSdkVersion and buildToolVersion to your targeted sdk or change your target sdk to 23
Note:- compileSdkVersion and buildToolVersion should belongs to same API level
I solved this issue by simply removing the empty/unused intent filter inside an activity tag in the manifest.
Error:Execution failed for task ':app:processDebugManifest'.> Manifest merger failed with multiple errors, see logs
It is the best solution is to check :- [i] Android manifest file. duplicate or wrong file to add. [ii]Gradle file to check the latest version is compatible or other version is available so install Build Sdk next ->install and finish To complete run your program.
To check Layout file is Recources not available.