Skip to content

Commit

Permalink
Reverted newlines from '\r\n' to '\n' in AndroidManifest.xml since
Browse files Browse the repository at this point in the history
'\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.
130 changes: 65 additions & 65 deletions AndroidManifest.xml
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>

0 comments on commit 02a29d3

Please sign in to comment.