apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "com.amazon.dlr.examples.classification" minSdkVersion 21 targetSdkVersion 28 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility = '1.8' targetCompatibility = '1.8' } } // task downloadDlrModels apply from:'download.gradle' dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.0.0' implementation 'androidx.coordinatorlayout:coordinatorlayout:1.0.0' implementation 'com.google.android.material:material:1.0.0' // The Latest build off of DLR implementation project(path: ':dlr-release') }