Skip to content

Commit

Permalink
[RELEASE] Fix issues with missing strings, increased version code.
Browse files Browse the repository at this point in the history
 - fixed issues with missing string, that was obfuscated by translation
   workflow -> missing strings only show up when all translations of
   this string are removed.
 - increased version code for Google Play.
  • Loading branch information
thmq committed Oct 14, 2018
1 parent e8dcd34 commit 5997b70
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion catroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ android {
targetSdkVersion 22
applicationId appId
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
versionCode 49
versionCode 50
println "VersionCode is $versionCode"
versionName "0.9.42"
println "VersionName is $versionName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void testSetBackgroundBrickMediaLibraryUrl() {
onBrickAtPosition(brickPosition).checkShowsText(R.string.brick_set_background);

onBrickAtPosition(brickPosition).onSpinner(R.id.brick_set_look_spinner)
.performSelectNameable(R.string.brick_variable_spinner_create_new_variable);
.performSelectNameable(R.string.new_option);

Intents.init();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void testSetLookBrickMediaLibraryUrl() {
onBrickAtPosition(brickPosition).checkShowsText(R.string.brick_set_look);

onBrickAtPosition(brickPosition).onSpinner(R.id.brick_set_look_spinner)
.performSelectNameable(R.string.brick_variable_spinner_create_new_variable);
.performSelectNameable(R.string.new_option);

Intents.init();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public void testNewVariableCanceling() {
onBrickAtPosition(setBrickPosition).onVariableSpinner(R.id.set_variable_spinner)
.perform(click());

onView(withText(R.string.brick_variable_spinner_create_new_variable))
onView(withText(R.string.new_option))
.perform(click());

closeSoftKeyboard();
Expand Down

0 comments on commit 5997b70

Please sign in to comment.