<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="PLATFORM" />
+ <option name="disableWrapperSourceDistributionNotification" value="true" />
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="1.8" />
private Runnable textView = new Runnable() {
@Override
public void run() {
+ Button button = (Button)findViewById(R.id.button);
TextView text = (TextView)findViewById(R.id.LOG);
String LOG = "";
if(LOGAll.split("\n").length > 100) {
} else {
text.setText(LOG);
}
+ mining = false;
+ button.setText("Start");
Log.e("test",LOG);
+ handler.removeCallbacks(textView);
+
}
if (!miner.error().isEmpty()) {
LOG += miner.error() + miner.output();
text.scrollTo(0, text.getLayout().getLineTop(text.getLineCount()) - text.getHeight());
} else {
text.setText(LOG);
-
}
+ mining = false;
+ button.setText("Start");
Log.e("test",LOG);
+ handler.removeCallbacks(textView);
} else {
LOG += miner.output();
LOGAll += LOG;