我在向我的应用添加广告时遇到了问题。问题是当我导入广告时,它给了我一个错误。错误是The import com.google.ads cannot be resolved
。我不知道如何解决它。在过去的一周里,我检查了互联网并将头撞到了墙上。没有任何工作。这是我所拥有的:
我的 Android SDK 管理器:
我的 JAR 文件:
订购和出口:
项目浏览器:
对于我在 project.properties 中的项目构建目标,它是target=Google Inc.:Google APIs:17
我究竟做错了什么?我需要添加一些东西吗?非常感谢有关此问题的任何帮助。
编辑
这是我的 AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.currencyconverter"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<uses-sdk
android:minSdkVersion="13"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.currencyconverter.MainActivity2"
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>