Update build tools and upstream, fix issue described in #24

This commit is contained in:
mar-v-in 2015-08-17 01:03:06 +02:00
parent 09f5773e81
commit c826702bb9
4 changed files with 8 additions and 4 deletions

2
extern/UnifiedNlp vendored

@ -1 +1 @@
Subproject commit 29df26c727263728a17665d8824b5d7c7d748eba
Subproject commit 643bd7dd22681dc5b1f1e0e3074033cb1b84ec75

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-all.zip

View File

@ -19,7 +19,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.android.tools.build:gradle:1.3.0'
}
}

View File

@ -260,7 +260,11 @@ public class McsService extends IntentService implements Handler.Callback {
switch (msg.what) {
case MSG_INPUT:
Log.d(TAG, "Incoming message: " + msg.obj);
handleInput((Message) msg.obj);
if (msg.obj != null) {
handleInput((Message) msg.obj);
} else {
mainHandler.dispatchMessage(mainHandler.obtainMessage(MSG_TEARDOWN, "null message"));
}
return true;
case MSG_OUTPUT:
Log.d(TAG, "Outgoing message: " + msg.obj);