Selman ALPDÜNDAR

Text-to-Speech (TTS) in React Native: A Comprehensive Guide for Android and iOS

Text-to-Speech (TTS) is a powerful technology that allows your applications to convert written text into spoken words. React Native, a popular cross-platform framework for building mobile apps, can leverage TTS to create more engaging and accessible user experiences. In this blog post, we will walk you through the process of implementing Text-to-Speech in a React Native application for both Android and iOS platforms.

Continue with reading

How to read all image from sub folder of assets in android

Create new project and add an imageswitcher to activity_main.xml then open MainActivity.java firstly we need to reach assets folder in android to reach assets folder there is an assets manager basicly you can use assets manager like that

 
 AssetManager assetManager = getAssets();
/* this will read main folder of assets 
if you need read sub folder 
just add folder name before file (subfolder/filename)
*/
 InputStream inputStream= assetManager.open("File name");

Continue with reading