Android - Cannot resolve symbol "R"
The problem lies in your xml manifest here:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Wrong --> package="com.example.google.playservices.placecomplete"
android:versionCode="1"
android:versionName="1.0">
It needs to be the exact package name of your project which is:
package="com.eatwithme"
not the google sample package name.