I'm trying to gradlew build in /pocketsphinx-android and it fails with:
:pocketsphinx-android admin$ ./gradlew build
> Configure project :
The setTestClassesDir(File) method has been deprecated and is scheduled to be removed in Gradle 5.0. Please use the setTestClassesDirs(FileCollection) method instead.
The getTestClassesDir() method has been deprecated and is scheduled to be removed in Gradle 5.0. Please use the getTestClassesDirs() method instead.
The ConfigurableReport.setDestination(Object) method has been deprecated and is scheduled to be removed in Gradle 5.0. Please use the method ConfigurableReport.setDestination(File) instead.
> Task :swigPs
../pocketsphinx/swig/pocketsphinx.i:64: Error: Unable to find 'iterators.i'
../pocketsphinx/swig/pocketsphinx.i:65: Error: Unable to find 'sphinxbase.i'
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':swigPs'.
> Process 'command 'swig'' finished with non-zero exit value 1
Any suggestions, please?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm trying to gradlew build in /pocketsphinx-android and it fails with:
Any suggestions, please?
You should have sphinxbase in the parent folder together with pocketsphinx. sphinxbase.i must be in ../sphinxbase/swig
I.e. like this, right?