aboutsummaryrefslogtreecommitdiff
path: root/platform_tools/android/apps/skqp/build.gradle
blob: 8d0d95664d700a598a8bc28899dda41fdc530aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
apply plugin: 'com.android.application'

dependencies {
    implementation 'com.android.support:design:26.+'
    implementation 'com.android.support.test:runner:0.5'
}

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "org.skia.skqp"
        minSdkVersion 19
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
        signingConfig signingConfigs.debug
    }
    flavorDimensions "base"
    sourceSets.main.jni.srcDirs = []
    sourceSets.main.jniLibs.srcDir "src/main/libs"
    productFlavors { universal{}; arm {}; arm64 {}; x86 {}; x64 {}; arm64vulkan{}; }
    setupSkiaLibraryBuild(project, applicationVariants, "libskqp_app")
}