Context-detection API for Android developed as a university project
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.

AndroidManifest.xml 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="uk.co.md87.android.contextanalyser.locale"
  4. android:versionCode="1" android:versionName="0.0.1">
  5. <application android:label="@string/app_name" android:icon="@drawable/icon">
  6. <activity android:name="com.twofortyfouram.MarketActivity"
  7. android:label="Activity Plugin" android:icon="@drawable/icon"
  8. android:theme="@android:style/Theme.Translucent.NoTitleBar">
  9. <intent-filter>
  10. <action android:name="android.intent.action.MAIN"/>
  11. <category android:name="android.intent.category.INFO"/>
  12. </intent-filter>
  13. </activity>
  14. <activity android:name=".EditActivity" android:label="@string/plugin_name"
  15. android:icon="@drawable/icon">
  16. <intent-filter>
  17. <action android:name="com.twofortyfouram.locale.intent.action.EDIT_CONDITION"/>
  18. </intent-filter>
  19. </activity>
  20. <activity android:name=".EditDestination" android:label="@string/location_name"
  21. android:icon="@drawable/icon">
  22. <intent-filter>
  23. <action android:name="com.twofortyfouram.locale.intent.action.EDIT_CONDITION"/>
  24. </intent-filter>
  25. </activity>
  26. <receiver android:name=".Receiver" android:exported="true">
  27. <intent-filter>
  28. <action android:name="com.twofortyfouram.locale.intent.action.QUERY_CONDITION" />
  29. </intent-filter>
  30. <intent-filter>
  31. <action android:name="uk.co.md87.android.contextanalyser.ACTIVITY_CHANGED" />
  32. <action android:name="uk.co.md87.android.contextanalyser.CONTEXT_CHANGED" />
  33. </intent-filter>
  34. </receiver>
  35. </application>
  36. <uses-sdk android:minSdkVersion="3" />
  37. <uses-permission android:name="uk.co.md87.android.contextanalyser.RECEIVE_UPDATES"/>
  38. <uses-permission android:name="uk.co.md87.android.contextanalyser.READ_PLACES"/>
  39. </manifest>