apply plugin: 'com.android.application' android { compileSdkVersion 28 useLibrary 'org.apache.http.legacy' defaultConfig { applicationId "uk.org.openseizuredetector" minSdkVersion 21 targetSdkVersion 29 multiDexEnabled true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } testOptions { unitTests.returnDefaultValues = true unitTests { includeAndroidResources = true } } } dependencies { implementation 'com.android.support:multidex:1.0.3' implementation files('libs/mpandroidchartlibrary-2-0-7.jar') implementation 'com.getpebble:pebblekit:3.1.0@aar' // Unit testing dependencies implementation 'com.android.support.constraint:constraint-layout:1.1.3' testImplementation 'junit:junit:4.12' // Set this dependency if you want to use Mockito testImplementation 'org.mockito:mockito-core:1.10.19' // Set this dependency if you want to use Hamcrest matching testImplementation 'org.hamcrest:hamcrest-library:1.1' implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support:support-v4:28.0.0' //compile files('libs/JTransforms-3.1-with-dependencies.jar') implementation 'org.apache.commons:commons-math3:3.6.1' // google play services used for location finding for SMS alerts. implementation 'com.google.android.gms:play-services:10.0.1' implementation 'com.github.wendykierp:JTransforms:3.0' implementation 'com.google.android.gms:play-services-location:10.0.0' //implementation 'com.github.RohitSurwase.UCE-Handler:uce_handler:1.3' testImplementation 'org.robolectric:robolectric:4.3' } repositories { mavenCentral() maven { url "https://oss.sonatype.org/content/groups/public/" } }