Skip to content

Commit

Permalink
fixed indentation of AndroidManifest.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
forrestv committed Apr 5, 2012
1 parent 084f32d commit c799558
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="st.forre.ufw_login"
android:versionCode="1"
android:versionName="1.0">
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="st.forre.ufw_login"
android:versionCode="1"
android:versionName="1.0"
>
<uses-sdk
android:minSdkVersion="1"
android:targetSdkVersion="11"
Expand All @@ -14,17 +16,20 @@
android:label="@string/app_name"
android:icon="@drawable/icon"
>
<activity android:name="ufw_login"
android:theme="@android:style/Theme.NoTitleBar"
android:label="@string/app_name">
<activity
android:name="ufw_login"
android:theme="@android:style/Theme.NoTitleBar"
android:label="@string/app_name"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="ufw_login$Preferences"
android:label="@string/pref_title"/>
<service android:name="ufw_login$WatchService" android:label="@string/app_name">
</service>
<activity
android:name="ufw_login$Preferences"
android:label="@string/pref_title"
/>
<service android:name="ufw_login$WatchService" android:label="@string/app_name"/>
</application>
</manifest>
</manifest>

0 comments on commit c799558

Please sign in to comment.