2014-04-01 139 views
1

我想在我的Android項目中使用renderscript。我安裝了sdk tools 22.6.2sdk build tool 19.0.3,然後更新了我的adt到最新版本。但現在我得到錯誤, 「導入android.support.v8無法解析」在我寫的導入android.support.v8.renderscript.*行。我也曾在projects.propertiesandroid.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程序做了如下改變。

+1

請發佈您的AndroidMenifest.xml –

回答

0

試試這個

renderscript.target=18 
renderscript.support.mode=true 
sdk.buildtools=18.1.0 
+0

我試過這個,但仍然是同樣的問題。我還嘗試將現有代碼添加到工作區,但v8在我的系統v4 v7和v13中不可用,但在選擇v13時沒有列出項目框。 – user3190834

3

我刪除從除一個「目標=機器人-18」 project.properties所有條目和複製的renderScript-v8.jar到我的項目的libs文件夾。我在sdk/build-tools/18.1.0/renderscript/lib中找到了這個jar文件。我停止了那個錯誤。

我在另一個項目中重複了這個過程,它工作。

0

其中IDE您使用過?請注意由RenderScript支持庫生成的Android Studio/Gradle版本爲not yet supported

此外,IntelliJ IDEA忽略project.properties文件,即使您正在使用默認構建系統(「make」)。

+0

我正在使用eclipse – user3190834