pocketsphinx-android icon indicating copy to clipboard operation
pocketsphinx-android copied to clipboard

pocketsphinx build for Android

Results 17 pocketsphinx-android issues
Sort by recently updated
recently updated
newest added

Hi do you have the source? some library files are missing. ![image](https://user-images.githubusercontent.com/2300969/178269054-b65a5d2f-de32-4457-b334-7bb4063c4c54.png) `UATHelper: Packaging (Android (ASTC)): > Task :app:compileDebugJavaWithJavac FAILED UATHelper: Packaging (Android (ASTC)): The following annotation processors are not...

``` * Exception is: com.intellij.openapi.externalSystem.model.ExternalSystemException: executing external native build for cmake C:\Projects\pocketsphinx-android\CMakeLists.txt at org.jetbrains.plugins.gradle.model.ProjectImportAction.addBuildModels(ProjectImportAction.java:346) at org.jetbrains.plugins.gradle.model.ProjectImportAction.execute(ProjectImportAction.java:127) at org.jetbrains.plugins.gradle.model.ProjectImportAction.execute(ProjectImportAction.java:42) at org.gradle.tooling.internal.consumer.connection.InternalBuildActionAdapter.execute(InternalBuildActionAdapter.java:64) at org.gradle.tooling.internal.provider.runner.ClientProvidedPhasedActionRunner$ActionRunningListener.runAction(ClientProvidedPhasedActionRunner.java:120) at org.gradle.tooling.internal.provider.runner.ClientProvidedPhasedActionRunner$ActionRunningListener.run(ClientProvidedPhasedActionRunner.java:110) at org.gradle.tooling.internal.provider.runner.ClientProvidedPhasedActionRunner$ActionRunningListener.buildFinished(ClientProvidedPhasedActionRunner.java:104) at jdk.internal.reflect.GeneratedMethodAccessor72.invoke(Unknown Source) at...

Hello. I try to import using gradle in android application: ``` buildscript { repositories { google() mavenCentral() flatDir { dirs 'libs' } } dependencies { classpath "com.android.tools.build:gradle:7.0.3" // NOTE: Do...

To simply add something like: ` compile 'edu.cmu.pocketsphinx:1.0.0' ` to **app/build.gradle** in `dependencies { }` would simplify onboarding and help adoption. JCenter and MavenCentral are both popular package managers for...

Hello, I'm getting this error after clone this repo: java.lang.UnsatisfiedLinkError: Unable to load library 'CoreFoundation': My steps: 1. `git clone https://github.com/cmusphinx/pocketsphinx-android` 2. Open the repo with android studio. Android studio...

Hello, I'm testing pocketsphinx with digits recognition only. I noticed that if i say something else which are not in the grammar file, i always get a matching between what...

Hi, I meet "New_Decoder returned -1" error when i try to use pocketsphinx-android with French model language that i got here "https://sourceforge.net/projects/cmusphinx/files/Acoustic%20and%20Language%20Models/French/" I wrote my personal digits.gram file When i...

In order to build this I had to remove: ```util/errno.c``` from CMakeLists.txt Then I was able to create the aar. Also for those struggling to build this, take a look...

package com.whatever.ruthvikreddy.pocketsphinx_android; import android.Manifest; import android.content.pm.PackageManager; import android.os.AsyncTask; import android.support.annotation.NonNull; import android.support.v4.app.ActivityCompat; import android.support.v4.content.ContextCompat; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.widget.TextView; import java.io.File; import java.io.IOException; import java.lang.ref.WeakReference; import edu.cmu.pocketsphinx.Assets;...