Files
android_development/samples/devbytes/animation/ListViewExpandingCells/AndroidManifest.xml
Daniel Olshansky 8cfd63c979 First commit for ListViewExpandingCells.
Change-Id: I8d64562f8c7c0e207aef0b36df10ee3744dd446a
2013-07-29 15:07:05 -07:00

18 lines
762 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.expandingcells"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="16"
android:targetSdkVersion="17"/>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<activity android:name=".ExpandingCells"
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>