Files
android_development/samples/devbytes/animation/ListViewDraggingAnimation/AndroidManifest.xml
Daniel Olshansky d79643bbd1 First commit for ListViewDraggingAnimation.
Change-Id: Ib1642809b33cba3f8e319b43688047672cffaf19
2013-07-29 09:21:31 -07:00

18 lines
784 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.listviewdragginganimation"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="11"
android:targetSdkVersion="17"/>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<activity android:name=".ListViewDraggingAnimation"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>