You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ShimmerBluetoothManager/build.gradle
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,8 @@ Rev0.2
12
12
13
13
sourceCompatibility =1.11
14
14
targetCompatibility =1.11
15
+
//sourceCompatibility = '1.8' // Ensure code is compiled with Java 8 when compiling ShimmerJavaClass for Matlab see ShimmerDriverPC (build.gradle)
16
+
//targetCompatibility = '1.8' // Ensure bytecode is compatible with Java 8 when compiling ShimmerJavaClass for Matlab see ShimmerDriverPC (build.gradle)
Copy file name to clipboardExpand all lines: ShimmerDriver/build.gradle
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@ Rev0.2
15
15
apply plugin: 'java-library'
16
16
sourceCompatibility =1.11
17
17
targetCompatibility =1.11
18
+
//sourceCompatibility = '1.8' // Ensure code is compiled with Java 8 when compiling ShimmerJavaClass for Matlab see ShimmerDriverPC (build.gradle)
19
+
//targetCompatibility = '1.8' // Ensure bytecode is compatible with Java 8 when compiling ShimmerJavaClass for Matlab see ShimmerDriverPC (build.gradle)
Copy file name to clipboardExpand all lines: ShimmerDriverPC/build.gradle
+27-6Lines changed: 27 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,17 @@
8
8
*/
9
9
10
10
// Apply the java plugin to add support for Java
11
-
apply plugin: 'java'
12
-
apply plugin: 'java-library'
13
-
apply plugin: 'eclipse'
14
-
apply plugin: 'maven-publish'
15
-
11
+
plugins {
12
+
id 'java'
13
+
id 'java-library'
14
+
id 'eclipse'
15
+
id 'maven-publish'
16
+
id 'com.github.johnrengelman.shadow' version '7.0.0'// Apply the Shadow plugin
17
+
}
16
18
sourceCompatibility =1.11
17
-
19
+
targetCompatibility =1.11
20
+
//sourceCompatibility = '1.8' // Ensure code is compiled with Java 8 when compiling ShimmerJavaClass for Matlab see ShimmerDriverPC (build.gradle)
21
+
//targetCompatibility = '1.8' // Ensure bytecode is compatible with Java 8 when compiling ShimmerJavaClass for Matlab see ShimmerDriverPC (build.gradle)
0 commit comments