Renderscript via the support library

后端 未结 4 400
隐瞒了意图╮
隐瞒了意图╮ 2021-01-02 03:14

Seems to me that android has an android.support.v8 package that contains Renderscript support. The thing is, this doesn\'t seem documented anywhere - the support library doc

4条回答
  •  生来不讨喜
    2021-01-02 03:55

    I have eclipse, android sdk tools 22.6.3, android platform tools 19.0.1 and I set both of these projects API 19 android 4.4.2.

    I was able to compile and run hellocompute(from the samples of android 19) and wants to change it to android support v8 things.

    following steps works for me:

    1.set android build target to 4.4.2 api 19.

    2.add "rendersrcipt-v8.jar" to libraries in android build path

    3.in project.properties set things like

    "target=android-19
     renderscript.target=19
     renderscript.support.mode=true
     sdk.buildtools=19.0.3"
    

    4.Comment out the following import lines:

    import android.renderscript.RenderScript;
    import android.renderscript.Allocation;
    

    and import

    import android.support.v8.renderscript.*;
    

    5.clean the project and rebuild.

提交回复
热议问题