Created
April 7, 2015 09:43
-
-
Save adin234/dc94ddcce76012e2f998 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="it.sephiroth.android.sample.horizontalvariablelistviewdemo" | |
| android:versionCode="1" | |
| android:versionName="1.0"> | |
| <uses-sdk | |
| android:minSdkVersion="9" | |
| android:targetSdkVersion="19" /> | |
| <application | |
| android:icon="@drawable/ic_launcher" | |
| android:label="@string/app_name" | |
| android:theme="@style/AppTheme" | |
| android:supportsRtl="true" | |
| android:hardwareAccelerated="true"> | |
| <activity | |
| android:name=".MainActivity" | |
| 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=".SimpleHListActivity" | |
| android:label="Simple List" /> | |
| <activity | |
| android:name=".ExpandableListActivity" | |
| android:label="Expandable List" /> | |
| </application> | |
| </manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment