deleteNotificationChannel

Deletes previously created Ackpine's notification channel from application's notification settings.

Use this only in conjunction with disabling automatic Ackpine initialization and if DEFERRED confirmation is never used in the app.

To disable Ackpine initializer, add the following lines to the app's AndroidManifest.xml:

<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
android:exported="false"
tools:node="merge">
<meta-data
android:name="ru.solrudev.ackpine.AckpineInitializer"
tools:node="remove" />
</provider>