1*8caefee3SMatthias Ringwald<?xml version="1.0" encoding="utf-8"?> 2*8caefee3SMatthias Ringwald<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3*8caefee3SMatthias Ringwald package="com.bluekitchen.sppclient" 4*8caefee3SMatthias Ringwald android:versionCode="1" 5*8caefee3SMatthias Ringwald android:versionName="1.0" > 6*8caefee3SMatthias Ringwald 7*8caefee3SMatthias Ringwald <uses-sdk 8*8caefee3SMatthias Ringwald android:minSdkVersion="8" 9*8caefee3SMatthias Ringwald android:targetSdkVersion="18" /> 10*8caefee3SMatthias Ringwald 11*8caefee3SMatthias Ringwald <application 12*8caefee3SMatthias Ringwald android:allowBackup="true" 13*8caefee3SMatthias Ringwald android:icon="@drawable/ic_launcher" 14*8caefee3SMatthias Ringwald android:label="@string/app_name" 15*8caefee3SMatthias Ringwald android:theme="@style/AppTheme" > 16*8caefee3SMatthias Ringwald <activity 17*8caefee3SMatthias Ringwald android:name="com.bluekitchen.sppclient.MainActivity" 18*8caefee3SMatthias Ringwald android:label="@string/app_name" > 19*8caefee3SMatthias Ringwald <intent-filter> 20*8caefee3SMatthias Ringwald <action android:name="android.intent.action.MAIN" /> 21*8caefee3SMatthias Ringwald 22*8caefee3SMatthias Ringwald <category android:name="android.intent.category.LAUNCHER" /> 23*8caefee3SMatthias Ringwald </intent-filter> 24*8caefee3SMatthias Ringwald </activity> 25*8caefee3SMatthias Ringwald </application> 26*8caefee3SMatthias Ringwald 27*8caefee3SMatthias Ringwald</manifest> 28