我正在尝试在我的Android项目中使用renderscript
。我安装了sdk tools 22.6.2
和sdk build tool 19.0.3
,然后将我的adt更新为最新版本。但现在我得到了错误
在我编写import android.support.v8.renderscript.*
的行上“无法解析导入android.support.v8”。我还在projects.properties
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编程新手。
答案 0 :(得分:3)
我删除了project.properties中除了'target = android-18'之外的所有条目,并将renderscript-v8.jar复制到我项目的libs文件夹中。我在sdk / build-tools / 18.1.0 / renderscript / lib中找到了这个jar文件。我没有收到那个错误。
我在另一个项目中重复了这个过程并且它有效。
答案 1 :(得分:0)
试试这个
renderscript.target=18
renderscript.support.mode=true
sdk.buildtools=18.1.0
答案 2 :(得分:0)
您使用的是哪种 IDE ?请注意RenderScript支持库中基于Android Studio / Gradle的构建是not yet supported这一事实。
此外,IntelliJ IDEA会忽略project.properties
文件,即使您使用的是默认构建系统(&#34; make&#34;)。