-
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 bluetooth network multiplayer.
Simplified local WiFi network multiplayer. No IP addresses needed. Fixed screen orientation display issues on some devices.
- Loading branch information
forteri76
committed
Jul 20, 2015
1 parent
815cc99
commit 1265bc4
Showing
18 changed files
with
1,932 additions
and
1,205 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
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,65 +1,62 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.jfedor.frozenbubble" | ||
android:versionCode="37" | ||
android:versionName="3.4"> | ||
|
||
<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: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> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.jfedor.frozenbubble" | ||
android:versionCode="38" | ||
android:versionName="3.5"> | ||
|
||
<supports-screens | ||
android:smallScreens="true" | ||
android:normalScreens="true" | ||
android:largeScreens="true" | ||
android:anyDensity="true"/> | ||
|
||
<uses-sdk | ||
android:minSdkVersion="10" | ||
android:targetSdkVersion="10"/> | ||
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | ||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> | ||
<uses-permission android:name="android.permission.BLUETOOTH"/> | ||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> | ||
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
|
||
<application | ||
android:allowBackup="true" | ||
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="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
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.