我正在尝试将我的应用配置为编程Chromecast功能按钮。
我正在阅读所有chromecast SDK,它说我必须安装Google Play服务。 我将库链接到我的项目,在同一个工作区。我做得很好,因为我有一个名为google_play_services.jar的新的Android Dependencies库
当我达到这一点时,我想测试googlePlayServices是否可用,所以我想使用:
GooglePlayServicesUtil.isGooglePlayServicesAvailable(getApplicationContext());
并打印包含结果的日志。
但问题出现在这里。当我运行我的应用程序时,它表示这不在我的Android Manifest中。
我的Android Manifest已经有了以下几行:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.chromecastAPP"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.INTERNET"/>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.chromecastAPP.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
任何不同的解决方案?
谢谢
答案 0 :(得分:2)
元数据必须位于应用标签中。
&#34;编辑应用程序的AndroidManifest.xml
文件,并在<application>
元素中添加以下声明。这嵌入了应用程序编译的Google Play服务版本。&#34;查看this链接。
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.chromecastAPP"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.chromecastAPP.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
</manifest>
答案 1 :(得分:0)
我也面临这个问题。我刚刚使用其更新版本更新了我的SDK Google Play服务,它对我有用... 尝试它也可能对你有用..