• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7apply plugin: 'com.android.application'
8
9dependencies {
10    implementation 'com.android.support:design:26.+'
11    implementation 'androidx.test:runner:1.1.0'
12}
13
14android {
15    compileSdkVersion 26
16    defaultConfig {
17        applicationId "org.skia.skqp"
18        minSdkVersion 19
19        targetSdkVersion 19
20        versionCode 1
21        versionName "1.0"
22        signingConfig signingConfigs.debug
23    }
24    flavorDimensions "base"
25    sourceSets.main.jni.srcDirs = []
26    sourceSets.main.jniLibs.srcDir "src/main/libs"
27    productFlavors { universal{}; arm {}; arm64 {}; x86 {}; x64 {}; arm64vulkan{}; }
28    setupSkiaLibraryBuild(project, applicationVariants, "libskqp_app")
29}
30