I found the source of my error is in my external library "play-service-base-10.2.1", where it contains a file with the matching name. I'm completely new to android programming, got to this point with my little programming experience.
Here is my android manifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.application"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
</manifest>