helping Android
This commit is contained in:
parent
93f85b0b93
commit
351ed60bb7
|
@ -1,6 +1,9 @@
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
packagingOptions {
|
||||||
|
exclude 'META-INF/DEPENDENCIES'
|
||||||
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
|
|
@ -2,6 +2,10 @@ plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
compile.exclude group: "junit", module: "junit"
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':inifile')
|
implementation project(':inifile')
|
||||||
implementation project(':models')
|
implementation project(':models')
|
||||||
|
@ -10,6 +14,8 @@ dependencies {
|
||||||
implementation group: 'org.jetbrains', name: 'annotations', version: '16.0.1'
|
implementation group: 'org.jetbrains', name: 'annotations', version: '16.0.1'
|
||||||
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.6.2'
|
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.6.2'
|
||||||
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
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'
|
testImplementation group: 'junit', name: 'junit', version: '4.13'
|
||||||
}
|
}
|
Loading…
Reference in New Issue