Skip to content

Commit

Permalink
Gplay: do not allow to download APK/AAB
Browse files Browse the repository at this point in the history
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
  • Loading branch information
tobiasKaminsky authored and AndyScherzinger committed Aug 26, 2024
1 parent 13084ba commit 93a38f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ public void setE2eCounter(@Nullable Long e2eCounter) {
}

public boolean isAPKorAAB() {
if (BuildConfig.FLAVOR.equals("gplay")) {
if ("gplay".equals(BuildConfig.FLAVOR)) {
return getFileName().endsWith(".apk") || getFileName().endsWith(".aab");
} else {
return false;
Expand Down

0 comments on commit 93a38f4

Please sign in to comment.