Fix soong buildings
diff --git a/app/src/main/java/com/libremobileos/facedetect/FaceDetectService.java b/app/src/main/java/com/libremobileos/facedetect/FaceDetectService.java
index 97fd09c..1810413 100644
--- a/app/src/main/java/com/libremobileos/facedetect/FaceDetectService.java
+++ b/app/src/main/java/com/libremobileos/facedetect/FaceDetectService.java
@@ -1,8 +1,6 @@
package com.libremobileos.facedetect;
-import static android.app.job.JobInfo.PRIORITY_MIN;
import static android.os.Process.THREAD_PRIORITY_FOREGROUND;
-import static com.libremobileos.facedetect.BuildConfig.DEBUG;
import androidx.annotation.Nullable;
import androidx.annotation.OptIn;
@@ -62,6 +60,7 @@
private long kDeviceId = 123; // Arbitrary value.
private long kAuthenticatorId = 987; // Arbitrary value.
private int kFaceId = 100; // Arbitrary value.
+ private boolean DEBUG = true;
private static final int MSG_CHALLENGE_TIMEOUT = 100;
@@ -376,7 +375,6 @@
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, channelId);
Notification notification = notificationBuilder.setOngoing(true)
.setSmallIcon(R.mipmap.ic_launcher)
- .setPriority(PRIORITY_MIN)
.setCategory(NotificationCompat.CATEGORY_SERVICE)
.build();