Advertisement
Guest User

Untitled

a guest
May 1st, 2014
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.learn2crack"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6.  
  7. <uses-sdk
  8. android:minSdkVersion="14"
  9. android:targetSdkVersion="17" />
  10.  
  11. <application
  12. android:icon="@drawable/ic_launcher"
  13. android:label="@string/app_name"
  14. android:theme="@android:style/Theme.DeviceDefault.Light.DarkActionBar" >
  15. <activity
  16. android:name="com.CreaLeParole.Login"
  17. android:label="@string/app_name" >
  18. </activity>
  19. <activity
  20. android:name="com.CreaLeParole.Register"
  21. android:label="@string/app_name" >
  22. </activity>
  23. <activity
  24. android:name="com.CreaLeParole.Registered"
  25. android:label="@string/app_name" >
  26. </activity>
  27. <activity
  28. android:name="com.CreaLeParole.PasswordReset"
  29. android:label="@string/app_name" >
  30. </activity>
  31. <activity
  32. android:name="com.CreaLeParole.ChangePassword"
  33. android:label="@string/app_name" >
  34. </activity>
  35. <activity
  36. android:name="com.CreaLeParole.menu_principale"
  37. android:label="@string/title_activity_main_menu" >
  38. <intent-filter>
  39. <action android:name="android.intent.action.MAIN" />
  40.  
  41. <category android:name="android.intent.category.LAUNCHER" />
  42. </intent-filter>
  43. </activity>
  44. <activity
  45. android:name="com.CreaLeParole.Impostazioni"
  46. android:label="@string/title_activity_impostazioni"
  47. android:parentActivityName="com.CreaLeParole.menu_principale" >
  48. <meta-data
  49. android:name="android.support.PARENT_ACTIVITY"
  50. android:value="com.CreaLeParole.menu_principale" />
  51. </activity>
  52. <activity
  53. android:name="com.CreaLeParole.Info"
  54. android:label="@string/title_activity_info"
  55. android:parentActivityName="com.CreaLeParole.Impostazioni" >
  56. <meta-data
  57. android:name="android.support.PARENT_ACTIVITY"
  58. android:value="com.CreaLeParole.Impostazioni" />
  59. </activity>
  60. <activity
  61. android:name="com.CreaLeParole.RicercaPartita"
  62. android:label="@string/title_activity_ricerca_partita_casuale"
  63. android:parentActivityName="com.CreaLeParole.menu_principale" >
  64. <meta-data
  65. android:name="android.support.PARENT_ACTIVITY"
  66. android:value="com.CreaLeParole.menu_principale" />
  67. </activity>
  68. </application>
  69. <!-- Allow to connect with internet and to know the current network state -->
  70. <uses-permission android:name="android.permission.INTERNET" />
  71. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  72.  
  73. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement