我正在开发一个安装了某种自定义android v2.3.7的PCB板上的应用程序。
我需要运行GoogleMaps。我已经做了所有必须完成的事情(创建了一个密钥,导入了google-play-services_lib,从SDk下载了GooglePlayServices ......)但是在运行它时,会显示下一条消息:
Google Play services, which some of your applications rely on,
is not supported by your device. Please contact the manufacturer for assistance.
那么,我该怎样做才能让GoogleMaps运行?
UPDATE -
清单文件:
<manifest
...
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="(key)" />
...
<application
...
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>