code reuse
This commit is contained in:
parent
6fa138f3c1
commit
1e109821fa
|
@ -12,6 +12,7 @@
|
||||||
<set>
|
<set>
|
||||||
<option value="$PROJECT_DIR$" />
|
<option value="$PROJECT_DIR$" />
|
||||||
<option value="$PROJECT_DIR$/app" />
|
<option value="$PROJECT_DIR$/app" />
|
||||||
|
<option value="$PROJECT_DIR$/../java_console/shared_io" />
|
||||||
</set>
|
</set>
|
||||||
</option>
|
</option>
|
||||||
<option name="resolveModulePerSourceSet" value="false" />
|
<option name="resolveModulePerSourceSet" value="false" />
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<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" />
|
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectType">
|
<component name="ProjectType">
|
||||||
|
|
|
@ -22,6 +22,8 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
implementation project(':shared_io')
|
||||||
|
|
||||||
implementation files('lib/dfu_java.jar')
|
implementation files('lib/dfu_java.jar')
|
||||||
implementation 'com.github.mik3y:usb-serial-for-android:v2.2.3'
|
implementation 'com.github.mik3y:usb-serial-for-android:v2.2.3'
|
||||||
implementation fileTree(dir: "libs", include: ["*.jar"])
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
package com.rusefi;
|
|
||||||
|
|
||||||
public class ConnectionAndMeta {
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
package com.rusefi.shared;
|
|
||||||
|
|
||||||
public class FileUtil {
|
|
||||||
}
|
|
|
@ -1 +1,3 @@
|
||||||
include ':app'
|
include ':app'
|
||||||
|
include ':shared_io'
|
||||||
|
project(':shared_io').projectDir = new File('../java_console/shared_io')
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
plugins {
|
||||||
|
id 'java'
|
||||||
|
}
|
Loading…
Reference in New Issue