반응형
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.. |
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>
반응형
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] why margin_bottom value is not working? (0) | 2013.11.15 |
---|---|
[Java] Reflection Tutorial - Constructor (0) | 2013.11.15 |
[android] process 죽이는 방법. (2) | 2013.11.13 |
[Java] Reflection Tutorial - Class (0) | 2013.11.12 |
안드로이드 4.4 KitKat ( 킷캣 ) 뭐가 달라졌나? (0) | 2013.11.12 |
댓글