• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package leakcanary.internal
2 
3 import com.squareup.leakcanary.core.R
4 
5 internal enum class NotificationType(
6   val nameResId: Int,
7   val importance: Int
8 ) {
9   LEAKCANARY_LOW(
10     R.string.leak_canary_notification_channel_low, IMPORTANCE_LOW
11   ),
12   LEAKCANARY_MAX(
13     R.string.leak_canary_notification_channel_result, IMPORTANCE_MAX
14   );
15 }
16 
17 private const val IMPORTANCE_LOW = 2
18 private const val IMPORTANCE_MAX = 5