Skip to content

Commit

Permalink
rename the project to eruption, started some refactoring for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
Andriy Katkov committed Oct 8, 2014
1 parent b9d3772 commit d0189d4
Show file tree
Hide file tree
Showing 33 changed files with 1,326 additions and 872 deletions.
2 changes: 1 addition & 1 deletion .project
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>AvalancheGame</name>
<name>Eruption</name>
<comment></comment>
<projects>
</projects>
Expand Down
4 changes: 4 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.source=1.6
3 changes: 1 addition & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:debuggable="true"
android:icon="@drawable/eruption_icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<activity
Expand Down
3 changes: 1 addition & 2 deletions bin/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:debuggable="true"
android:icon="@drawable/eruption_icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<activity
Expand Down
Binary file modified bin/AvalancheGame.apk
Binary file not shown.
Binary file modified bin/classes.dex
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/BuildConfig.class
Binary file not shown.
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/CustomSurfaceView.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/MainActivity.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/Player.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/R$attr.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/R$dimen.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/R$drawable.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/R$id.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/R$layout.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/R$menu.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/R$string.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/R$style.class
Binary file not shown.
Binary file modified bin/classes/com/example/avalanchegame/R.class
Binary file not shown.
Binary file modified bin/resources.ap_
Binary file not shown.
4 changes: 2 additions & 2 deletions gen/com/example/avalanchegame/R.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public static final class dimen {
public static final int activity_vertical_margin=0x7f040001;
}
public static final class drawable {
public static final int ic_launcher=0x7f020000;
public static final int eruption_icon=0x7f020000;
public static final int ic_launcher=0x7f020001;
}
public static final class id {
public static final int action_settings=0x7f08000c;
Expand Down Expand Up @@ -52,7 +53,6 @@ public static final class menu {
public static final class string {
public static final int action_settings=0x7f050001;
public static final int app_name=0x7f050000;
public static final int hello_world=0x7f050002;
}
public static final class style {
/**
Expand Down
Binary file added res/drawable-xxhdpi/eruption_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions res/layout/pausescreen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:onClick="backToGame"
android:text="Back to game" />
android:text="New Game" />

<Button
android:id="@+id/exit"
Expand All @@ -19,6 +19,6 @@
android:layout_below="@id/backToGame"
android:layout_centerInParent="true"
android:onClick="exit"
android:text="Exit" />
android:text="Back to Main Menu" />

</RelativeLayout>
3 changes: 1 addition & 2 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<string name="app_name">AvalancheGame</string>
<string name="app_name">Eruption</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>

</resources>
Loading

0 comments on commit d0189d4

Please sign in to comment.