-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed the accelerometer control, moved the constants from AliteStartM…
…anager to AliteConfig and removed the necessity to update the code of AliteIntro when building the different versions.
- Loading branch information
1 parent
1bbd002
commit 9657f68
Showing
21 changed files
with
162 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ tags | |
bin/ | ||
gen/R.java.d | ||
main.*.de.phbouillon.android.games.alite.obb | ||
/local.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package de.phbouillon.android.games.alite; | ||
|
||
public class AliteConfig { | ||
public static final boolean HAS_EXTENSION_APK = false; | ||
public static final int EXTENSION_FILE_VERSION = 2192; | ||
public static final long EXTENSION_FILE_LENGTH = 427312705l; | ||
public static final String VERSION_STRING = "1.4.6"; | ||
public static final int ALITE_INTRO_B1920 = -1; //R.raw.alite_intro_b1920; | ||
public static final int ALITE_INTRO_B1280 = -1; //R.raw.alite_intro_b1280; | ||
public static final int ALITE_INTRO_B640 = -1; //R.raw.alite_intro_b640; | ||
public static final int ALITE_INTRO_B320 = -1; //R.raw.alite_intro_b320; | ||
public static final int ALITE_INTRO_288 = -1; //R.raw.alite_intro_288; | ||
public static final int ALITE_INTRO_B240 = -1; //R.raw.alite_intro_b240; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.