Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Renderscript via the support library

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 docs don't say anything about a v8 package, just v4 and v13.

Is that package supported on all devices with API level 8 and above and can it be safely used in production?

like image 718
Delyan Avatar asked Feb 14 '13 16:02

Delyan


3 Answers

Its not yet production quality.

like image 185
R. Jason Sams Avatar answered Nov 18 '22 15:11

R. Jason Sams


My Android tools contain the files:

./build-tools/18.1.0/renderscript/lib/renderscript-v8.jar
./build-tools/18.1.1/renderscript/lib/renderscript-v8.jar

Putting them in the libs/ directory of your project will result in a working build in Eclipse and with ant.

like image 8
user128536 Avatar answered Nov 18 '22 15:11

user128536


PSA for Googlers: RenderScript is now part of the Android Support Library. You can use it on Android 2.2+.

like image 6
zeh Avatar answered Nov 18 '22 16:11

zeh