Skip to content

Commit

Permalink
Fix crash in free version caused by use of incorrect application ID.
Browse files Browse the repository at this point in the history
  • Loading branch information
andybalaam committed Jan 14, 2017
1 parent 6993d62 commit 34a580c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
import rabbitescape.engine.Token;
import rabbitescape.engine.menu.MenuItem;

import static net.artificialworlds.rabbitescape.BuildConfig.APPLICATION_ID;

class AndroidUiDriver
{
private static class Holder<T>
Expand Down Expand Up @@ -48,7 +50,7 @@ public AndroidUiDriver( ActivityInstrumentationTestCase2<AndroidMenuActivity> te
monitor( testCase, AndroidAboutActivity.class );

testCase.launchActivity(
"net.artificialworlds.rabbitescape", AndroidMenuActivity.class, null
APPLICATION_ID, AndroidMenuActivity.class, null
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
import android.widget.ImageButton;
import android.widget.RadioGroup;

import static net.artificialworlds.rabbitescape.BuildConfig.APPLICATION_ID;

public class AbilityButton extends Button
{
private class OnClickListener implements ImageButton.OnClickListener
Expand Down Expand Up @@ -66,7 +68,7 @@ private void setImage( Resources resources )
resources.getIdentifier(
"ability_" + ability,
"drawable",
"net.artificialworlds.rabbitescape"
APPLICATION_ID
)
);

Expand Down

0 comments on commit 34a580c

Please sign in to comment.