我想在我的Android項目中使用renderscript
。我安裝了sdk tools 22.6.2
和sdk build tool 19.0.3
,然後更新了我的adt到最新版本。但現在我得到錯誤, 「導入android.support.v8無法解析」在我寫的導入android.support.v8.renderscript.*
行。我也曾在projects.properties
android.support.v8無法解析
renderscript.target=18
renderscript.support.mode=true
sdk.buildtools=19.0.3
的manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.amazing.imazing"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.amazing.imazing.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>
我是新來的Android程序做了如下改變。
請發佈您的AndroidMenifest.xml –