Skip to content

Commit 890d9e1

Browse files
committed
fix: remove plugin availability check
1 parent c84959b commit 890d9e1

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

app/src/main/java/me/timschneeberger/rootlessjamesdsp/interop/JamesDspRemoteEngine.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,9 @@ class JamesDspRemoteEngine(
300300
private val EFFECT_JAMESDSP = UUID.fromString("f27317f4-c984-4de6-9a90-545759495bf2")
301301

302302
fun isPluginInstalled(): PluginState {
303+
return PluginState.Available
304+
305+
// TODO This method doesn't seem to work with new AIDL jamesdsp lib patch; investigate using emulator
303306
return try {
304307
AudioEffect
305308
.queryEffects()
@@ -321,4 +324,4 @@ class JamesDspRemoteEngine(
321324
}
322325
}
323326
}
324-
}
327+
}

0 commit comments

Comments
 (0)