-
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.
Reverted newlines from '\r\n' to '\n' in AndroidManifest.xml since
'\r\n' make my builds fail.
- Loading branch information
pfedor
committed
Apr 30, 2014
1 parent
80f3712
commit 02a29d3
Showing
1 changed file
with
65 additions
and
65 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,66 +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="24" | ||
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> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.jfedor.frozenbubble" | ||
android:versionCode="24" | ||
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> |