Skip to content

Commit

Permalink
Merge branch 'main' of github.com:romellfudi/VoIpUSSD into main
Browse files Browse the repository at this point in the history
  • Loading branch information
romellfudi committed Jun 10, 2021
2 parents 6d71457 + 900803e commit 623d4ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ private boolean isUSSDWidget(AccessibilityEvent event) {
return (event.getClassName().equals("amigo.app.AmigoAlertDialog")
|| event.getClassName().equals("android.app.AlertDialog")
|| event.getClassName().equals("com.android.phone.oppo.settings.LocalAlertDialog")
|| event.getClassName().equals("com.zte.mifavor.widget.AlertDialog"));
|| event.getClassName().equals("com.zte.mifavor.widget.AlertDialog")
|| event.getClassName().equals("color.support.v7.app.AlertDialog"));
}

/**
Expand Down Expand Up @@ -220,4 +221,4 @@ protected void onServiceConnected() {
super.onServiceConnected();
Log.d(TAG, "onServiceConnected");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ private boolean isUSSDWidget(AccessibilityEvent event) {
return (event.getClassName().equals("amigo.app.AmigoAlertDialog")
|| event.getClassName().equals("android.app.AlertDialog")
|| event.getClassName().equals("com.android.phone.oppo.settings.LocalAlertDialog")
|| event.getClassName().equals("com.zte.mifavor.widget.AlertDialog"));
|| event.getClassName().equals("com.zte.mifavor.widget.AlertDialog")
|| event.getClassName().equals("color.support.v7.app.AlertDialog"));
}

/**
Expand Down Expand Up @@ -234,4 +235,4 @@ protected void onServiceConnected() {
super.onServiceConnected();
Log.d(TAG, "onServiceConnected");
}
}
}

0 comments on commit 623d4ef

Please sign in to comment.