Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 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.pristineusa.android.speechtotext" >
  4.  
  5. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  6. <supports-screens android:anyDensity="true"/>
  7.  
  8. <application
  9. android:allowBackup="true"
  10. android:icon="@drawable/ic_launcher"
  11. android:label="@string/app_name"
  12. android:theme="@style/Theme.MyTheme" >
  13. <activity
  14. android:name="com.pristineusa.android.speechtotext.MainActivity"
  15. android:label="@string/title_activity_main" >
  16. <intent-filter>
  17. <action android:name="android.intent.action.MAIN" />
  18. <category android:name="android.intent.category.LAUNCHER" />
  19. </intent-filter>
  20.  
  21. </activity>
  22.  
  23. <activity android:name="com.pristineusa.android.speechtotext.ToDoListActivity"/>
  24. <activity android:name="com.pristineusa.android.speechtotext.NoteEditorActivity"/>
  25. <activity android:name="com.pristineusa.android.speechtotext.MarkersActivity" android:label="@string/app_name2" android:configChanges="orientation|screenSize">
  26. <intent-filter>
  27. <action android:name="android.intent.action.MAIN"/>
  28. <category android:name="android.intent.category.LAUNCHER"/>
  29. <action android:name="android.intent.action.EDIT"/>
  30. <action android:name="android.intent.action.SEND"/>
  31. <data android:mimeType="image/*"/>
  32. <category android:name="android.intent.category.DEFAULT"/>
  33. </intent-filter>
  34.  
  35. </activity>
  36.  
  37.  
  38. <activity android:name="com.pristineusa.android.speechtotext.SearchEditorActivity">
  39. <meta-data
  40. android:name="android.app.searchable"
  41. android:resource="@xml/searchable"
  42. android:value="com.pristineusa.android.speechtotext.SearchEditorActivity"
  43. />
  44.  
  45. <intent-filter>
  46. <action android:name="com.google.android.gms.actions.SEARCH_ACTION"/>
  47. <category android:name="android.intent.category.DEFAULT"/>
  48. </intent-filter>
  49.  
  50. </activity>
  51.  
  52. <!-- StackWidget Provider (the provider is same as Receiver -->
  53.  
  54. <receiver android:name="com.pristineusa.android.speechtotext.StackWidgetProvider" >
  55. <intent-filter>
  56. <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
  57. </intent-filter>
  58.  
  59. <meta-data
  60. android:name="android.appwidget.provider"
  61. android:resource="@xml/stackwidgetinfo" />
  62. </receiver>
  63.  
  64. <!-- StackWidget Service -->
  65.  
  66. <service android:name="StackWidgetService"
  67. android:permission="android.permission.BIND_REMOTEVIEWS"
  68. android:exported="false" />
  69.  
  70.  
  71. </application>
  72.  
  73.  
  74.  
  75. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement