let's separate Android from not Android

This commit is contained in:
rusefillc 2022-10-15 18:59:17 -04:00
parent 25139907a2
commit 14b5b7cff2
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ ext {
jsr305 : "com.google.code.findbugs:jsr305:3.0.2", jsr305 : "com.google.code.findbugs:jsr305:3.0.2",
antlr : "org.antlr:antlr4:4.9.3", // use ANTLR version 4 antlr : "org.antlr:antlr4:4.9.3", // use ANTLR version 4
json : "com.googlecode.json-simple:json-simple:1.1.1", json : "com.googlecode.json-simple:json-simple:1.1.1",
mockito : "org.mockito:mockito-all:1.10.19",
] ]
ts_plugin_libs = [ ts_plugin_libs = [

View File

@ -11,7 +11,7 @@ dependencies {
api project(':ecu_io') api project(':ecu_io')
api project(':inifile') api project(':inifile')
api project(':ts_plugin_launcher') api project(':ts_plugin_launcher')
testImplementation libs.mockito testImplementation global_libs.mockito
testImplementation testFixtures( project(':ecu_io')) testImplementation testFixtures( project(':ecu_io'))
implementation files('../ts_plugin_launcher/lib/TunerStudioPluginAPI.jar') implementation files('../ts_plugin_launcher/lib/TunerStudioPluginAPI.jar')
} }