1plugins { 2 id 'com.android.application' 3} 4 5android { 6 compileSdkVersion 30 7 8 defaultConfig { 9 applicationId "org.skia.jetskidemo" 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 namespace 'org.skia.jetskidemo' 31} 32 33dependencies { 34 35 implementation 'com.android.support:appcompat-v7:28.0.0' 36 implementation 'com.android.support.constraint:constraint-layout:2.0.1' 37 implementation project(path: ':jetski') 38} 39 40