summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/renderscriptInLib/app/build.gradle
blob: b151adf972afd567485dbd4acb8b3506abb0a67f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
apply plugin: 'com.android.application'

android {
    namespace "com.example.android.rs.hellocompute"
    compileSdkVersion libs.versions.latestCompileSdk.get().toInteger()
    buildToolsVersion = libs.versions.buildToolsVersion.get()

    defaultConfig {
        minSdkVersion 17
        renderscriptTargetApi = 17
    }

    buildFeatures {
        renderScript true
    }
}

dependencies {
    api project(':lib')
}