diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 867faa56..c93f3587 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -81,24 +81,21 @@
-
+
-
-
-
+
+
diff --git a/android/app/src/main/kotlin/com/musly/musly/AndroidAutoPlugin.kt b/android/app/src/main/kotlin/com/musly/musly/AndroidAutoPlugin.kt
deleted file mode 100644
index eb22766f..00000000
--- a/android/app/src/main/kotlin/com/musly/musly/AndroidAutoPlugin.kt
+++ /dev/null
@@ -1,232 +0,0 @@
-package com.devid.musly
-
-import android.content.Context
-import android.content.Intent
-import android.os.Handler
-import android.os.Looper
-import android.util.Log
-import androidx.core.content.ContextCompat
-import io.flutter.embedding.engine.plugins.FlutterPlugin
-import io.flutter.plugin.common.EventChannel
-import io.flutter.plugin.common.MethodCall
-import io.flutter.plugin.common.MethodChannel
-
-object AndroidAutoPlugin : FlutterPlugin, MethodChannel.MethodCallHandler {
-
- private const val TAG = "AndroidAutoPlugin"
- private const val METHOD_CHANNEL = "com.devid.musly/android_auto"
- private const val EVENT_CHANNEL = "com.devid.musly/android_auto_events"
-
- private var methodChannel: MethodChannel? = null
- private var eventChannel: EventChannel? = null
- private var eventSink: EventChannel.EventSink? = null
- private var context: Context? = null
- private val mainHandler = Handler(Looper.getMainLooper())
-
- // Buffers for library data sent before MusicService finishes starting.
- private var pendingRecentSongs: List