Skip to content

Commit

Permalink
Merge branch 'develop' into jc/first-pass-transaction-page
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Son89 authored Dec 21, 2023
2 parents 6b0a892 + 2d22ed8 commit c0aa6a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nix/mobile/android/release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ let


envFileName =
if androidAbiInclude == "x86" then ".env.e2e"
else if (elem buildType ["release" "nightly"]) then ".env.${buildType}"
else if (elem buildType ["pr" "manual"]) then ".env.jenkins"
if (elem androidAbiInclude ["x86" "x86_64" "x86;x86_64"]) then ".env.e2e"
else if (elem buildType ["release" "nightly"]) then ".env.${buildType}"
else if (elem buildType ["pr" "manual"]) then ".env.jenkins"
else ".env";

# There are only two types of Gradle build targets: pr and release
Expand Down

0 comments on commit c0aa6a3

Please sign in to comment.