This commit is contained in:
c_zorrilla 2019-04-16 15:09:16 +02:00
parent 372472f57c
commit 266bca0714
7 changed files with 11 additions and 8 deletions

3
.idea/gradle.xml generated
View file

@ -3,6 +3,9 @@
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<compositeConfiguration>
<compositeBuild compositeDefinitionSource="SCRIPT" />
</compositeConfiguration>
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="modules">

View file

@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.android.tools.build:gradle:3.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files

View file

@ -1,6 +1,6 @@
#Wed Jun 20 09:05:23 CEST 2018
#Fri Mar 15 12:36:31 CET 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

View file

@ -8,15 +8,15 @@ android {
lintOptions {
disable 'MissingTranslation'
abortOnError true
abortOnError false
}
defaultConfig {
applicationId "com.voixtreme.vocalengine"
minSdkVersion 17
targetSdkVersion 24
targetSdkVersion 25
VERSION = "4.3.1.500"
VERSION = "4.3.1.502"
}
def props = new Properties()

View file

@ -67,7 +67,7 @@ public class VoiXtremeService extends VoiXtremeServiceBase
// Tts Vocalizer Engine: the text to speech engine.
private VocalizerEngine ttsEngine = null;
private static final String VOIXTREME_SERVICE_VERSION = "4.3.1.33";
private static final String VOIXTREME_SERVICE_VERSION = "4.2.1.35";
// Tag
private static final String TAG = VoiXtremeService.class.getSimpleName();
@ -398,7 +398,7 @@ public class VoiXtremeService extends VoiXtremeServiceBase
boolean isOk= ttsEngine.stop();
if( isOk== false) {
Log.e( TAG, "ttsEngineStopSpeaking ERROR" );
mVxtEngineApi.nativelog( 0, TAG, "ttsEngineStopSpeaking ERROR STOPPING TTS engine");
mVxtEngineApi.nativelog( 1, TAG, "ttsEngineStopSpeaking ERROR STOPPING TTS engine");
// turn to false is speaking!!
mIsSepaking= false;
}