I'm Getting Error: ":BaseGameUtils:processDebugAndroidTestManifest" On Android Studio Startup Only
My android app is using BaseGameUtils and every time I start Android Studio I get the following error: Error:Execution failed for task ':BaseGameUtils:processDebugAndroidTestManif
Solution 1:
I just add this line in BaseGameUtils AndroidManifest.xml
<uses-sdk android:minSdkVersion="14" />
Solution 2:
Just add this line
<uses-sdk tools:overrideLibrary="com.google.android.gms.all"/>
on your app --> manifest --> AndroidManifest.xml
file
That error means that the imported library com.android.support:appcompat-v7:20.0.0
has a minSdkVersion specified as 7 whereas you seem to be targeting lower versions
Post a Comment for "I'm Getting Error: ":BaseGameUtils:processDebugAndroidTestManifest" On Android Studio Startup Only"