본문 바로가기
프로그래밍 놀이터/안드로이드, Java

java.lang.IllegalStateException: The meta-data tag in your app's AndroidManifest.xml does not have the right value. Expected 4030500 but found 0. You must have the following declaration within the <application> element: <meta-data android:name="co..

by 돼지왕 왕돼지 2013. 11. 14.
반응형


 java.lang.IllegalStateException: The meta-data tag in your app's AndroidManifest.xml does not have the right value.  Expected 4030500 but found 0.  You must have the following declaration within the <application> element:     <meta-data android:name="co..  

java.lang.IllegalStateException: The meta-data tag in your app's AndroidManifest.xml does not have the right value.  Expected 4030500 but found 0.  You must have the following declaration within the <application> element:     <meta-data android:name=


Google Play Service 업데이트 후 다음과 같은 에러가 뜬다면,


java.lang.IllegalStateException: The meta-data tag in your app's AndroidManifest.xml does not have the right value.  Expected 4030500 but found 0.  You must have the following declaration within the <application> element:     <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />


Error 메세지가 말하는데로 당신 앱의 Manifest 에 아래 코드를 넣어주면 된다.


....

<meta-data

            android:name="com.google.android.gms.version"

            android:value="@integer/google_play_services_version" />

</application>






반응형

댓글