Skip to content

Commit

Permalink
Ignore exceptions in fake signature InitProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
mar-v-in committed Sep 17, 2023
1 parent dd8c560 commit 1f855bc
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ public boolean onCreate() {
Log.d(TAG, "onCreate");
if (!isServiceRunning(getContext(), getContext().getPackageName(), SignatureService.class.getName())) {
Intent intent = new Intent(getContext(), SignatureService.class);
getContext().startService(intent);
try {
getContext().startService(intent);
} catch (Exception ignored) {
}
}
return false;
}
Expand Down

0 comments on commit 1f855bc

Please sign in to comment.