androidを勉強中ですが、位置情報サービスにgoogle playサービスを利用したいです。
私はフォローしています: http://www.androidhive.info/2015/02/android-location-api-using-google-play-services/
google-play-service_lib
この例が要求するように、インポートライブラリがありました。しかし、次のエラーが res/values-v21 に表示されます &res/values-v11
誰かがこれを知っているなら助けてください. ありがとうございました。
エラー-1
Description : error: Error retrieving parent for item: No resource found that matches the given name `'@android:style/Theme.Material.Light.DialogWhenLarge.NoActionBar'.`
Resource : appinvite_styles.xml
Path : /google-play-services_lib/res/values-v21
Location : line 5
Type : Android AAPT Problem
エラー-2
Description : error: Error retrieving parent for item: No resource found that matches the given name `'@android:style/Theme.Holo.Light.DialogWhenLarge.NoActionBar'.`
Resource : appinvite_styles.xml
Path : /google-play-services_lib/res/values-v11
Location : line 5
Type : Android AAPT Problem
これが私のファイル res/values-v11 です
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base preview application theme. -->
<style name="Theme.AppInvite.Preview.Base" parent="@android:style/Theme.Holo.Light.DialogWhenLarge.NoActionBar"/>
</resources>
ここに私のファイル res/values-v21 があります
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base preview application theme. -->
<style name="Theme.AppInvite.Preview.Base" parent="@android:style/Theme.Material.Light.DialogWhenLarge.NoActionBar"/>
</resources>