Go to website
Back
Articles on:
Android SDK
Android developers guide
Android SDK overview
First steps in Android SDK
Very popular
Core Android SDK
Core Android SDK provides the main Aimybox service that manages all nested processes of every voice assistant application (speech to text, NLU/NLP, text to speech and etc). When to use it Use this component if you plan to embed voice assistant capabilities into your own Android application or device and would like to implement assistant's UI/UX on your own.
Some readers
Android Custom Skills
Custom skills is a great feature of Aimybox that enables the voice assistant to perform any actions right on the device from where the user speaks their voice commands. For example, a custom skill could launch some activity or perform some actions in the user's local network. How to create a
Some readers
Dialog API components
Dialog API component enables your voice assistant to recognise the user's speech intention, perform some useful actions and return the meaningful response back to the user that can be synthesised by text to speech component. Built-in dialog API libraries Aimybox provides these ready to use NLU engine implementations: [Aimybox API](https://github.com/just-ai/aimybox-android-sdk/blob/master/core/src/main/java/com/justai/aimybox/api/aimybox/Ai
Very popular
Speech to text components
Speech to text components enable a voice assistant to recognise user's speech and format it to the plain text. Then this text should be passed to another component named Dialog API to recognise a user's intention. Built-in speechkit libraries Aimybox provides built-in speech to text components available via library dependencies: Android speechkit ${color}[#8c609e]((supports offline mode)) [Kaldi
Popular
Android UI components
UI components library enables you to easily and very quickly embed ready to use voice assistant into your own Android application or create an all new voice assistant project. This library contains all UI components and complete voice assistant UX implementation used by Just AI in many voice driven projects. When to use this library If you need to embed and customise a voice assistant user interface into your ap
Popular
Text to speech components
Text to speech component enables a voice assistant to synthesise the resulting speech back to the user once the NLU/NLP service has returned the result. Built-in text to speech libraries Aimybox provides a ready to use text to speech libraries that can be used by your voice assistant through a dependencies Android speechkit [Google Cloud speechkit](https://github.com/just-ai/aimybox-android-sdk/tree/
Some readers
Voice trigger components
The user has to activate your voice assistant before speaking with it. It could be a tap on the microphone button or any other way to wake the assistant. One of the most popular way is to wake an assistant with special wake word like "Okay Google". In this case the voice assistant listens for this word or phrase continuously in the background and once the user speaks it - the voice assistant starts to listen the voice command. Aimybox provides a collection of ready to use wake word detector i
Few readers