-
Notifications
You must be signed in to change notification settings - Fork 719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New way to implement RenderScript in gradle 14+ #10
Comments
Error:(14, 0) Gradle DSL method not found: 'renderscriptSupportMode()' |
We are unable to make the buil with below build.gradle: apply plugin: 'com.android.application' android {
} allprojects { dependencies {
} |
With gradle 0.14.+ in android studio you will need to use the two lines below instead of the ones in your getting started document.
renderscriptTargetApi 19
renderscriptSupportModeEnabled true
The text was updated successfully, but these errors were encountered: