Adds basic support for native APIs for a local song player.
This commit is contained in:
@@ -17,6 +17,7 @@ dependencies {
|
||||
// The production code uses the SLF4J logging API at compile time
|
||||
implementation 'org.slf4j:slf4j-api:1.7.25'
|
||||
implementation 'com.google.code.gson:gson:2.8.7'
|
||||
implementation project(":WavReader")
|
||||
|
||||
// Declare the dependency for your favourite test framework you want to use in your tests.
|
||||
// TestNG is also supported by the Gradle Test task. Just change the
|
||||
@@ -27,5 +28,12 @@ dependencies {
|
||||
|
||||
// Define the main class for the application
|
||||
mainClassName = defaultPackage + '.player.Interface'
|
||||
//mainClassName = defaultPackage + '.localPlayer.Player'
|
||||
|
||||
compileJava.dependsOn rootProject.bundleAddOn
|
||||
compileJava.dependsOn rootProject.bundleAddOn
|
||||
|
||||
run {
|
||||
systemProperty "java.library.path", file("${project(":player").buildDir}/lib/main/debug").absolutePath
|
||||
}
|
||||
|
||||
compileJava.dependsOn ':player:linkDebug'
|
||||
Reference in New Issue
Block a user