方言を話すおしゃべり猫型ロボット『ミーア』をリリースしました(こちらをクリック)

Flutter

application(Flutter)

[Flutter] How to convert m4a to mp3 using ffmpeg_kit_flutter_audio

Change to a policy of converting m4a to mp3 using the ffmpeg_kit_flutter_audio package. This package supports a wide range of formats using external libraries and includes the lame library needed for conversion to mp3 format.
application(Flutter)

[Flutter] How to make a modal display scrollable in WebView.

There is a user settings screen in the application, in which the Terms of Use and Plapori items are prepared, so that when this item is tapped, each content is displayed in WebView and can also be closed. This time, since a simple implementation is sufficient, webview_flutter is introduced.
application(Flutter)

[Android] The role of build.gradle in Flutter and how to set it up

In Flutter, Gradle is used to manage the build of the Android part of the code written in Dart when it is compiled into a native application; the Gradle Wrapper makes it possible to build the project without installing Gradle Gradle Wrapper.
application(Flutter)

[Flutter] Setup to run the application on an actual Android device.

This article describes the steps to build a Flutter application on an actual Android device. First, the actual Android device on which the Flutter app is to be built needs to be recognised as a development device: set up the Android SDK using Android Studio and install the Flutter plugin and Java.
application(Flutter)

[Flutter] How to deal with JavaScript invalidity error when opening Google Forms in web view on Android.

Introduction. Developing "Mia," a talking cat-shaped robot that speaks in various dialects. A few days ago, we described...
application(Flutter)

[flutter_sound × Go] Upload audio files to AWS S3 via API

In this case, we want to implement the part where the app uploads the voice files recorded with the flutter_sound package from the app to the server (AWS S3) via API communication. We will associate the S3 path of the uploaded audio file with a phrase in the database and update the voice_path field.
application(Flutter)

[Flutter] Implementation of voice recording playback and uploading functionality using flutter_sound.

Use the flutter_sound and file_picker packages to allow users to playback audio recordings and upload audio files in flutter apps To use the audio recording functionality with the flutter_sound package, you need to request access to the microphone in XCode. permission to access the microphone in XCode.
application(Flutter)

[Flutter × Go × ESP32] How to add mute function to Mia.

After the release of the beta version of Mia, several users who actually used it asked for a 'no talking mode' for the frequency of talking, so the implementation of this feature is described in this report. For reference, we looked at Alexa and found that mute (in this case, goodnight mode) was indeed displayed on the home screen with a toggle icon.
Development/Design

[Flutter×FCM] Implementing Push Notifications: Up to Test Sending (iOS/Android)

The process of push notification using Firebase Cloud Messaging (FCM) consists of the following three steps. Message transmission from the server → delivery processing by FCM → reception and display by the app. iOS requires an APNs authentication key (p8 file).
application(Flutter)

[WordPress × FCM] How to send new announcements posted on a website to an app.

We want to post announcements in the announcements category of Mia's WordPress website, and when a new announcement is added, we want to send a push notification to the application, and when the user clicks on the push notification, they will be redirected to the list of announcements screen. In other words, we would like to centralise the management of announcements by posting them on the website.