Skip to content

Commit d97917f

Browse files
committed
clean up
1 parent 6d59240 commit d97917f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android {
2020
}
2121

2222
dependencies {
23-
compile fileTree(dir: 'libs', include: ['*.jar'])
23+
compile fileTree(include: ['*.jar'], dir: 'libs')
2424
testCompile 'junit:junit:4.12'
2525
compile 'com.android.support:appcompat-v7:22.2.1'
2626
compile 'com.google.android.gms:play-services-appindexing:8.4.0'

app/src/main/java/openscience/crowdsource/video/experiments/ScenariosActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ public void onClick(View v) {
8383
ArrayList<RecognitionScenario> sortedRecognitionScenarios = RecognitionScenarioService.getSortedRecognitionScenarios();
8484

8585
if (sortedRecognitionScenarios.size() == 0) {
86-
AppLogger.logMessage("There is not scenarios found for your device...");
86+
AppLogger.logMessage("There are no scenarios found for your device...");
8787
LinearLayout ll = new LinearLayout(this);
8888
ll.setOrientation(LinearLayout.HORIZONTAL);
8989
final TextView resultItemView = new TextView(this);
9090
resultItemView.setPadding(0, 20, 0 , 20);
9191
Spanned spanned;
92-
spanned = Html.fromHtml("<font color='#ffffff'><b>There is not scenarios found for your device...</b></font>");
92+
spanned = Html.fromHtml("<font color='#ffffff'><b>There are no scenarios found for your device...</b></font>");
9393
resultItemView.setText(spanned);
9494
ll.addView(resultItemView);
9595
resultRadioGroup.addView(ll);

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ buildscript {
1616
allprojects {
1717
repositories {
1818
jcenter()
19-
google()
2019
}
2120
}
2221

0 commit comments

Comments
 (0)