-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added network multiplayer, and fixed numerous bugs.
- Loading branch information
forteri76
committed
Apr 28, 2014
1 parent
f378647
commit b66f0ec
Showing
39 changed files
with
6,778 additions
and
2,335 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 |
---|---|---|
@@ -1,61 +1,66 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.jfedor.frozenbubble" | ||
android:versionCode="23" | ||
android:versionName="1.22" > | ||
|
||
<supports-screens | ||
android:smallScreens="true" | ||
android:normalScreens="true" | ||
android:largeScreens="true" | ||
android:anyDensity="true" /> | ||
|
||
<uses-sdk | ||
android:minSdkVersion="4" | ||
android:targetSdkVersion="4" /> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:debuggable="false" | ||
android:icon="@drawable/app_frozen_bubble" | ||
android:label="@string/app_name" > | ||
|
||
<activity | ||
android:name="FrozenBubble" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/app_name" | ||
android:alwaysRetainTaskState="true" | ||
android:launchMode="singleInstance" > | ||
<intent-filter> | ||
<action android:name="org.jfedor.frozenbubble.GAME" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity | ||
android:name="org.jfedor.frozenbubble.InterstitialActivity" | ||
android:label="Interstitial" > | ||
</activity> | ||
|
||
<activity | ||
android:name="com.efortin.frozenbubble.PreferencesActivity" | ||
android:theme="@android:style/Theme.Black.NoTitleBar" > | ||
</activity> | ||
|
||
<activity | ||
android:name="com.efortin.frozenbubble.ScrollingCredits" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/menu_about" > | ||
</activity> | ||
|
||
<activity | ||
android:name="com.efortin.frozenbubble.SplashScreen" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/title_activity_splash_screen" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
</manifest> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.jfedor.frozenbubble" | ||
android:versionCode="22" | ||
android:versionName="2.0"> | ||
|
||
<supports-screens | ||
android:smallScreens="true" | ||
android:normalScreens="true" | ||
android:largeScreens="true" | ||
android:anyDensity="true"/> | ||
|
||
<uses-sdk | ||
android:minSdkVersion="4" | ||
android:targetSdkVersion="4"/> | ||
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | ||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> | ||
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:debuggable="false" | ||
android:icon="@drawable/app_frozen_bubble" | ||
android:label="@string/app_name"> | ||
|
||
<activity | ||
android:name="FrozenBubble" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/app_name" | ||
android:alwaysRetainTaskState="true" | ||
android:launchMode="singleInstance"> | ||
<intent-filter> | ||
<action android:name="org.jfedor.frozenbubble.GAME"/> | ||
<category android:name="android.intent.category.DEFAULT"/> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity | ||
android:name="org.jfedor.frozenbubble.InterstitialActivity" | ||
android:label="Interstitial" > | ||
</activity> | ||
|
||
<activity | ||
android:name="com.efortin.frozenbubble.PreferencesActivity" | ||
android:theme="@android:style/Theme.Black.NoTitleBar"> | ||
</activity> | ||
|
||
<activity | ||
android:name="com.efortin.frozenbubble.ScrollingCredits" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/menu_about"> | ||
</activity> | ||
|
||
<activity | ||
android:name="com.efortin.frozenbubble.HomeScreen" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/title_activity_home_screen"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
</manifest> |
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,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android" > | ||
<item android:state_pressed="true" > | ||
<shape android:shape="ring" android:innerRadius="0dp" android:thickness="25dp" android:useLevel="false" > | ||
<stroke android:width="1dp" android:color="#5e7974" /> | ||
<gradient android:angle="-90" android:startColor="#345953" android:endColor="#689a92" /> | ||
</shape> | ||
</item> | ||
<item android:state_focused="true" > | ||
<shape android:shape="ring" android:innerRadius="0dp" android:thickness="25dp" android:useLevel="false" > | ||
<stroke android:width="1dp" android:color="#5e7974" /> | ||
<solid android:color="#58857e" /> | ||
</shape> | ||
</item> | ||
<item > | ||
<shape android:shape="ring" android:innerRadius="0dp" android:thickness="25dp" android:useLevel="false" > | ||
<stroke android:width="1dp" android:color="#5e7974" /> | ||
<gradient android:angle="-90" android:startColor="#8dbab3" android:endColor="#58857e" /> | ||
</shape> | ||
</item> | ||
</selector> |
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
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.