Kishore Kumar
Kishore Kumar
Were you able to solve this
> fun updateWaveData(waveData: ByteArray) { > if(this::mDestWaveData.isInitialized){//add this line.. > System.arraycopy(waveData, 0, mDestWaveData, 0, mDestWaveData.size) > System.arraycopy(computedWaveData, 0, mPrevWaveData, 0, mPrevWaveData.size) > // System.arraycopy(waveData, 0, computedWaveData, 0, computedWaveData.size) > //...
@Citrussss yes i work on android as well.. :)
I use following renderer `renderers = arrayOf(ColumnarType1Renderer(paint = Paint(Paint.ANTI_ALIAS_FLAG).apply { color = Color.parseColor("#777777") }))` I pulled out the code from sample to create the visualizer. `fun createNewVisualizerManager() { mVisualizerManager?.release() mVisualizerManager...