Skip to content

Commit 036a1bc

Browse files
committed
Release V5.3.4: Restore working example project
- Restored working example with debounce, select, where, map, and combineLatest operators - Memory test example preserved in memory_test/ folder - Updated example project with latest Flutter platform files
1 parent 26a3207 commit 036a1bc

170 files changed

Lines changed: 5244 additions & 304 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [5.3.4] - 2025-11-25
2+
3+
- Restored working example project (was corrupted with memory test code)
4+
- Memory test example preserved in `memory_test/` folder
5+
16
## [5.3.3] - 2025-01-12
27

38
- Use absolute GitHub URL for logo in README

example/.gitignore

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@
55
*.swp
66
.DS_Store
77
.atom/
8+
.build/
89
.buildlog/
910
.history
1011
.svn/
12+
.swiftpm/
13+
migrate_working_dir/
1114

1215
# IntelliJ related
1316
*.iml
@@ -24,21 +27,19 @@
2427
**/doc/api/
2528
**/ios/Flutter/.last_build_id
2629
.dart_tool/
27-
.flutter-plugins
2830
.flutter-plugins-dependencies
29-
.packages
3031
.pub-cache/
3132
.pub/
3233
/build/
33-
34-
# Web related
35-
lib/generated_plugin_registrant.dart
34+
/coverage/
3635

3736
# Symbolication related
3837
app.*.symbols
3938

4039
# Obfuscation related
4140
app.*.map.json
4241

43-
# Exceptions to above rules.
44-
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
42+
# Android Studio will place build artifacts here
43+
/android/app/debug
44+
/android/app/profile
45+
/android/app/release

example/.metadata

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: "a14f74ff3a1cbd521163c5f03d68113d50af93d3"
7+
revision: "b45fa18946ecc2d9b4009952c636ba7e2ffbb787"
88
channel: "stable"
99

1010
project_type: app
@@ -13,26 +13,26 @@ project_type: app
1313
migration:
1414
platforms:
1515
- platform: root
16-
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
17-
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
16+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
17+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
1818
- platform: android
19-
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
20-
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
19+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
20+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
2121
- platform: ios
22-
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
23-
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
22+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
23+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
2424
- platform: linux
25-
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
26-
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
25+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
26+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
2727
- platform: macos
28-
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
29-
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
28+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
29+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
3030
- platform: web
31-
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
32-
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
31+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
32+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
3333
- platform: windows
34-
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
35-
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
34+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
35+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
3636

3737
# User provided section
3838

example/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# functiona_listerner_example
1+
# listen_it_example
22

33
A new Flutter project.
44

@@ -8,9 +8,9 @@ This project is a starting point for a Flutter application.
88

99
A few resources to get you started if this is your first Flutter project:
1010

11-
- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
12-
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
11+
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
12+
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
1313

14-
For help getting started with Flutter, view our
15-
[online documentation](https://flutter.dev/docs), which offers tutorials,
14+
For help getting started with Flutter development, view the
15+
[online documentation](https://docs.flutter.dev/), which offers tutorials,
1616
samples, guidance on mobile development, and a full API reference.

example/analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# The following line activates a set of recommended lints for Flutter apps,
99
# packages, and plugins designed to encourage good coding practices.
10-
include: package:lint/analysis_options.yaml
10+
include: package:flutter_lints/flutter.yaml
1111

1212
linter:
1313
# The lint rules applied to this project can be customized in the

example/android/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ gradle-wrapper.jar
55
/gradlew.bat
66
/local.properties
77
GeneratedPluginRegistrant.java
8+
.cxx/
89

910
# Remember to never publicly share your keystore.
10-
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11+
# See https://flutter.dev/to/reference-keystore
1112
key.properties
1213
**/*.keystore
1314
**/*.jks
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
plugins {
2+
id("com.android.application")
3+
id("kotlin-android")
4+
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
5+
id("dev.flutter.flutter-gradle-plugin")
6+
}
7+
8+
android {
9+
namespace = "com.example.listen_it_example"
10+
compileSdk = flutter.compileSdkVersion
11+
ndkVersion = flutter.ndkVersion
12+
13+
compileOptions {
14+
sourceCompatibility = JavaVersion.VERSION_17
15+
targetCompatibility = JavaVersion.VERSION_17
16+
}
17+
18+
kotlinOptions {
19+
jvmTarget = JavaVersion.VERSION_17.toString()
20+
}
21+
22+
defaultConfig {
23+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24+
applicationId = "com.example.listen_it_example"
25+
// You can update the following values to match your application needs.
26+
// For more information, see: https://flutter.dev/to/review-gradle-config.
27+
minSdk = flutter.minSdkVersion
28+
targetSdk = flutter.targetSdkVersion
29+
versionCode = flutter.versionCode
30+
versionName = flutter.versionName
31+
}
32+
33+
buildTypes {
34+
release {
35+
// TODO: Add your own signing config for the release build.
36+
// Signing with the debug keys for now, so `flutter run --release` works.
37+
signingConfig = signingConfigs.getByName("debug")
38+
}
39+
}
40+
}
41+
42+
flutter {
43+
source = "../.."
44+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
22
<application
3-
android:label="example"
3+
android:label="listen_it_example"
44
android:name="${applicationName}"
55
android:icon="@mipmap/ic_launcher">
66
<activity
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package com.example.listen_it_example
2+
3+
import io.flutter.embedding.android.FlutterActivity
4+
5+
class MainActivity : FlutterActivity()

example/android/build.gradle.kts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
allprojects {
2+
repositories {
3+
google()
4+
mavenCentral()
5+
}
6+
}
7+
8+
val newBuildDir: Directory =
9+
rootProject.layout.buildDirectory
10+
.dir("../../build")
11+
.get()
12+
rootProject.layout.buildDirectory.value(newBuildDir)
13+
14+
subprojects {
15+
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
16+
project.layout.buildDirectory.value(newSubprojectBuildDir)
17+
}
18+
subprojects {
19+
project.evaluationDependsOn(":app")
20+
}
21+
22+
tasks.register<Delete>("clean") {
23+
delete(rootProject.layout.buildDirectory)
24+
}

0 commit comments

Comments
 (0)