Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

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 0498ef7 commit 133090a
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 133090a

Please sign in to comment.