Skip to content

Commit 5f94709

Browse files
authored
Prepare release v1.8.9 (#594)
1 parent a798a32 commit 5f94709

File tree

9 files changed

+119
-114
lines changed

9 files changed

+119
-114
lines changed

app/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def keystoreProperties = new Properties()
2929
}
3030

3131
android {
32-
compileSdkVersion 35
32+
compileSdkVersion 36
3333
ndkVersion flutter.ndkVersion
3434

3535
compileOptions {
@@ -47,7 +47,7 @@ android {
4747

4848
defaultConfig {
4949
applicationId = "com.derdilla.bloodPressureApp"
50-
minSdkVersion = 21
50+
minSdkVersion = flutter.minSdkVersion
5151
targetSdkVersion = flutter.targetSdkVersion
5252
versionCode = flutterVersionCode.toInteger()
5353
versionName = flutterVersionName

app/android/app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" />
1414
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" android:maxSdkVersion="30"/>
1515

16-
<!-- legacy for Android 9 or lower -->
17-
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" android:maxSdkVersion="28" />
16+
<!-- Needed for legacy support for Android 9 or lower,
17+
here requested for android 11 or lower due to bluetooth_low_energy_android constraints -->
18+
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" android:maxSdkVersion="30" />
1819

1920
<queries>
2021
<intent>

app/android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ pluginManagement {
1818

1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21-
id "com.android.application" version "8.3.2" apply false
22-
id "org.jetbrains.kotlin.android" version "1.8.22" apply false
21+
id "com.android.application" version "8.6.0" apply false
22+
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
2323
}
2424

2525
include ":app"

app/l10n.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ arb-dir: lib/l10n
22
template-arb-file: app_en.arb
33
output-localization-file: app_localizations.dart
44
untranslated-messages-file: l10n_errors.txt
5-
use-escaping: true
6-
synthetic-package: false
5+
use-escaping: true

app/linux/flutter/generated_plugin_registrant.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@
66

77
#include "generated_plugin_registrant.h"
88

9+
#include <bluetooth_low_energy_linux/bluetooth_low_energy_linux_plugin.h>
910
#include <url_launcher_linux/url_launcher_plugin.h>
1011

1112
void fl_register_plugins(FlPluginRegistry* registry) {
13+
g_autoptr(FlPluginRegistrar) bluetooth_low_energy_linux_registrar =
14+
fl_plugin_registry_get_registrar_for_plugin(registry, "BluetoothLowEnergyLinuxPlugin");
15+
bluetooth_low_energy_linux_plugin_register_with_registrar(bluetooth_low_energy_linux_registrar);
1216
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
1317
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
1418
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);

app/linux/flutter/generated_plugins.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#
44

55
list(APPEND FLUTTER_PLUGIN_LIST
6+
bluetooth_low_energy_linux
67
url_launcher_linux
78
)
89

0 commit comments

Comments
 (0)