Skip to main content

Sound recording with different frequencies


Sound recording with different frequenciesAndroid application has the option of changing the following frequencies: 11025, 16000, 22050, 44100.
With the 3 buttons, you can startstopand play your sound recording.
Application (app) for mobile phone can be downloaded from HERE.
After downloading, it copies itself to the mobile phone and install.
Project with all files (source code) can be given on request.
For further questions leave a message.

Comments

Popular posts from this blog

Privacy Policy for EarnEasy Apps

  Privacy Policy for EarnEasy Apps At EarnEasy Apps, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by EarnEasy Apps and how we use it. If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us. Log Files EarnEasy Apps follows a standard procedure of using log files. These files log visitors when they use app. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the app, tracking users' movement on the app, and gathering demographic information. Our Advertising Partners Some of advertisers in our app may use cookies and web beacons. ...

SVG Integration in Android Studio

Tutorial about how to  integrate SVG  file in  Android Studio . Open Android Studio and create a project (see  here   how).  Application name for this example is  SVG . In  project   structure  in  app  ->  res    right click   ->  New  ->  Directory  create  New Directory . Name  New Directory :  raw . Click  here  to download the  archive  with  SVG file .  Unzip the   archive   and put the file  android.svg   ( with  copy-paste )  in   the newly created folder  raw . Click  here   to download   the  jar  file   and put it   ( with  copy-paste )  in the   libs   folder of our project . Right click on  app  folder of project and choose  Open Module Settings . Click on  Dependencies  tab, click on...

Exporting A Project To Gradle And Building/Deploying On Android Studio

Symptoms I want to export my project via Gradle and use Android Studio to build it. Cause Reasons you might want to do this include: You want to make modifications to the application in Android Studio before building it. You want full control over the build process. Resolution You need to have your Android developer environment set up before you can build your Unity application in Android Studio. This involves downloading and installing Android Studio, which also installs the Android SDK. Download Android Studio from the  Android Studio website . Next, you need to add the Android SDK path to Unity. See Unity documentation on  Android SDK/NDK setup  for steps on how to do this. Once you have your Android developer environment set up you can open your Unity Project. Note that you need to set a valid bundle identifier to be able to export an Android Project. To set this, go to Player Settings (menu:  Edit  >  Project Settings  ...