• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1plugins {
2    id 'com.android.application'
3}
4
5android {
6    compileSdkVersion 30
7
8    defaultConfig {
9        applicationId "org.skia.androidkitdemo"
10        minSdkVersion 16
11        targetSdkVersion 30
12        versionCode 1
13        versionName "1.0"
14
15        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
16    }
17
18    buildTypes {
19        release {
20            minifyEnabled false
21        }
22    }
23    compileOptions {
24        sourceCompatibility JavaVersion.VERSION_1_8
25        targetCompatibility JavaVersion.VERSION_1_8
26    }
27    flavorDimensions "base"
28    productFlavors { arm {}; arm64 {}; x86 {}; x64 {}; arm64vulkan {}; }
29}
30
31dependencies {
32
33    implementation 'com.android.support:appcompat-v7:28.0.0'
34    implementation 'com.android.support.constraint:constraint-layout:2.0.1'
35    implementation project(path: ':AndroidKit')
36}
37
38