code reuse

This commit is contained in:
rusefi 2020-07-02 00:19:55 -04:00
parent 6fa138f3c1
commit 1e109821fa
7 changed files with 9 additions and 9 deletions

View File

@ -12,6 +12,7 @@
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
<option value="$PROJECT_DIR$/../java_console/shared_io" />
</set>
</option>
<option name="resolveModulePerSourceSet" value="false" />

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">

View File

@ -22,6 +22,8 @@ android {
}
dependencies {
implementation project(':shared_io')
implementation files('lib/dfu_java.jar')
implementation 'com.github.mik3y:usb-serial-for-android:v2.2.3'
implementation fileTree(dir: "libs", include: ["*.jar"])

View File

@ -1,4 +0,0 @@
package com.rusefi;
public class ConnectionAndMeta {
}

View File

@ -1,4 +0,0 @@
package com.rusefi.shared;
public class FileUtil {
}

View File

@ -1 +1,3 @@
include ':app'
include ':shared_io'
project(':shared_io').projectDir = new File('../java_console/shared_io')

View File

@ -0,0 +1,3 @@
plugins {
id 'java'
}