Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 85253593 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Merge branch '2407-master-emu_build' into 'master'

Fix emulator build

See merge request !95
parents 03a0e243 c97f213a
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -351,8 +351,12 @@ if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then
        build_success=true
      fi
    elif [ "${IS_EMULATOR}" = true ]; then
        if breakfast_device && mka; then
          if ( [ "$android_version_major" -lt "13" ] && mka sdk_addon ) || mka emu_img_zip; then
      if breakfast_device; then
        if [ "$android_version_major" -lt "14" ]; then
          if mka sdk_addon; then
            build_success=true
          fi
        elif mka && mka emu_img_zip; then
          build_success=true
        fi
      fi
+1 −1

File changed.

Contains only whitespace changes.