Skip to content

Commit

Permalink
build: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
evdokimovs committed Oct 28, 2024
1 parent 6a2d9f2 commit 865485e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ ANDROID_TARGETS := aarch64-linux-android \
x86_64-linux-android
ANDROID_SDK_COMPILE_VERSION = $(strip \
$(shell grep compileSdk flutter/android/build.gradle \
| awk '{print $$2}'))
| awk -F'= ' '{print $$2}' | tr -d ' '))
ANDROID_SDK_MIN_VERSION = $(strip \
$(shell grep minSdk flutter/android/build.gradle \
| awk '{print $$2}'))
| awk -F'= ' '{print $$2}' | tr -d ' '))
FLUTTER_RUST_BRIDGE_VER ?= $(strip \
$(shell grep -A1 'name = "flutter_rust_bridge"' Cargo.lock \
| grep -v 'flutter_rust_bridge' \
Expand Down

0 comments on commit 865485e

Please sign in to comment.