1*1789df15SXin Li<!-- 2*1789df15SXin Li Copyright 2012 The Android Open Source Project 3*1789df15SXin Li 4*1789df15SXin Li Licensed under the Apache License, Version 2.0 (the "License"); 5*1789df15SXin Li you may not use this file except in compliance with the License. 6*1789df15SXin Li You may obtain a copy of the License at 7*1789df15SXin Li 8*1789df15SXin Li http://www.apache.org/licenses/LICENSE-2.0 9*1789df15SXin Li 10*1789df15SXin Li Unless required by applicable law or agreed to in writing, software 11*1789df15SXin Li distributed under the License is distributed on an "AS IS" BASIS, 12*1789df15SXin Li WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*1789df15SXin Li See the License for the specific language governing permissions and 14*1789df15SXin Li limitations under the License. 15*1789df15SXin Li --> 16*1789df15SXin Li 17*1789df15SXin Li<manifest xmlns:android="http://schemas.android.com/apk/res/android" 18*1789df15SXin Li package="com.android.notificationstudio" 19*1789df15SXin Li android:versionCode="5" 20*1789df15SXin Li android:versionName="0.5" > 21*1789df15SXin Li 22*1789df15SXin Li <uses-sdk android:targetSdkVersion="16" android:minSdkVersion="10" /> 23*1789df15SXin Li 24*1789df15SXin Li <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 25*1789df15SXin Li 26*1789df15SXin Li <application android:label="@string/app_name" > 27*1789df15SXin Li <activity 28*1789df15SXin Li android:name=".NotificationStudioActivity" 29*1789df15SXin Li android:label="@string/app_name" > 30*1789df15SXin Li <intent-filter> 31*1789df15SXin Li <action android:name="android.intent.action.MAIN" /> 32*1789df15SXin Li 33*1789df15SXin Li <category android:name="android.intent.category.LAUNCHER" /> 34*1789df15SXin Li </intent-filter> 35*1789df15SXin Li </activity> 36*1789df15SXin Li </application> 37*1789df15SXin Li 38*1789df15SXin Li</manifest>