JobService: Expose configuration shim refresh delay

Change-Id: I0fd5316d60a1550e5a82e37acb23772cc2d33abe
diff --git a/app/src/main/aidl/projekt/substratum/IInterfacerInterface.aidl b/app/src/main/aidl/projekt/substratum/IInterfacerInterface.aidl
index db7f0e9..9620af6 100644
--- a/app/src/main/aidl/projekt/substratum/IInterfacerInterface.aidl
+++ b/app/src/main/aidl/projekt/substratum/IInterfacerInterface.aidl
@@ -43,7 +43,7 @@
     /**
      * Perform a low-level configuration change
      */
-    void configurationShim();
+    void configurationShim(int firstDelay, int secondDelay);
 
     /**
      * Apply a specified bootanimation
@@ -131,4 +131,4 @@
      */
     void applyProfile(in List<String> enable, in List<String> disable, String name,
             boolean restartUi);
-}
\ No newline at end of file
+}
diff --git a/app/src/main/java/projekt/interfacer/services/JobService.java b/app/src/main/java/projekt/interfacer/services/JobService.java
index e60867c..350efce 100644
--- a/app/src/main/java/projekt/interfacer/services/JobService.java
+++ b/app/src/main/java/projekt/interfacer/services/JobService.java
@@ -171,11 +171,11 @@
         }
 
         @Override
-        public void configurationShim() {
+        public void configurationShim(int firstDelay, int secondDelay) {
             // Verify caller identity
             if (!isCallerAuthorized(Binder.getCallingUid())) return;
 
-            new LocaleChanger(getSubsContext()).run();
+            new LocaleChanger(getSubsContext(), firstDelay, secondDelay).run();
         }
 
         @Override
@@ -946,10 +946,13 @@
         private Context mContext;
         private Handler mHandler;
         private Locale mCurrentLocale;
+        private int mFirstDelay, mSecondDelay;
 
-        public LocaleChanger(Context context) {
+        public LocaleChanger(Context context, int firstDelay, int secondDelay) {
             mContext = context;
             mHandler = new Handler(Looper.getMainLooper());
+            mFirstDelay = firstDelay;
+            mSecondDelay = secondDelay;
         }
 
         @Override
@@ -958,7 +961,7 @@
             i.addCategory(Intent.CATEGORY_HOME);
 
             mContext.startActivity(i);
-            mHandler.postDelayed(this::spoofLocale, 500);
+            mHandler.postDelayed(this::spoofLocale, mFirstDelay);
         }
 
         private void register() {
@@ -1028,7 +1031,7 @@
 
         @Override
         public void onReceive(Context context, Intent intent) {
-            mHandler.postDelayed(this::restoreLocale, 500);
+            mHandler.postDelayed(this::restoreLocale, mSecondDelay);
         }
     }
 }