Sample app to learn android programming (and the IDE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

22 lines
951 B

13 years ago
13 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.jinfield.sampleapp"
  4. android:versionCode="1"
  5. android:versionName="1.0">
  6. <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
  7. <activity android:name="MainActivity"
  8. android:label="@string/app_name">
  9. <intent-filter>
  10. <action android:name="android.intent.action.MAIN" />
  11. <category android:name="android.intent.category.LAUNCHER" />
  12. </intent-filter>
  13. </activity>
  14. <activity
  15. android:name=".DisplayMessageActivity"
  16. android:label="@string/title_activity_display_message" >
  17. <meta-data
  18. android:name="android.support.PARENT_ACTIVITY"
  19. android:value="com.jinfield.sampleapp.MainActivity" />
  20. </activity>
  21. </application>
  22. </manifest>