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 <[email protected]>
  • Loading branch information
tobiasKaminsky committed Aug 23, 2024
1 parent 9b35582 commit 90f4a1c
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 90f4a1c

Please sign in to comment.