- Add 16-band graphic equalizer with legacy EQ mode - Add speaker measurement and room correction EQ - Fix audio skipping with AutoEQ on Android background - Improve audio performance to prevent skipping under CPU load - Fix dual EQ applied when switching between legacy and parametric modes - Remove redundant Equalizer settings tab - Improve mobile EQ band layout and collapsible database section
14 lines
326 B
Java
14 lines
326 B
Java
package tf.monochrome.music;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import com.getcapacitor.BridgeActivity;
|
|
|
|
public class MainActivity extends BridgeActivity {
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
registerPlugin(BackgroundAudioPlugin.class);
|
|
super.onCreate(savedInstanceState);
|
|
}
|
|
}
|