diff --git a/src/app/(tabs)/eq.tsx b/src/app/(tabs)/eq.tsx
index 048e02b..fc94007 100644
--- a/src/app/(tabs)/eq.tsx
+++ b/src/app/(tabs)/eq.tsx
@@ -12,7 +12,9 @@ import { BandStrip } from '@/components/eq/BandStrip';
import { BandDetailPanel, type EQEditableValue } from '@/components/eq/BandDetailPanel';
import { EQSlider } from '@/components/eq/EQSlider';
import { EqSheet, EqSheetItem } from '@/components/eq/EqSheet';
+import { EQModeSwitcher } from '@/components/eq/EQModeSwitcher';
import { EQValueEditSheet } from '@/components/eq/EQValueEditSheet';
+import { GraphicEQPanel } from '@/components/eq/GraphicEQPanel';
import { PresetSheet } from '@/components/eq/PresetSheet';
import { SavePresetSheet } from '@/components/eq/SavePresetSheet';
import { colors, radius, spacing } from '@/theme';
@@ -68,6 +70,7 @@ export default function EQScreen() {
}, [])
);
+ const isGraphic = eq.mode === 'graphic';
const activeBand = eq.bands.find((b) => b.id === eq.activeBandId) ?? null;
const activeBandNumber = eq.bands.findIndex((b) => b.id === eq.activeBandId) + 1;
const presetName = eq.presets.find((p) => p.id === eq.activePresetId)?.name ?? 'Custom';
@@ -100,6 +103,12 @@ export default function EQScreen() {
);
+ const modeSwitcherEl = (
+
+
+
+ );
+
const graphEl = (
);
+ // Graphic editor card — the panel draws its response curve behind the sliders
+ // in the tracks' own coordinate space, so it stays glued to the thumbs.
+ const graphicEditorEl = (
+
+
+
+ );
+
const stripEl = (
- {graphEl}
+ {isGraphic ? graphicEditorEl : graphEl}
+ {modeSwitcherEl}
{presetRowEl}
- {stripEl}
- {detailEl}
+ {isGraphic ? null : (
+ <>
+ {stripEl}
+ {detailEl}
+ >
+ )}
{bottomBarEl}
) : (
<>
+ {modeSwitcherEl}
{presetRowEl}
- {graphEl}
- {stripEl}
- {detailEl}
+ {isGraphic ? (
+ {graphicEditorEl}
+ ) : (
+ <>
+ {graphEl}
+ {stripEl}
+ {detailEl}
+ >
+ )}
{bottomBarEl}
>
)}
@@ -226,7 +255,7 @@ export default function EQScreen() {
{sheet === 'overflow' ? (
- {eq.bands.length > 1 && activeBand ? (
+ {!isGraphic && eq.bands.length > 1 && activeBand ? (
0);
+}
+
+/** Compile slider gains into EQBands (stable ids — never mixed into the parametric set). */
+export function buildGraphicBands(gains: readonly number[]): EQBand[] {
+ return GRAPHIC_BANDS.map((def, i) => ({
+ id: `graphic-${def.key}`,
+ type: def.type,
+ frequency: def.frequency,
+ gain: clampEQGain(Number(gains[i]) || 0),
+ Q: def.Q,
+ enabled: true,
+ }));
+}
+
+/**
+ * Project a parametric band set onto the graphic sliders: the preset's combined
+ * response sampled at each graphic band frequency (clamped ±12). An
+ * approximation — lets mode-agnostic built-in presets apply in graphic mode.
+ */
+export function deriveGraphicGains(bands: readonly EQBand[]): number[] {
+ return GRAPHIC_BANDS.map((def) =>
+ clampEQGain(computeCombinedEQMagnitude(bands, def.frequency, DERIVE_SAMPLE_RATE))
+ );
+}
+
+/**
+ * Strict gains validation — exactly GRAPHIC_BAND_COUNT finite numbers or null.
+ * The single guard for corrupt/wrong-length graphic data in settings or presets;
+ * callers fall back to flat gains (store) or parametric bands (presets).
+ */
+export function parseGraphicGains(value: unknown): number[] | null {
+ if (!Array.isArray(value) || value.length !== GRAPHIC_BAND_COUNT) return null;
+ const gains: number[] = [];
+ for (const raw of value) {
+ if (typeof raw !== 'number' || !Number.isFinite(raw)) return null;
+ gains.push(clampEQGain(raw));
+ }
+ return gains;
+}
diff --git a/src/components/eq/EQModeSwitcher.tsx b/src/components/eq/EQModeSwitcher.tsx
new file mode 100644
index 0000000..5d11090
--- /dev/null
+++ b/src/components/eq/EQModeSwitcher.tsx
@@ -0,0 +1,67 @@
+import { Pressable, StyleSheet, View } from 'react-native';
+import { Text } from '@/components/Text';
+import { colors, radius, spacing } from '@/theme';
+import type { EQMode } from '@/types/audio';
+
+const MODES: { key: EQMode; label: string }[] = [
+ { key: 'parametric', label: 'Parametric' },
+ { key: 'graphic', label: 'Graphic' },
+];
+
+/** Two-segment Parametric | Graphic control (ViewModeSwitcher styling, fixed row). */
+export function EQModeSwitcher({
+ value,
+ onChange,
+}: {
+ value: EQMode;
+ onChange: (mode: EQMode) => void;
+}) {
+ return (
+
+ {MODES.map((mode) => {
+ const active = mode.key === value;
+ return (
+ onChange(mode.key)}
+ style={[styles.pill, active && styles.pillActive]}
+ accessibilityRole="button"
+ accessibilityState={{ selected: active }}
+ >
+
+ {mode.label}
+
+
+ );
+ })}
+
+ );
+}
+
+const styles = StyleSheet.create({
+ row: {
+ flexDirection: 'row',
+ gap: spacing.sm,
+ },
+ pill: {
+ flex: 1,
+ alignItems: 'center',
+ backgroundColor: colors.glassBg,
+ borderColor: colors.glassBorder,
+ borderWidth: StyleSheet.hairlineWidth,
+ borderRadius: radius.pill,
+ paddingVertical: spacing.xs + 2,
+ },
+ pillActive: {
+ borderColor: colors.accent,
+ backgroundColor: 'rgba(56, 189, 248, 0.08)',
+ },
+ label: {
+ color: colors.textSecondary,
+ },
+ labelActive: {
+ color: colors.accent,
+ },
+});
+
+export default EQModeSwitcher;
diff --git a/src/components/eq/GraphicEQPanel.tsx b/src/components/eq/GraphicEQPanel.tsx
new file mode 100644
index 0000000..9e05c68
--- /dev/null
+++ b/src/components/eq/GraphicEQPanel.tsx
@@ -0,0 +1,101 @@
+import { StyleSheet, View } from 'react-native';
+import { Text } from '@/components/Text';
+import { colors, spacing } from '@/theme';
+import { EQ_MAX_GAIN_DB, EQ_MIN_GAIN_DB } from '@/audio/eq';
+import { GRAPHIC_BANDS } from '@/audio/graphicEq';
+import { GraphicResponseCurve } from './GraphicResponseCurve';
+import { VerticalEQSlider } from './VerticalEQSlider';
+import { formatFreqHz, formatGain, gainColor } from './format';
+
+interface GraphicEQPanelProps {
+ gains: number[];
+ enabled: boolean;
+ onChangeGain: (index: number, gainDb: number) => void;
+}
+
+/**
+ * Graphic-mode editor: the response curve behind one vertical gain slider per
+ * fixed band. Readouts and labels live in their own rows so the curve canvas
+ * and the slider tracks share the exact same box — thumb centers sit on the
+ * curve's scale. All cells are gap-less flex:1 so column centers match the
+ * curve's evenly spaced band positions.
+ */
+export function GraphicEQPanel({ gains, enabled, onChangeGain }: GraphicEQPanelProps) {
+ return (
+
+
+ {GRAPHIC_BANDS.map((def, i) => (
+
+ {formatGain(gains[i] ?? 0)}
+
+ ))}
+
+
+
+
+
+
+ {GRAPHIC_BANDS.map((def, i) => (
+ onChangeGain(i, v)}
+ />
+ ))}
+
+
+
+ {GRAPHIC_BANDS.map((def) => (
+
+
+ {def.label}
+
+
+ {formatFreqHz(def.frequency)}
+
+
+ ))}
+
+
+ );
+}
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ },
+ metaRow: {
+ flexDirection: 'row',
+ },
+ trackRow: {
+ flex: 1,
+ flexDirection: 'row',
+ },
+ // The row padding absorbs the fader cap's half-height overshoot (16px) at
+ // the ±12 dB extremes.
+ value: {
+ flex: 1,
+ fontSize: 12,
+ textAlign: 'center',
+ paddingBottom: spacing.lg,
+ },
+ labelCell: {
+ flex: 1,
+ paddingTop: spacing.lg,
+ },
+ centered: {
+ textAlign: 'center',
+ },
+ caption: {
+ color: colors.textTertiary,
+ },
+});
+
+export default GraphicEQPanel;
diff --git a/src/components/eq/GraphicResponseCurve.tsx b/src/components/eq/GraphicResponseCurve.tsx
new file mode 100644
index 0000000..f9e3eb5
--- /dev/null
+++ b/src/components/eq/GraphicResponseCurve.tsx
@@ -0,0 +1,149 @@
+import { useMemo, useState } from 'react';
+import { StyleSheet, View, type LayoutChangeEvent } from 'react-native';
+import { Canvas, DashPathEffect, Group, Path, Skia, type SkPath } from '@shopify/react-native-skia';
+import { colors } from '@/theme';
+import type { EQBand } from '@/types/audio';
+import {
+ EQ_MAX_FREQUENCY,
+ EQ_MAX_GAIN_DB,
+ EQ_MIN_FREQUENCY,
+ computeCombinedEQMagnitude,
+} from '@/audio/eq';
+import { GRAPHIC_BANDS, buildGraphicBands } from '@/audio/graphicEq';
+import { GRAPH_SAMPLE_RATE, buildResponseFill } from './eqGraphMath';
+
+const SAMPLES = 96;
+
+interface GraphicResponseCurveProps {
+ gains: number[];
+ enabled: boolean;
+}
+
+/**
+ * Response curve drawn in the slider row's coordinate space so it tracks the
+ * thumbs 1:1: band frequencies land on the evenly spaced column centers
+ * (piecewise-log x between them), and gain spans the full track height with the
+ * 0 dB midline at the track midline — the same mapping as the thumb centers.
+ * Rendered behind the sliders; transparent background (the editor card owns
+ * the chrome).
+ */
+export function GraphicResponseCurve({ gains, enabled }: GraphicResponseCurveProps) {
+ const [size, setSize] = useState({ width: 0, height: 0 });
+ const width = size.width;
+ const height = size.height;
+
+ const bands = useMemo(() => buildGraphicBands(gains), [gains]);
+ const linePath = useMemo(() => buildAlignedResponsePath(bands, width, height), [bands, width, height]);
+ const fillPath = useMemo(
+ () => buildResponseFill(linePath, width, height),
+ [linePath, width, height]
+ );
+
+ const onLayout = (e: LayoutChangeEvent) => {
+ const next = { width: e.nativeEvent.layout.width, height: e.nativeEvent.layout.height };
+ setSize((prev) => (prev.width === next.width && prev.height === next.height ? prev : next));
+ };
+
+ const curveColor = enabled ? colors.accent : colors.textTertiary;
+
+ return (
+
+ {width > 0 && height > 0 ? (
+
+ ) : null}
+
+ );
+}
+
+/** Gain → y across the full track height (thumb-center scale, no graph padding). */
+function gainToTrackY(db: number, height: number): number {
+ const clamped = Math.max(-EQ_MAX_GAIN_DB, Math.min(EQ_MAX_GAIN_DB, db));
+ return (1 - (clamped + EQ_MAX_GAIN_DB) / (2 * EQ_MAX_GAIN_DB)) * height;
+}
+
+/**
+ * x → frequency with band frequencies pinned to the column centers: log-lerp
+ * between adjacent bands, extending to the EQ range limits at the edges.
+ */
+function xToAlignedFreq(x: number, width: number): number {
+ const n = GRAPHIC_BANDS.length;
+ const center = (i: number) => ((i + 0.5) / n) * width;
+ if (x <= center(0)) {
+ return logLerp(EQ_MIN_FREQUENCY, GRAPHIC_BANDS[0].frequency, x / Math.max(1, center(0)));
+ }
+ if (x >= center(n - 1)) {
+ const t = (x - center(n - 1)) / Math.max(1, width - center(n - 1));
+ return logLerp(GRAPHIC_BANDS[n - 1].frequency, EQ_MAX_FREQUENCY, t);
+ }
+ const i = Math.min(n - 2, Math.max(0, Math.floor((x / width) * n - 0.5)));
+ const t = (x - center(i)) / Math.max(1, center(i + 1) - center(i));
+ return logLerp(GRAPHIC_BANDS[i].frequency, GRAPHIC_BANDS[i + 1].frequency, t);
+}
+
+function logLerp(a: number, b: number, t: number): number {
+ return 10 ** (Math.log10(a) + (Math.log10(b) - Math.log10(a)) * Math.max(0, Math.min(1, t)));
+}
+
+function buildAlignedResponsePath(bands: readonly EQBand[], width: number, height: number): SkPath {
+ const path = Skia.Path.Make();
+ if (width <= 0 || height <= 0) return path;
+ for (let s = 0; s <= SAMPLES; s++) {
+ const x = (s / SAMPLES) * width;
+ const db = computeCombinedEQMagnitude(bands, xToAlignedFreq(x, width), GRAPH_SAMPLE_RATE);
+ const y = gainToTrackY(db, height);
+ if (s === 0) path.moveTo(x, y);
+ else path.lineTo(x, y);
+ }
+ return path;
+}
+
+function hLine(y: number, width: number): SkPath {
+ const p = Skia.Path.Make();
+ p.moveTo(0, y);
+ p.lineTo(width, y);
+ return p;
+}
+
+function withAlpha(hex: string, alpha: number): string {
+ const r = parseInt(hex.slice(1, 3), 16);
+ const g = parseInt(hex.slice(3, 5), 16);
+ const b = parseInt(hex.slice(5, 7), 16);
+ return `rgba(${r}, ${g}, ${b}, ${alpha})`;
+}
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ },
+});
+
+export default GraphicResponseCurve;
diff --git a/src/components/eq/PresetSheet.tsx b/src/components/eq/PresetSheet.tsx
index 9198682..d2de615 100644
--- a/src/components/eq/PresetSheet.tsx
+++ b/src/components/eq/PresetSheet.tsx
@@ -14,6 +14,14 @@ interface PresetSheetProps {
onClose: () => void;
}
+/**
+ * Leading row icon telling a custom preset's editor mode apart at a glance.
+ * Built-ins get no icon — they're mode-agnostic and apply in the active mode.
+ */
+function modeIcon(preset: EQPreset): 'options-outline' | 'analytics-outline' {
+ return preset.mode === 'graphic' ? 'options-outline' : 'analytics-outline';
+}
+
/** Preset hub: pick a built-in or custom preset, delete custom ones, or save a new one. */
export function PresetSheet({
presets,
@@ -55,6 +63,7 @@ export function PresetSheet({
{
onApply(p.id);
diff --git a/src/components/eq/VerticalEQSlider.tsx b/src/components/eq/VerticalEQSlider.tsx
new file mode 100644
index 0000000..b15d0b5
--- /dev/null
+++ b/src/components/eq/VerticalEQSlider.tsx
@@ -0,0 +1,156 @@
+import { useRef, useState } from 'react';
+import {
+ StyleSheet,
+ View,
+ type GestureResponderEvent,
+ type LayoutChangeEvent,
+} from 'react-native';
+import { colors, radius } from '@/theme';
+
+// Vertical fader cap (mixer-style): tall capsule with a horizontal grip line
+// marking the exact value position. Half its height overshoots the rail at the
+// extremes — the panel's meta-row padding absorbs (almost) all of it.
+const PILL_W = 16;
+const PILL_H = 32;
+const HALO_W = 30;
+const HALO_H = 50;
+const TRACK_W = 4;
+
+interface VerticalEQSliderProps {
+ /** Accessibility label ("Bass"); the visible text lives in the panel's rows. */
+ label: string;
+ value: number;
+ min: number;
+ max: number;
+ onChange: (v: number) => void;
+}
+
+const clamp01 = (f: number) => Math.min(1, Math.max(0, f));
+
+/**
+ * Vertical gain rail for the graphic EQ — EQSlider's gesture pattern rotated:
+ * anchor the fraction + pageY on grant, then track absolute page deltas so
+ * drifting off the column can't corrupt the value. The rail spans the full
+ * measured height and the pill center travels [0, height] — the exact scale
+ * the GraphicResponseCurve behind it draws in. The bipolar fill runs from the
+ * 0 dB midline to the handle, colored by sign (indigo boost / amber cut, the
+ * same code as the readouts).
+ */
+export function VerticalEQSlider({ label, value, min, max, onChange }: VerticalEQSliderProps) {
+ const [height, setHeight] = useState(0);
+ const [active, setActive] = useState(false);
+ const heightRef = useRef(0);
+ const grantRef = useRef({ fraction: 0, pageY: 0 });
+
+ // fraction 0 = bottom (min), 1 = top (max).
+ const fraction = clamp01((value - min) / (max - min));
+
+ const onLayout = (e: LayoutChangeEvent) => {
+ heightRef.current = e.nativeEvent.layout.height;
+ setHeight(e.nativeEvent.layout.height);
+ };
+
+ const handleGrant = (e: GestureResponderEvent) => {
+ setActive(true);
+ const f = 1 - clamp01(e.nativeEvent.locationY / Math.max(1, heightRef.current));
+ grantRef.current = { fraction: f, pageY: e.nativeEvent.pageY };
+ onChange(min + f * (max - min));
+ };
+
+ const handleMove = (e: GestureResponderEvent) => {
+ const delta = (grantRef.current.pageY - e.nativeEvent.pageY) / Math.max(1, heightRef.current);
+ onChange(min + clamp01(grantRef.current.fraction + delta) * (max - min));
+ };
+
+ const centerY = (1 - fraction) * height;
+ // Bipolar fill: from the 0 dB midline to the pill center.
+ const fillTop = fraction >= 0.5 ? centerY : height / 2;
+ const fillHeight = Math.abs(fraction - 0.5) * height;
+
+ return (
+ true}
+ onMoveShouldSetResponder={() => true}
+ onResponderTerminationRequest={() => false}
+ onResponderGrant={handleGrant}
+ onResponderMove={handleMove}
+ onResponderRelease={() => setActive(false)}
+ onResponderTerminate={() => setActive(false)}
+ accessibilityRole="adjustable"
+ accessibilityLabel={label}
+ >
+
+
+
+ {active ? (
+
+ ) : null}
+
+
+
+
+ );
+}
+
+const styles = StyleSheet.create({
+ touch: {
+ flex: 1,
+ alignItems: 'center',
+ },
+ track: {
+ flex: 1,
+ width: TRACK_W,
+ borderRadius: radius.pill,
+ backgroundColor: colors.glassBorder,
+ overflow: 'hidden',
+ },
+ fill: {
+ position: 'absolute',
+ width: TRACK_W,
+ borderRadius: radius.pill,
+ },
+ // Soft indigo glow behind the pill while dragging.
+ halo: {
+ position: 'absolute',
+ width: HALO_W,
+ height: HALO_H,
+ borderRadius: radius.pill,
+ backgroundColor: colors.accentGlow,
+ },
+ pill: {
+ position: 'absolute',
+ width: PILL_W,
+ height: PILL_H,
+ borderRadius: radius.pill,
+ backgroundColor: colors.accent,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ pillActive: {
+ transform: [{ scale: 1.08 }],
+ backgroundColor: colors.accentHover,
+ },
+ // The fader's grip line — sits exactly on the value position (pill center).
+ pillLine: {
+ width: PILL_W - 6,
+ height: 2,
+ borderRadius: 1,
+ backgroundColor: colors.bgSecondary,
+ },
+});
+
+export default VerticalEQSlider;
diff --git a/src/components/eq/format.ts b/src/components/eq/format.ts
index a337660..6eb8c86 100644
--- a/src/components/eq/format.ts
+++ b/src/components/eq/format.ts
@@ -11,6 +11,15 @@ export function formatFreq(hz: number): string {
return `${Math.round(hz)}`;
}
+/** Frequency with unit, for the graphic-band captions ("60 Hz", "12 kHz"). */
+export function formatFreqHz(hz: number): string {
+ if (hz >= 1000) {
+ const k = hz / 1000;
+ return `${Number.isInteger(k) ? k : k.toFixed(1)} kHz`;
+ }
+ return `${Math.round(hz)} Hz`;
+}
+
export function formatGain(db: number): string {
if (Math.abs(db) < 0.05) return '0';
return `${db > 0 ? '+' : ''}${db.toFixed(1)}`;
diff --git a/src/stores/eqStore.ts b/src/stores/eqStore.ts
index 4e92e71..08e68b6 100644
--- a/src/stores/eqStore.ts
+++ b/src/stores/eqStore.ts
@@ -1,5 +1,5 @@
import { create } from 'zustand';
-import type { EQBand, EQPreset } from '@/types/audio';
+import type { EQBand, EQMode, EQPreset } from '@/types/audio';
import { openLibraryDb } from '@/db/database';
import { getSetting, setSetting } from '@/db/queries';
import {
@@ -13,6 +13,12 @@ import {
flattenBandsForNative,
} from '@/audio/eq';
import { createBuiltInPresets, createDefaultBands, FLAT_PRESET_ID, genEqId } from '@/audio/eqPresets';
+import {
+ buildGraphicBands,
+ createFlatGraphicGains,
+ deriveGraphicGains,
+ parseGraphicGains,
+} from '@/audio/graphicEq';
import { setEqBandsNative, setEqEnabledNative, setEqPreampNative } from '@/audio/eqNative';
/**
@@ -26,9 +32,20 @@ const PREAMP_KEY = 'eq_preamp';
const BANDS_KEY = 'eq_bands';
const ACTIVE_PRESET_KEY = 'eq_active_preset';
const CUSTOM_PRESETS_KEY = 'eq_custom_presets';
+const MODE_KEY = 'eq_mode';
+const GRAPHIC_GAINS_KEY = 'eq_graphic_gains';
const PERSIST_DEBOUNCE_MS = 250;
+function safeJsonParse(json: string | null): unknown {
+ if (!json) return null;
+ try {
+ return JSON.parse(json);
+ } catch {
+ return null;
+ }
+}
+
function parseBands(json: string | null): EQBand[] | null {
if (!json) return null;
try {
@@ -46,17 +63,26 @@ function parseCustomPresets(json: string | null): EQPreset[] {
const arr = JSON.parse(json);
if (!Array.isArray(arr)) return [];
return arr
- .filter((p): p is { id?: string; name: string; preamp?: number; bands?: unknown[] } => !!p && typeof p.name === 'string')
- .map((p) => ({
- // Keep the stored id so a persisted activePresetId still matches on reload.
- id: typeof p.id === 'string' && p.id.length > 0 ? p.id : genEqId(),
- name: p.name,
- preamp: clampPreamp(typeof p.preamp === 'number' ? p.preamp : 0),
- bands: Array.isArray(p.bands)
- ? p.bands.slice(0, EQ_MAX_BANDS).map((b) => createNormalizedEQBand(b as object, genEqId()))
- : createDefaultBands(),
- isCustom: true,
- }));
+ .filter(
+ (p): p is { id?: string; name: string; preamp?: number; bands?: unknown[]; mode?: unknown; graphicGains?: unknown } =>
+ !!p && typeof p.name === 'string'
+ )
+ .map((p) => {
+ // Invalid/missing graphic gains degrade the preset to parametric — the
+ // compiled bands snapshot below sounds identical.
+ const graphicGains = p.mode === 'graphic' ? parseGraphicGains(p.graphicGains) : null;
+ return {
+ // Keep the stored id so a persisted activePresetId still matches on reload.
+ id: typeof p.id === 'string' && p.id.length > 0 ? p.id : genEqId(),
+ name: p.name,
+ preamp: clampPreamp(typeof p.preamp === 'number' ? p.preamp : 0),
+ bands: Array.isArray(p.bands)
+ ? p.bands.slice(0, EQ_MAX_BANDS).map((b) => createNormalizedEQBand(b as object, genEqId()))
+ : createDefaultBands(),
+ isCustom: true,
+ ...(graphicGains ? { mode: 'graphic' as const, graphicGains } : {}),
+ };
+ });
} catch {
return [];
}
@@ -66,6 +92,8 @@ interface EQStore {
enabled: boolean;
preamp: number; // dB
bands: EQBand[];
+ mode: EQMode; // which editor drives the native bands (preamp/enabled are shared)
+ graphicGains: number[]; // graphic-mode slider gains (dB), independent of `bands`
presets: EQPreset[]; // built-in + custom
activePresetId: string | null; // null = manually edited ("Custom")
activeBandId: string | null; // UI selection shared by curve / strip / panel
@@ -75,6 +103,8 @@ interface EQStore {
setEnabled: (enabled: boolean) => void;
toggleEnabled: () => void;
setPreamp: (db: number) => void;
+ setMode: (mode: EQMode) => void;
+ setGraphicGain: (index: number, gainDb: number) => void;
addBand: (band?: Partial) => void;
removeBand: (id: string) => void;
updateBand: (id: string, updates: Partial) => void;
@@ -92,10 +122,11 @@ let persistTimer: ReturnType | null = null;
export const useEQStore = create((set, get) => {
function syncToNative(): void {
- const { enabled, preamp, bands } = get();
+ const { enabled, preamp, bands, mode, graphicGains } = get();
+ const activeBands = mode === 'graphic' ? buildGraphicBands(graphicGains) : bands;
setEqEnabledNative(enabled);
setEqPreampNative(enabled ? dbToLinear(preamp) : 1);
- setEqBandsNative(flattenBandsForNative(bands));
+ setEqBandsNative(flattenBandsForNative(activeBands));
}
function schedulePersist(): void {
@@ -107,7 +138,7 @@ export const useEQStore = create((set, get) => {
}
async function persistNow(): Promise {
- const { enabled, preamp, bands, activePresetId, presets } = get();
+ const { enabled, preamp, bands, mode, graphicGains, activePresetId, presets } = get();
const custom = presets.filter((p) => p.isCustom);
try {
const db = await openLibraryDb();
@@ -115,12 +146,20 @@ export const useEQStore = create((set, get) => {
setSetting(db, ENABLED_KEY, enabled ? 'true' : 'false'),
setSetting(db, PREAMP_KEY, String(preamp)),
setSetting(db, BANDS_KEY, JSON.stringify(bands)),
+ setSetting(db, MODE_KEY, mode),
+ setSetting(db, GRAPHIC_GAINS_KEY, JSON.stringify(graphicGains)),
setSetting(db, ACTIVE_PRESET_KEY, activePresetId ?? ''),
setSetting(
db,
CUSTOM_PRESETS_KEY,
JSON.stringify(
- custom.map((p) => ({ id: p.id, name: p.name, preamp: p.preamp, bands: p.bands }))
+ custom.map((p) => ({
+ id: p.id,
+ name: p.name,
+ preamp: p.preamp,
+ bands: p.bands,
+ ...(p.mode === 'graphic' ? { mode: p.mode, graphicGains: p.graphicGains } : {}),
+ }))
)
),
]);
@@ -140,6 +179,8 @@ export const useEQStore = create((set, get) => {
enabled: false,
preamp: 0,
bands: createDefaultBands(),
+ mode: 'parametric',
+ graphicGains: createFlatGraphicGains(),
presets: createBuiltInPresets(),
activePresetId: FLAT_PRESET_ID,
activeBandId: null,
@@ -148,10 +189,12 @@ export const useEQStore = create((set, get) => {
load: async () => {
if (get().loaded) return;
const db = await openLibraryDb();
- const [enabledRaw, preampRaw, bandsRaw, activeRaw, customRaw] = await Promise.all([
+ const [enabledRaw, preampRaw, bandsRaw, modeRaw, gainsRaw, activeRaw, customRaw] = await Promise.all([
getSetting(db, ENABLED_KEY),
getSetting(db, PREAMP_KEY),
getSetting(db, BANDS_KEY),
+ getSetting(db, MODE_KEY),
+ getSetting(db, GRAPHIC_GAINS_KEY),
getSetting(db, ACTIVE_PRESET_KEY),
getSetting(db, CUSTOM_PRESETS_KEY),
]);
@@ -164,6 +207,9 @@ export const useEQStore = create((set, get) => {
enabled: enabledRaw === 'true',
preamp: clampPreamp(Number(preampRaw) || 0),
bands,
+ // Missing key (pre-graphic installs) → parametric.
+ mode: modeRaw === 'graphic' ? 'graphic' : 'parametric',
+ graphicGains: parseGraphicGains(safeJsonParse(gainsRaw)) ?? createFlatGraphicGains(),
presets,
// Stored active preset ids are regenerated on load (parseCustomPresets makes
// new ids), so only built-in ids survive a reload; fall back to "Custom".
@@ -188,6 +234,23 @@ export const useEQStore = create((set, get) => {
setPreamp: (db) => markEdited({ preamp: clampPreamp(db) }),
+ setMode: (mode) => {
+ if (get().mode === mode) return;
+ // Non-destructive: both modes keep their own band state; only the preset
+ // label stops describing what's audible.
+ set({ mode, activePresetId: null });
+ syncToNative();
+ schedulePersist();
+ },
+
+ setGraphicGain: (index, gainDb) => {
+ const gains = get().graphicGains;
+ if (index < 0 || index >= gains.length) return;
+ const next = gains.slice();
+ next[index] = clampEQGain(gainDb);
+ markEdited({ graphicGains: next });
+ },
+
addBand: (partial) => {
const { bands } = get();
if (bands.length >= EQ_MAX_BANDS) return;
@@ -234,28 +297,74 @@ export const useEQStore = create((set, get) => {
applyPreset: (presetId) => {
const preset = get().presets.find((p) => p.id === presetId);
if (!preset) return;
- const bands = preset.bands.map((b) => createNormalizedEQBand(b, genEqId()));
- set({
- bands,
- preamp: clampPreamp(preset.preamp),
- activePresetId: presetId,
- activeBandId: bands[0]?.id ?? null,
- });
+ // Custom presets re-open in the mode they were saved in (each branch leaves
+ // the other mode's band state untouched); built-ins are mode-agnostic and
+ // apply in whichever mode is active.
+ const graphicGains = preset.mode === 'graphic' ? parseGraphicGains(preset.graphicGains) : null;
+ if (graphicGains) {
+ set({
+ mode: 'graphic',
+ graphicGains,
+ preamp: clampPreamp(preset.preamp),
+ activePresetId: presetId,
+ });
+ } else if (!preset.isCustom && get().mode === 'graphic') {
+ // Project the parametric built-in onto the 5 sliders (its response
+ // sampled at each band frequency) instead of yanking the user out of
+ // graphic mode.
+ set({
+ graphicGains: deriveGraphicGains(preset.bands),
+ preamp: clampPreamp(preset.preamp),
+ activePresetId: presetId,
+ });
+ } else {
+ const bands = preset.bands.map((b) => createNormalizedEQBand(b, genEqId()));
+ set({
+ mode: 'parametric',
+ bands,
+ preamp: clampPreamp(preset.preamp),
+ activePresetId: presetId,
+ activeBandId: bands[0]?.id ?? null,
+ });
+ }
syncToNative();
schedulePersist();
},
- resetToFlat: () => get().applyPreset(FLAT_PRESET_ID),
+ resetToFlat: () => {
+ // In graphic mode, flatten in place — applying the parametric Flat preset
+ // would silently switch modes.
+ if (get().mode === 'graphic') {
+ set({ graphicGains: createFlatGraphicGains(), preamp: 0, activePresetId: null });
+ syncToNative();
+ schedulePersist();
+ return;
+ }
+ get().applyPreset(FLAT_PRESET_ID);
+ },
saveCustomPreset: (name) => {
- const { bands, preamp, presets } = get();
- const preset: EQPreset = {
- id: genEqId(),
- name: name.trim() || 'Custom Preset',
- preamp,
- bands: bands.map((b) => ({ ...b, id: genEqId() })),
- isCustom: true,
- };
+ const { bands, mode, graphicGains, preamp, presets } = get();
+ const preset: EQPreset =
+ mode === 'graphic'
+ ? {
+ id: genEqId(),
+ name: name.trim() || 'Custom Preset',
+ preamp,
+ // Compiled snapshot so builds without graphic support (or corrupt
+ // gains) still load an identical parametric preset.
+ bands: buildGraphicBands(graphicGains).map((b) => ({ ...b, id: genEqId() })),
+ mode: 'graphic',
+ graphicGains: [...graphicGains],
+ isCustom: true,
+ }
+ : {
+ id: genEqId(),
+ name: name.trim() || 'Custom Preset',
+ preamp,
+ bands: bands.map((b) => ({ ...b, id: genEqId() })),
+ isCustom: true,
+ };
set({ presets: [...presets, preset], activePresetId: preset.id });
schedulePersist();
},
diff --git a/src/types/audio.ts b/src/types/audio.ts
index d7f2018..1b03df2 100644
--- a/src/types/audio.ts
+++ b/src/types/audio.ts
@@ -67,6 +67,10 @@ export interface EQBand {
enabled: boolean;
}
+// EQ editor mode — graphic is a fixed 5-band front-end compiled onto the same
+// parametric engine (see src/audio/graphicEq.ts).
+export type EQMode = 'parametric' | 'graphic';
+
// EQ Preset
export interface EQPreset {
id: string;
@@ -74,6 +78,11 @@ export interface EQPreset {
bands: EQBand[];
preamp: number;
isCustom?: boolean;
+ // Which editor the preset targets; absent = 'parametric' (pre-mode presets).
+ mode?: EQMode;
+ // Slider gains (dB) when mode === 'graphic'; `bands` then holds the compiled
+ // snapshot so older builds / missing gains degrade to an identical parametric preset.
+ graphicGains?: number[];
}
// Visualizer config (scopes land at M3)
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/7a308bbc4fe84868415859cf0cc55834/results.bin b/vendor/kotlinaudio/kotlin-audio/build/.transforms/7a308bbc4fe84868415859cf0cc55834/results.bin
deleted file mode 100644
index 0d259dd..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/.transforms/7a308bbc4fe84868415859cf0cc55834/results.bin
+++ /dev/null
@@ -1 +0,0 @@
-o/classes
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/7a308bbc4fe84868415859cf0cc55834/transformed/classes/classes_dex/classes.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/7a308bbc4fe84868415859cf0cc55834/transformed/classes/classes_dex/classes.dex
deleted file mode 100644
index 3284937..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/7a308bbc4fe84868415859cf0cc55834/transformed/classes/classes_dex/classes.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/results.bin b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/results.bin
deleted file mode 100644
index 7ed749e..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/results.bin
+++ /dev/null
@@ -1 +0,0 @@
-o/bundleLibRuntimeToDirDebug
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/BuildConfig.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/BuildConfig.dex
deleted file mode 100644
index 00e0091..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/BuildConfig.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/EventHolder.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/EventHolder.dex
deleted file mode 100644
index 1e59ed6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/EventHolder.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder$updateNotificationState$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder$updateNotificationState$1.dex
deleted file mode 100644
index ff7efe9..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder$updateNotificationState$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder.dex
deleted file mode 100644
index cc956df..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.dex
deleted file mode 100644
index 21b9cc3..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.dex
deleted file mode 100644
index fa21774..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.dex
deleted file mode 100644
index eb11dd6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.dex
deleted file mode 100644
index f990063..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.dex
deleted file mode 100644
index fc83458..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.dex
deleted file mode 100644
index 7906305..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.dex
deleted file mode 100644
index c7baf90..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.dex
deleted file mode 100644
index ceada62..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.dex
deleted file mode 100644
index a181b7b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.dex
deleted file mode 100644
index 44f2990..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder.dex
deleted file mode 100644
index a13cf85..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioContentType.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioContentType.dex
deleted file mode 100644
index 6bda98e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioContentType.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItem.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItem.dex
deleted file mode 100644
index d694fa9..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItem.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemHolder.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemHolder.dex
deleted file mode 100644
index 4f040cf..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemHolder.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemOptions.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemOptions.dex
deleted file mode 100644
index 7a499f4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemOptions.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$AUTO.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$AUTO.dex
deleted file mode 100644
index fbd9304..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$AUTO.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.dex
deleted file mode 100644
index 9c3246f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$REPEAT.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$REPEAT.dex
deleted file mode 100644
index ec9aaeb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$REPEAT.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.dex
deleted file mode 100644
index e95c6fc..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason.dex
deleted file mode 100644
index d2be831..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioPlayerState.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioPlayerState.dex
deleted file mode 100644
index 3b6c2b8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/AudioPlayerState.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/BufferConfig.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/BufferConfig.dex
deleted file mode 100644
index dd53883..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/BufferConfig.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/CacheConfig.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/CacheConfig.dex
deleted file mode 100644
index 7b7e1ac..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/CacheConfig.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/Capability.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/Capability.dex
deleted file mode 100644
index 5b25ac0..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/Capability.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultAudioItem.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultAudioItem.dex
deleted file mode 100644
index d028179..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultAudioItem.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultPlayerOptions.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultPlayerOptions.dex
deleted file mode 100644
index 2cde7be..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultPlayerOptions.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions$WhenMappings.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions$WhenMappings.dex
deleted file mode 100644
index 2b307b3..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions$WhenMappings.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions.dex
deleted file mode 100644
index b619a6c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/FocusChangeData.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/FocusChangeData.dex
deleted file mode 100644
index 1086c11..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/FocusChangeData.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$FORWARD.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$FORWARD.dex
deleted file mode 100644
index 1121e8f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$FORWARD.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$NEXT.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$NEXT.dex
deleted file mode 100644
index acec27e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$NEXT.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PAUSE.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PAUSE.dex
deleted file mode 100644
index e3966ba..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PAUSE.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PLAY.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PLAY.dex
deleted file mode 100644
index 2a6f851..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PLAY.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PREVIOUS.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PREVIOUS.dex
deleted file mode 100644
index 3fae361..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PREVIOUS.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$RATING.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$RATING.dex
deleted file mode 100644
index 8939760..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$RATING.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$REWIND.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$REWIND.dex
deleted file mode 100644
index c1e6651..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$REWIND.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$SEEK.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$SEEK.dex
deleted file mode 100644
index f3cc01c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$SEEK.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$STOP.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$STOP.dex
deleted file mode 100644
index 2e08bf1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$STOP.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback.dex
deleted file mode 100644
index 4cd4b54..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaType.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaType.dex
deleted file mode 100644
index eb0e39a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/MediaType.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$BACKWARD.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$BACKWARD.dex
deleted file mode 100644
index b7c37f1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$BACKWARD.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$FORWARD.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$FORWARD.dex
deleted file mode 100644
index d4dbd61..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$FORWARD.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$NEXT.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$NEXT.dex
deleted file mode 100644
index f09d9c2..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$NEXT.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$PLAY_PAUSE.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$PLAY_PAUSE.dex
deleted file mode 100644
index ed6a621..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$PLAY_PAUSE.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$PREVIOUS.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$PREVIOUS.dex
deleted file mode 100644
index 05c67fe..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$PREVIOUS.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$SEEK_TO.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$SEEK_TO.dex
deleted file mode 100644
index 6a84295..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$SEEK_TO.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$STOP.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$STOP.dex
deleted file mode 100644
index 274e131..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton$STOP.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton.dex
deleted file mode 100644
index 3e32276..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationButton.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationConfig.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationConfig.dex
deleted file mode 100644
index 516698d..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationConfig.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationState$CANCELLED.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationState$CANCELLED.dex
deleted file mode 100644
index aff1814..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationState$CANCELLED.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationState$POSTED.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationState$POSTED.dex
deleted file mode 100644
index 4fa619e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationState$POSTED.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationState.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationState.dex
deleted file mode 100644
index d1388be..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/NotificationState.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlayWhenReadyChangeData.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlayWhenReadyChangeData.dex
deleted file mode 100644
index d01ec50..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlayWhenReadyChangeData.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlaybackEndedReason.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlaybackEndedReason.dex
deleted file mode 100644
index a64b92b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlaybackEndedReason.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlaybackError.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlaybackError.dex
deleted file mode 100644
index 27fe065..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlaybackError.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlayerConfig.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlayerConfig.dex
deleted file mode 100644
index eb1d395..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlayerConfig.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlayerOptions.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlayerOptions.dex
deleted file mode 100644
index 48a3eeb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PlayerOptions.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$AUTO.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$AUTO.dex
deleted file mode 100644
index 83c1fdb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$AUTO.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.dex
deleted file mode 100644
index 0dac458..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK.dex
deleted file mode 100644
index ac9def6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.dex
deleted file mode 100644
index 9648b0c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.dex
deleted file mode 100644
index 1b6dc0c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$UNKNOWN.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$UNKNOWN.dex
deleted file mode 100644
index 76d1bb2..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$UNKNOWN.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason.dex
deleted file mode 100644
index c8d5985..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/PositionChangedReason.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/QueuedPlayerOptions.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/QueuedPlayerOptions.dex
deleted file mode 100644
index b01d7ce..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/QueuedPlayerOptions.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/RepeatMode$Companion.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/RepeatMode$Companion.dex
deleted file mode 100644
index 821c1f5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/RepeatMode$Companion.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/RepeatMode.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/RepeatMode.dex
deleted file mode 100644
index 03ca414..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/RepeatMode.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/WakeMode.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/WakeMode.dex
deleted file mode 100644
index 7cdbd60..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/models/WakeMode.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$1.dex
deleted file mode 100644
index 625351c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$Companion.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$Companion.dex
deleted file mode 100644
index 72bd9ef..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$Companion.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createMediaSessionAction$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createMediaSessionAction$1.dex
deleted file mode 100644
index 2b5b8d1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createMediaSessionAction$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createNotification$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createNotification$1.dex
deleted file mode 100644
index 555010a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createNotification$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$customActionReceiver$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$customActionReceiver$1.dex
deleted file mode 100644
index c709a27..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$customActionReceiver$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1$getCurrentLargeIcon$$inlined$target$default$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1$getCurrentLargeIcon$$inlined$target$default$1.dex
deleted file mode 100644
index d7d6b05..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1$getCurrentLargeIcon$$inlined$target$default$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1.dex
deleted file mode 100644
index b016024..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$destroy$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$destroy$1.dex
deleted file mode 100644
index 84484bd..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$destroy$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$invalidate$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$invalidate$1.dex
deleted file mode 100644
index 8493177..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$invalidate$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationCancelled$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationCancelled$1.dex
deleted file mode 100644
index 5076880..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationCancelled$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationPosted$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationPosted$1.dex
deleted file mode 100644
index 861645e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationPosted$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButton$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButton$1.dex
deleted file mode 100644
index c45671a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButton$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButtonCompact$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButtonCompact$1.dex
deleted file mode 100644
index fe5ef89..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButtonCompact$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButton$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButton$1.dex
deleted file mode 100644
index 0c18422..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButton$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButtonCompact$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButtonCompact$1.dex
deleted file mode 100644
index 4f4d47c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButtonCompact$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPlayPauseButton$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPlayPauseButton$1.dex
deleted file mode 100644
index 4324cf7..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPlayPauseButton$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButton$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButton$1.dex
deleted file mode 100644
index 1f28867..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButton$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButtonCompact$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButtonCompact$1.dex
deleted file mode 100644
index 5ad6e3b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButtonCompact$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButton$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButton$1.dex
deleted file mode 100644
index 8c00110..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButton$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButtonCompact$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButtonCompact$1.dex
deleted file mode 100644
index 6c49b5f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButtonCompact$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showStopButton$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showStopButton$1.dex
deleted file mode 100644
index 7dc3800..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showStopButton$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$special$$inlined$target$default$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$special$$inlined$target$default$1.dex
deleted file mode 100644
index 14eea94..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$special$$inlined$target$default$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$updateMediaSessionPlaybackActions$$inlined$sortedBy$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$updateMediaSessionPlaybackActions$$inlined$sortedBy$1.dex
deleted file mode 100644
index 7bcc300..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager$updateMediaSessionPlaybackActions$$inlined$sortedBy$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager.dex
deleted file mode 100644
index 0d2241a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/notification/NotificationManager.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/AudioPlayer.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/AudioPlayer.dex
deleted file mode 100644
index 38efd20..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/AudioPlayer.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2$WhenMappings.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2$WhenMappings.dex
deleted file mode 100644
index 4f427fa..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2$WhenMappings.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2.dex
deleted file mode 100644
index 7688c4c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$Companion.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$Companion.dex
deleted file mode 100644
index f61460a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$Companion.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$PlayerListener.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$PlayerListener.dex
deleted file mode 100644
index a7d930d..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$PlayerListener.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$WhenMappings.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$WhenMappings.dex
deleted file mode 100644
index afae875..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$WhenMappings.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$createForwardingPlayer$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$createForwardingPlayer$1.dex
deleted file mode 100644
index 9f46c81..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$createForwardingPlayer$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$ratingType$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$ratingType$1.dex
deleted file mode 100644
index d226538..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$ratingType$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer.dex
deleted file mode 100644
index 7e9bb2a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/QueuedAudioPlayer.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/QueuedAudioPlayer.dex
deleted file mode 100644
index f89a21c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/QueuedAudioPlayer.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/components/MediaItemExtKt.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/components/MediaItemExtKt.dex
deleted file mode 100644
index 7e6ce5d..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/components/MediaItemExtKt.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/components/PlayerCache.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/components/PlayerCache.dex
deleted file mode 100644
index 6434e0f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/players/components/PlayerCache.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt$buildScopeRenderersFactory$1.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt$buildScopeRenderersFactory$1.dex
deleted file mode 100644
index 375de2f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt$buildScopeRenderersFactory$1.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt.dex
deleted file mode 100644
index 8f8af82..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/scope/ScopeTapAudioProcessor.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/scope/ScopeTapAudioProcessor.dex
deleted file mode 100644
index c1f51b8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/scope/ScopeTapAudioProcessor.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/utils/UtilsKt.dex b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/utils/UtilsKt.dex
deleted file mode 100644
index fa2e674..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/kotlinaudio/utils/UtilsKt.dex and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin
deleted file mode 100644
index 601f245..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/.transforms/efb325046c0dd0f6a51032165627c60b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/generated/source/buildConfig/debug/com/doublesymmetry/kotlinaudio/BuildConfig.java b/vendor/kotlinaudio/kotlin-audio/build/generated/source/buildConfig/debug/com/doublesymmetry/kotlinaudio/BuildConfig.java
deleted file mode 100644
index a5d8149..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/generated/source/buildConfig/debug/com/doublesymmetry/kotlinaudio/BuildConfig.java
+++ /dev/null
@@ -1,10 +0,0 @@
-/**
- * Automatically generated file. DO NOT MODIFY
- */
-package com.doublesymmetry.kotlinaudio;
-
-public final class BuildConfig {
- public static final boolean DEBUG = Boolean.parseBoolean("true");
- public static final String LIBRARY_PACKAGE_NAME = "com.doublesymmetry.kotlinaudio";
- public static final String BUILD_TYPE = "debug";
-}
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/vendor/kotlinaudio/kotlin-audio/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
deleted file mode 100644
index c5eec88..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/vendor/kotlinaudio/kotlin-audio/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json
deleted file mode 100644
index f2ef417..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "version": 3,
- "artifactType": {
- "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
- "kind": "Directory"
- },
- "applicationId": "com.doublesymmetry.kotlinaudio",
- "variantName": "debug",
- "elements": [
- {
- "type": "SINGLE",
- "filters": [],
- "attributes": [],
- "outputFile": "AndroidManifest.xml"
- }
- ],
- "elementType": "File"
-}
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/vendor/kotlinaudio/kotlin-audio/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
deleted file mode 100644
index 1211b1e..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-aarFormatVersion=1.0
-aarMetadataVersion=1.0
-minCompileSdk=1
-minCompileSdkExtension=0
-minAndroidGradlePluginVersion=1.0.0
-coreLibraryDesugaringEnabled=false
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/vendor/kotlinaudio/kotlin-audio/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json
deleted file mode 100644
index 9e26dfe..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json
+++ /dev/null
@@ -1 +0,0 @@
-{}
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/vendor/kotlinaudio/kotlin-audio/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar
deleted file mode 100644
index 528c8f8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/vendor/kotlinaudio/kotlin-audio/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar
deleted file mode 100644
index c6a02b5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/vendor/kotlinaudio/kotlin-audio/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt
deleted file mode 100644
index 12069ca..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-int color black 0x0
-int color purple_200 0x0
-int color purple_500 0x0
-int color purple_700 0x0
-int color teal_200 0x0
-int color teal_700 0x0
-int color white 0x0
-int string pause 0x0
-int string play 0x0
-int string playback_channel_name 0x0
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
deleted file mode 100644
index df8e87f..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
+++ /dev/null
@@ -1 +0,0 @@
-#Fri Jun 19 12:51:01 EDT 2026
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
deleted file mode 100644
index 1064c63..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
- #FF000000
- #FFBB86FC
- #FF6200EE
- #FF3700B3
- #FF03DAC5
- #FF018786
- #FFFFFFFF
- Pause
- Play
- Now Playing
-
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/debug/packageDebugResources/merger.xml
deleted file mode 100644
index 0e274a1..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/debug/packageDebugResources/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-#FFBB86FC#FF6200EE#FF3700B3#FF03DAC5#FF018786#FF000000#FFFFFFFFPlayNow PlayingPause
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/mergeDebugAssets/merger.xml b/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/mergeDebugAssets/merger.xml
deleted file mode 100644
index f850444..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/mergeDebugAssets/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
deleted file mode 100644
index 350c19f..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/mergeDebugShaders/merger.xml b/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/mergeDebugShaders/merger.xml
deleted file mode 100644
index 4aeb5eb..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/incremental/mergeDebugShaders/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/kotlin-audio_debug.kotlin_module b/vendor/kotlinaudio/kotlin-audio/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/kotlin-audio_debug.kotlin_module
deleted file mode 100644
index 5007816..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/kotlin-audio_debug.kotlin_module and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/doublesymmetry/kotlinaudio/BuildConfig.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/doublesymmetry/kotlinaudio/BuildConfig.class
deleted file mode 100644
index 5b47c2b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/doublesymmetry/kotlinaudio/BuildConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/vendor/kotlinaudio/kotlin-audio/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
deleted file mode 100644
index 8868aec..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-R_DEF: Internal format may change without notice
-local
-color black
-color purple_200
-color purple_500
-color purple_700
-color teal_200
-color teal_700
-color white
-string pause
-string play
-string playback_channel_name
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/vendor/kotlinaudio/kotlin-audio/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt
deleted file mode 100644
index cf034fc..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-1
-2
-4
-5
-6
-7
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/vendor/kotlinaudio/kotlin-audio/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml
deleted file mode 100644
index c5eec88..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/vendor/kotlinaudio/kotlin-audio/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json
deleted file mode 100644
index 0637a08..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json
+++ /dev/null
@@ -1 +0,0 @@
-[]
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/vendor/kotlinaudio/kotlin-audio/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt
deleted file mode 100644
index 08f4ebe..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt
+++ /dev/null
@@ -1 +0,0 @@
-0 Warning/Error
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml b/vendor/kotlinaudio/kotlin-audio/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml
deleted file mode 100644
index 1064c63..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
- #FF000000
- #FFBB86FC
- #FF6200EE
- #FF3700B3
- #FF03DAC5
- #FF018786
- #FFFFFFFF
- Pause
- Play
- Now Playing
-
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/kotlin-audio_debug.kotlin_module b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/kotlin-audio_debug.kotlin_module
deleted file mode 100644
index 5007816..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/kotlin-audio_debug.kotlin_module and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/BuildConfig.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/BuildConfig.class
deleted file mode 100644
index 5b47c2b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/BuildConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/EventHolder.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/EventHolder.class
deleted file mode 100644
index 05060b4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/EventHolder.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder$updateNotificationState$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder$updateNotificationState$1.class
deleted file mode 100644
index b4a1b02..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder$updateNotificationState$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder.class
deleted file mode 100644
index 09765b9..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class
deleted file mode 100644
index 8c3c3cb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class
deleted file mode 100644
index aaf7d1c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class
deleted file mode 100644
index 238d25c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class
deleted file mode 100644
index a80de41..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class
deleted file mode 100644
index 975112b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class
deleted file mode 100644
index be90805..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class
deleted file mode 100644
index 13cfbcf..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class
deleted file mode 100644
index ee7f84b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class
deleted file mode 100644
index 0bad8d5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class
deleted file mode 100644
index 83bb905..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder.class
deleted file mode 100644
index e99ada1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioContentType.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioContentType.class
deleted file mode 100644
index 5d227ca..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioContentType.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItem.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItem.class
deleted file mode 100644
index 817210f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItem.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemHolder.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemHolder.class
deleted file mode 100644
index 9a5d874..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemHolder.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemOptions.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemOptions.class
deleted file mode 100644
index 05c4736..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$AUTO.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$AUTO.class
deleted file mode 100644
index e562f7a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$AUTO.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class
deleted file mode 100644
index be940bd..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class
deleted file mode 100644
index a4225d1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class
deleted file mode 100644
index 0c8b266..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason.class
deleted file mode 100644
index 0262296..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioPlayerState.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioPlayerState.class
deleted file mode 100644
index c95399b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/AudioPlayerState.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/BufferConfig.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/BufferConfig.class
deleted file mode 100644
index 14861f4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/BufferConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/CacheConfig.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/CacheConfig.class
deleted file mode 100644
index 5e0f27a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/CacheConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/Capability.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/Capability.class
deleted file mode 100644
index 5ce8861..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/Capability.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultAudioItem.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultAudioItem.class
deleted file mode 100644
index c7e4975..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultAudioItem.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultPlayerOptions.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultPlayerOptions.class
deleted file mode 100644
index f1799b5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultPlayerOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions$WhenMappings.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions$WhenMappings.class
deleted file mode 100644
index 2e29ecb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions$WhenMappings.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions.class
deleted file mode 100644
index 24212af..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/FocusChangeData.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/FocusChangeData.class
deleted file mode 100644
index 09f6155..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/FocusChangeData.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$FORWARD.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$FORWARD.class
deleted file mode 100644
index 27a5104..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$FORWARD.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$NEXT.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$NEXT.class
deleted file mode 100644
index 740cbb8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$NEXT.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PAUSE.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PAUSE.class
deleted file mode 100644
index 4449ea5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PAUSE.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PLAY.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PLAY.class
deleted file mode 100644
index 7546e70..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PLAY.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class
deleted file mode 100644
index 756314a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$RATING.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$RATING.class
deleted file mode 100644
index 5bf4e0f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$RATING.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$REWIND.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$REWIND.class
deleted file mode 100644
index f14e87c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$REWIND.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$SEEK.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$SEEK.class
deleted file mode 100644
index e8d651c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$SEEK.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$STOP.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$STOP.class
deleted file mode 100644
index 4499d11..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$STOP.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback.class
deleted file mode 100644
index 4362142..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaType.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaType.class
deleted file mode 100644
index 2a76328..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/MediaType.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$BACKWARD.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$BACKWARD.class
deleted file mode 100644
index 9590b9f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$BACKWARD.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$FORWARD.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$FORWARD.class
deleted file mode 100644
index ad2ecf8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$FORWARD.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$NEXT.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$NEXT.class
deleted file mode 100644
index df1460c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$NEXT.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PLAY_PAUSE.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PLAY_PAUSE.class
deleted file mode 100644
index ee2bd4b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PLAY_PAUSE.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PREVIOUS.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PREVIOUS.class
deleted file mode 100644
index a671fa5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PREVIOUS.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$SEEK_TO.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$SEEK_TO.class
deleted file mode 100644
index ff7d552..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$SEEK_TO.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$STOP.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$STOP.class
deleted file mode 100644
index b65f8ad..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton$STOP.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton.class
deleted file mode 100644
index 5106e24..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationButton.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationConfig.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationConfig.class
deleted file mode 100644
index 7123c06..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationState$CANCELLED.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationState$CANCELLED.class
deleted file mode 100644
index 527cac5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationState$CANCELLED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationState$POSTED.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationState$POSTED.class
deleted file mode 100644
index 16c3b50..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationState$POSTED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationState.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationState.class
deleted file mode 100644
index a34108c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/NotificationState.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlayWhenReadyChangeData.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlayWhenReadyChangeData.class
deleted file mode 100644
index 1ff8344..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlayWhenReadyChangeData.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlaybackEndedReason.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlaybackEndedReason.class
deleted file mode 100644
index a078433..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlaybackEndedReason.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlaybackError.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlaybackError.class
deleted file mode 100644
index 94e2a6e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlaybackError.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlayerConfig.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlayerConfig.class
deleted file mode 100644
index 538d23b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlayerConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlayerOptions.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlayerOptions.class
deleted file mode 100644
index da742fb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PlayerOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$AUTO.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$AUTO.class
deleted file mode 100644
index da77c05..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$AUTO.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class
deleted file mode 100644
index 58e1c60..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK.class
deleted file mode 100644
index d979c25..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class
deleted file mode 100644
index 97596fb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class
deleted file mode 100644
index 98fb2f8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$UNKNOWN.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$UNKNOWN.class
deleted file mode 100644
index bbafead..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$UNKNOWN.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason.class
deleted file mode 100644
index beacbc6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/QueuedPlayerOptions.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/QueuedPlayerOptions.class
deleted file mode 100644
index 50fe55e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/QueuedPlayerOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/RepeatMode$Companion.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/RepeatMode$Companion.class
deleted file mode 100644
index 9f963ff..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/RepeatMode$Companion.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/RepeatMode.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/RepeatMode.class
deleted file mode 100644
index 9583d30..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/RepeatMode.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/WakeMode.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/WakeMode.class
deleted file mode 100644
index 705f6ef..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/models/WakeMode.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$1.class
deleted file mode 100644
index 2e4e184..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$Companion.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$Companion.class
deleted file mode 100644
index b1ff271..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$Companion.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createMediaSessionAction$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createMediaSessionAction$1.class
deleted file mode 100644
index a9ccd3c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createMediaSessionAction$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createNotification$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createNotification$1.class
deleted file mode 100644
index 5b2cce6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createNotification$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$customActionReceiver$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$customActionReceiver$1.class
deleted file mode 100644
index a26a04b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$customActionReceiver$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1$getCurrentLargeIcon$$inlined$target$default$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1$getCurrentLargeIcon$$inlined$target$default$1.class
deleted file mode 100644
index 742ffda..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1$getCurrentLargeIcon$$inlined$target$default$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1.class
deleted file mode 100644
index e1ca374..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$destroy$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$destroy$1.class
deleted file mode 100644
index 9b9fa61..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$destroy$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$invalidate$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$invalidate$1.class
deleted file mode 100644
index 814bef6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$invalidate$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationCancelled$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationCancelled$1.class
deleted file mode 100644
index 61bd272..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationCancelled$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationPosted$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationPosted$1.class
deleted file mode 100644
index efe7220..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationPosted$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButton$1.class
deleted file mode 100644
index cd15ed5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButtonCompact$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButtonCompact$1.class
deleted file mode 100644
index 36d96af..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButtonCompact$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButton$1.class
deleted file mode 100644
index d7921d6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButtonCompact$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButtonCompact$1.class
deleted file mode 100644
index 70700b2..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButtonCompact$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPlayPauseButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPlayPauseButton$1.class
deleted file mode 100644
index 85f970f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPlayPauseButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButton$1.class
deleted file mode 100644
index d4860e5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButtonCompact$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButtonCompact$1.class
deleted file mode 100644
index 3570f42..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButtonCompact$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButton$1.class
deleted file mode 100644
index 78bfc75..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButtonCompact$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButtonCompact$1.class
deleted file mode 100644
index c57f883..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButtonCompact$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showStopButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showStopButton$1.class
deleted file mode 100644
index 105a2b0..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showStopButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$special$$inlined$target$default$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$special$$inlined$target$default$1.class
deleted file mode 100644
index ba44c3b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$special$$inlined$target$default$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$updateMediaSessionPlaybackActions$$inlined$sortedBy$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$updateMediaSessionPlaybackActions$$inlined$sortedBy$1.class
deleted file mode 100644
index 609a36e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$updateMediaSessionPlaybackActions$$inlined$sortedBy$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager.class
deleted file mode 100644
index adcd60a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/notification/NotificationManager.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/AudioPlayer.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/AudioPlayer.class
deleted file mode 100644
index d1ba33d..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/AudioPlayer.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2$WhenMappings.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2$WhenMappings.class
deleted file mode 100644
index 50881fb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2$WhenMappings.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2.class
deleted file mode 100644
index 26b55d7..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$Companion.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$Companion.class
deleted file mode 100644
index 89e98a4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$Companion.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$PlayerListener.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$PlayerListener.class
deleted file mode 100644
index 7dc00fa..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$PlayerListener.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$WhenMappings.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$WhenMappings.class
deleted file mode 100644
index 37790a2..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$WhenMappings.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$createForwardingPlayer$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$createForwardingPlayer$1.class
deleted file mode 100644
index 35a1888..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$createForwardingPlayer$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$ratingType$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$ratingType$1.class
deleted file mode 100644
index 777d6f4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$ratingType$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer.class
deleted file mode 100644
index 2397e2e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/QueuedAudioPlayer.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/QueuedAudioPlayer.class
deleted file mode 100644
index 7f6dab0..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/QueuedAudioPlayer.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/components/MediaItemExtKt.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/components/MediaItemExtKt.class
deleted file mode 100644
index 8a96b7c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/components/MediaItemExtKt.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/components/PlayerCache.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/components/PlayerCache.class
deleted file mode 100644
index 5449769..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/players/components/PlayerCache.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt$buildScopeRenderersFactory$1.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt$buildScopeRenderersFactory$1.class
deleted file mode 100644
index c8373c3..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt$buildScopeRenderersFactory$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt.class
deleted file mode 100644
index a7c0419..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/scope/ScopeTapAudioProcessor.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/scope/ScopeTapAudioProcessor.class
deleted file mode 100644
index 8bf76b8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/scope/ScopeTapAudioProcessor.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/utils/UtilsKt.class b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/utils/UtilsKt.class
deleted file mode 100644
index b311af1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/kotlinaudio/utils/UtilsKt.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar
deleted file mode 100644
index 6cfec4b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/vendor/kotlinaudio/kotlin-audio/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt
deleted file mode 100644
index 520a7f3..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-com.doublesymmetry.kotlinaudio
-color black
-color purple_200
-color purple_500
-color purple_700
-color teal_200
-color teal_700
-color white
-string pause
-string play
-string playback_channel_name
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
deleted file mode 100644
index f73e3cc..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
deleted file mode 100644
index ddf2197..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
deleted file mode 100644
index 87807f1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
deleted file mode 100644
index 1b7c1f8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at
deleted file mode 100644
index 2f82378..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
deleted file mode 100644
index 43de4dc..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
deleted file mode 100644
index 455f5ab..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
deleted file mode 100644
index daefbf0..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
deleted file mode 100644
index 18051b3..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len
deleted file mode 100644
index 04a2552..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
deleted file mode 100644
index 664da0c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i
deleted file mode 100644
index 32926fd..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
deleted file mode 100644
index e1301df..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
deleted file mode 100644
index daefbf0..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
deleted file mode 100644
index 18051b3..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
deleted file mode 100644
index 04a2552..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
deleted file mode 100644
index e4d2e09..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
deleted file mode 100644
index 32926fd..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab
deleted file mode 100644
index bdf584a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream
deleted file mode 100644
index ebf2fdd..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len
deleted file mode 100644
index 6309493..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len
deleted file mode 100644
index 2a17e6e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at
deleted file mode 100644
index 1715732..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i
deleted file mode 100644
index 5361de8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab
deleted file mode 100644
index 8346f5d..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
deleted file mode 100644
index 6143aa5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
deleted file mode 100644
index 9bce7ee..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
deleted file mode 100644
index 5672451..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
deleted file mode 100644
index ca61cd4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
deleted file mode 100644
index ad01e11..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab
deleted file mode 100644
index 4748c95..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream
deleted file mode 100644
index ca2a395..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len
deleted file mode 100644
index 0150f67..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len
deleted file mode 100644
index a9f80ae..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at
deleted file mode 100644
index 33c7d6c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i
deleted file mode 100644
index c872216..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab
deleted file mode 100644
index ae2fd28..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream
deleted file mode 100644
index 32a90f7..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len
deleted file mode 100644
index 79004b7..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len
deleted file mode 100644
index e5d59a2..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values
deleted file mode 100644
index 4f1948a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at
deleted file mode 100644
index dbb9f34..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s
deleted file mode 100644
index e51a7a7..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s
+++ /dev/null
@@ -1 +0,0 @@
-ɛ
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i
deleted file mode 100644
index 42795a6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab
deleted file mode 100644
index 7833f85..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
deleted file mode 100644
index ddf2197..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
deleted file mode 100644
index 87807f1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len
deleted file mode 100644
index 1b7c1f8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
deleted file mode 100644
index 3706f9c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i
deleted file mode 100644
index 43de4dc..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab
deleted file mode 100644
index 66ad639..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream
deleted file mode 100644
index e4cceda..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
deleted file mode 100644
index 70fdfe7..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len
deleted file mode 100644
index 003bc0e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at
deleted file mode 100644
index 54225d5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i
deleted file mode 100644
index 3100ea8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab
deleted file mode 100644
index 12e4443..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream
deleted file mode 100644
index 81aac8a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
deleted file mode 100644
index e0cad94..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len
deleted file mode 100644
index b4da131..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at
deleted file mode 100644
index 525a865..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i
deleted file mode 100644
index 977c319..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab
deleted file mode 100644
index 2dce5b8..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab
+++ /dev/null
@@ -1,2 +0,0 @@
-34
-0
\ No newline at end of file
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab
deleted file mode 100644
index d405140..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream
deleted file mode 100644
index ddf2197..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len
deleted file mode 100644
index 87807f1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len
deleted file mode 100644
index 1b7c1f8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at
deleted file mode 100644
index 632ffbe..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i
deleted file mode 100644
index 43de4dc..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab
deleted file mode 100644
index 85468cc..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream
deleted file mode 100644
index eee417c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len
deleted file mode 100644
index 4b05c55..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len
deleted file mode 100644
index 1b7c1f8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at
deleted file mode 100644
index f593911..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i
deleted file mode 100644
index 3056823..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab
deleted file mode 100644
index 24c216b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream
deleted file mode 100644
index bd37872..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len
deleted file mode 100644
index c357136..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len
deleted file mode 100644
index 5a3d380..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at
deleted file mode 100644
index 90a1ba6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i
deleted file mode 100644
index f8c248b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len
deleted file mode 100644
index 131e265..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/last-build.bin
deleted file mode 100644
index fa6a3d2..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/cacheable/last-build.bin and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin
deleted file mode 100644
index 0ec4e2a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/local-state/build-history.bin
deleted file mode 100644
index 844f804..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/kotlin/compileDebugKotlin/local-state/build-history.bin and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/outputs/logs/manifest-merger-debug-report.txt b/vendor/kotlinaudio/kotlin-audio/build/outputs/logs/manifest-merger-debug-report.txt
deleted file mode 100644
index b53c1f9..0000000
--- a/vendor/kotlinaudio/kotlin-audio/build/outputs/logs/manifest-merger-debug-report.txt
+++ /dev/null
@@ -1,16 +0,0 @@
--- Merging decision tree log ---
-manifest
-ADDED from /Users/landerhartel/Documents/astra/astra-mobile/vendor/kotlinaudio/kotlin-audio/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest7934958282317765418.xml:2:13-83
-INJECTED from /Users/landerhartel/Documents/astra/astra-mobile/vendor/kotlinaudio/kotlin-audio/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest7934958282317765418.xml:2:13-83
- package
- INJECTED from /Users/landerhartel/Documents/astra/astra-mobile/vendor/kotlinaudio/kotlin-audio/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest7934958282317765418.xml
- xmlns:android
- ADDED from /Users/landerhartel/Documents/astra/astra-mobile/vendor/kotlinaudio/kotlin-audio/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest7934958282317765418.xml:2:23-81
-uses-sdk
-INJECTED from /Users/landerhartel/Documents/astra/astra-mobile/vendor/kotlinaudio/kotlin-audio/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest7934958282317765418.xml reason: use-sdk injection requested
-INJECTED from /Users/landerhartel/Documents/astra/astra-mobile/vendor/kotlinaudio/kotlin-audio/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest7934958282317765418.xml
-INJECTED from /Users/landerhartel/Documents/astra/astra-mobile/vendor/kotlinaudio/kotlin-audio/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest7934958282317765418.xml
- android:targetSdkVersion
- INJECTED from /Users/landerhartel/Documents/astra/astra-mobile/vendor/kotlinaudio/kotlin-audio/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest7934958282317765418.xml
- android:minSdkVersion
- INJECTED from /Users/landerhartel/Documents/astra/astra-mobile/vendor/kotlinaudio/kotlin-audio/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest7934958282317765418.xml
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/vendor/kotlinaudio/kotlin-audio/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
deleted file mode 100644
index 75320ca..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/META-INF/kotlin-audio_debug.kotlin_module b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/META-INF/kotlin-audio_debug.kotlin_module
deleted file mode 100644
index 5007816..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/META-INF/kotlin-audio_debug.kotlin_module and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/EventHolder.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/EventHolder.class
deleted file mode 100644
index 05060b4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/EventHolder.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder$updateNotificationState$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder$updateNotificationState$1.class
deleted file mode 100644
index b4a1b02..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder$updateNotificationState$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder.class
deleted file mode 100644
index 09765b9..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/NotificationEventHolder.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class
deleted file mode 100644
index 8c3c3cb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class
deleted file mode 100644
index aaf7d1c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class
deleted file mode 100644
index 238d25c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class
deleted file mode 100644
index a80de41..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class
deleted file mode 100644
index 975112b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class
deleted file mode 100644
index be90805..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class
deleted file mode 100644
index 13cfbcf..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class
deleted file mode 100644
index ee7f84b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class
deleted file mode 100644
index 0bad8d5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class
deleted file mode 100644
index 83bb905..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder.class
deleted file mode 100644
index e99ada1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/event/PlayerEventHolder.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioContentType.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioContentType.class
deleted file mode 100644
index 5d227ca..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioContentType.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItem.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItem.class
deleted file mode 100644
index 817210f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItem.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemHolder.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemHolder.class
deleted file mode 100644
index 9a5d874..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemHolder.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemOptions.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemOptions.class
deleted file mode 100644
index 05c4736..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$AUTO.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$AUTO.class
deleted file mode 100644
index e562f7a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$AUTO.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class
deleted file mode 100644
index be940bd..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class
deleted file mode 100644
index a4225d1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class
deleted file mode 100644
index 0c8b266..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason.class
deleted file mode 100644
index 0262296..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioItemTransitionReason.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioPlayerState.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioPlayerState.class
deleted file mode 100644
index c95399b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/AudioPlayerState.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/BufferConfig.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/BufferConfig.class
deleted file mode 100644
index 14861f4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/BufferConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/CacheConfig.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/CacheConfig.class
deleted file mode 100644
index 5e0f27a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/CacheConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/Capability.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/Capability.class
deleted file mode 100644
index 5ce8861..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/Capability.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultAudioItem.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultAudioItem.class
deleted file mode 100644
index c7e4975..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultAudioItem.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultPlayerOptions.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultPlayerOptions.class
deleted file mode 100644
index f1799b5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultPlayerOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions$WhenMappings.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions$WhenMappings.class
deleted file mode 100644
index 2e29ecb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions$WhenMappings.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions.class
deleted file mode 100644
index 24212af..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/DefaultQueuedPlayerOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/FocusChangeData.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/FocusChangeData.class
deleted file mode 100644
index 09f6155..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/FocusChangeData.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$FORWARD.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$FORWARD.class
deleted file mode 100644
index 27a5104..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$FORWARD.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$NEXT.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$NEXT.class
deleted file mode 100644
index 740cbb8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$NEXT.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PAUSE.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PAUSE.class
deleted file mode 100644
index 4449ea5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PAUSE.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PLAY.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PLAY.class
deleted file mode 100644
index 7546e70..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PLAY.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class
deleted file mode 100644
index 756314a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$RATING.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$RATING.class
deleted file mode 100644
index 5bf4e0f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$RATING.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$REWIND.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$REWIND.class
deleted file mode 100644
index f14e87c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$REWIND.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$SEEK.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$SEEK.class
deleted file mode 100644
index e8d651c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$SEEK.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$STOP.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$STOP.class
deleted file mode 100644
index 4499d11..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback$STOP.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback.class
deleted file mode 100644
index 4362142..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaSessionCallback.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaType.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaType.class
deleted file mode 100644
index 2a76328..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/MediaType.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$BACKWARD.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$BACKWARD.class
deleted file mode 100644
index 9590b9f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$BACKWARD.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$FORWARD.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$FORWARD.class
deleted file mode 100644
index ad2ecf8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$FORWARD.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$NEXT.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$NEXT.class
deleted file mode 100644
index df1460c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$NEXT.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PLAY_PAUSE.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PLAY_PAUSE.class
deleted file mode 100644
index ee2bd4b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PLAY_PAUSE.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PREVIOUS.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PREVIOUS.class
deleted file mode 100644
index a671fa5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$PREVIOUS.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$SEEK_TO.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$SEEK_TO.class
deleted file mode 100644
index ff7d552..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$SEEK_TO.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$STOP.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$STOP.class
deleted file mode 100644
index b65f8ad..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton$STOP.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton.class
deleted file mode 100644
index 5106e24..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationButton.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationConfig.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationConfig.class
deleted file mode 100644
index 7123c06..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationState$CANCELLED.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationState$CANCELLED.class
deleted file mode 100644
index 527cac5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationState$CANCELLED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationState$POSTED.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationState$POSTED.class
deleted file mode 100644
index 16c3b50..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationState$POSTED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationState.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationState.class
deleted file mode 100644
index a34108c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/NotificationState.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlayWhenReadyChangeData.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlayWhenReadyChangeData.class
deleted file mode 100644
index 1ff8344..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlayWhenReadyChangeData.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlaybackEndedReason.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlaybackEndedReason.class
deleted file mode 100644
index a078433..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlaybackEndedReason.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlaybackError.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlaybackError.class
deleted file mode 100644
index 94e2a6e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlaybackError.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlayerConfig.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlayerConfig.class
deleted file mode 100644
index 538d23b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlayerConfig.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlayerOptions.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlayerOptions.class
deleted file mode 100644
index da742fb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PlayerOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$AUTO.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$AUTO.class
deleted file mode 100644
index da77c05..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$AUTO.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class
deleted file mode 100644
index 58e1c60..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK.class
deleted file mode 100644
index d979c25..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class
deleted file mode 100644
index 97596fb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class
deleted file mode 100644
index 98fb2f8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$UNKNOWN.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$UNKNOWN.class
deleted file mode 100644
index bbafead..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason$UNKNOWN.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason.class
deleted file mode 100644
index beacbc6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/PositionChangedReason.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/QueuedPlayerOptions.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/QueuedPlayerOptions.class
deleted file mode 100644
index 50fe55e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/QueuedPlayerOptions.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/RepeatMode$Companion.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/RepeatMode$Companion.class
deleted file mode 100644
index 9f963ff..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/RepeatMode$Companion.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/RepeatMode.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/RepeatMode.class
deleted file mode 100644
index 9583d30..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/RepeatMode.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/WakeMode.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/WakeMode.class
deleted file mode 100644
index 705f6ef..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/models/WakeMode.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$1.class
deleted file mode 100644
index 2e4e184..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$Companion.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$Companion.class
deleted file mode 100644
index b1ff271..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$Companion.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createMediaSessionAction$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createMediaSessionAction$1.class
deleted file mode 100644
index a9ccd3c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createMediaSessionAction$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createNotification$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createNotification$1.class
deleted file mode 100644
index 5b2cce6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$createNotification$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$customActionReceiver$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$customActionReceiver$1.class
deleted file mode 100644
index a26a04b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$customActionReceiver$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1$getCurrentLargeIcon$$inlined$target$default$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1$getCurrentLargeIcon$$inlined$target$default$1.class
deleted file mode 100644
index 742ffda..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1$getCurrentLargeIcon$$inlined$target$default$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1.class
deleted file mode 100644
index e1ca374..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$descriptionAdapter$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$destroy$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$destroy$1.class
deleted file mode 100644
index 9b9fa61..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$destroy$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$invalidate$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$invalidate$1.class
deleted file mode 100644
index 814bef6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$invalidate$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationCancelled$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationCancelled$1.class
deleted file mode 100644
index 61bd272..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationCancelled$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationPosted$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationPosted$1.class
deleted file mode 100644
index efe7220..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$onNotificationPosted$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButton$1.class
deleted file mode 100644
index cd15ed5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButtonCompact$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButtonCompact$1.class
deleted file mode 100644
index 36d96af..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showForwardButtonCompact$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButton$1.class
deleted file mode 100644
index d7921d6..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButtonCompact$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButtonCompact$1.class
deleted file mode 100644
index 70700b2..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showNextButtonCompact$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPlayPauseButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPlayPauseButton$1.class
deleted file mode 100644
index 85f970f..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPlayPauseButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButton$1.class
deleted file mode 100644
index d4860e5..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButtonCompact$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButtonCompact$1.class
deleted file mode 100644
index 3570f42..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showPreviousButtonCompact$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButton$1.class
deleted file mode 100644
index 78bfc75..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButtonCompact$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButtonCompact$1.class
deleted file mode 100644
index c57f883..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showRewindButtonCompact$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showStopButton$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showStopButton$1.class
deleted file mode 100644
index 105a2b0..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$showStopButton$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$special$$inlined$target$default$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$special$$inlined$target$default$1.class
deleted file mode 100644
index ba44c3b..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$special$$inlined$target$default$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$updateMediaSessionPlaybackActions$$inlined$sortedBy$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$updateMediaSessionPlaybackActions$$inlined$sortedBy$1.class
deleted file mode 100644
index 609a36e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager$updateMediaSessionPlaybackActions$$inlined$sortedBy$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager.class
deleted file mode 100644
index adcd60a..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/notification/NotificationManager.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/AudioPlayer.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/AudioPlayer.class
deleted file mode 100644
index d1ba33d..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/AudioPlayer.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2$WhenMappings.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2$WhenMappings.class
deleted file mode 100644
index 50881fb..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2$WhenMappings.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2.class
deleted file mode 100644
index 26b55d7..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$2.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$Companion.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$Companion.class
deleted file mode 100644
index 89e98a4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$Companion.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$PlayerListener.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$PlayerListener.class
deleted file mode 100644
index 7dc00fa..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$PlayerListener.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$WhenMappings.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$WhenMappings.class
deleted file mode 100644
index 37790a2..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$WhenMappings.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$createForwardingPlayer$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$createForwardingPlayer$1.class
deleted file mode 100644
index 35a1888..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$createForwardingPlayer$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$ratingType$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$ratingType$1.class
deleted file mode 100644
index 777d6f4..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer$ratingType$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer.class
deleted file mode 100644
index 2397e2e..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/BaseAudioPlayer.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/QueuedAudioPlayer.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/QueuedAudioPlayer.class
deleted file mode 100644
index 7f6dab0..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/QueuedAudioPlayer.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/components/MediaItemExtKt.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/components/MediaItemExtKt.class
deleted file mode 100644
index 8a96b7c..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/components/MediaItemExtKt.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/components/PlayerCache.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/components/PlayerCache.class
deleted file mode 100644
index 5449769..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/players/components/PlayerCache.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt$buildScopeRenderersFactory$1.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt$buildScopeRenderersFactory$1.class
deleted file mode 100644
index c8373c3..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt$buildScopeRenderersFactory$1.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt.class
deleted file mode 100644
index a7c0419..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/scope/ScopeRenderersFactoryKt.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/scope/ScopeTapAudioProcessor.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/scope/ScopeTapAudioProcessor.class
deleted file mode 100644
index 8bf76b8..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/scope/ScopeTapAudioProcessor.class and /dev/null differ
diff --git a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/utils/UtilsKt.class b/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/utils/UtilsKt.class
deleted file mode 100644
index b311af1..0000000
Binary files a/vendor/kotlinaudio/kotlin-audio/build/tmp/kotlin-classes/debug/com/doublesymmetry/kotlinaudio/utils/UtilsKt.class and /dev/null differ