helping Android

This commit is contained in:
rusefi 2020-07-12 18:53:53 -04:00
parent 13aef2dd77
commit 529c6dd242
2 changed files with 9 additions and 0 deletions

View File

@ -1,6 +1,9 @@
apply plugin: 'com.android.application'
android {
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8

View File

@ -2,6 +2,10 @@ plugins {
id 'java'
}
configurations {
compile.exclude group: "junit", module: "junit"
}
dependencies {
implementation project(':inifile')
implementation project(':models')
@ -10,6 +14,8 @@ dependencies {
implementation group: 'org.jetbrains', name: 'annotations', version: '16.0.1'
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.6.2'
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12'
testImplementation group: 'junit', name: 'junit', version: '4.13'
}