~tomdroid-maintainers/tomdroid/main

10 by Olivier Bilodeau
A string and a button! Yay!
1
<?xml version="1.0" encoding="utf-8"?>
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
      package="org.tomdroid"
248 by Olivier Bilodeau
version bump
4
      android:versionName="0.5.0" android:versionCode="7">
55.1.5 by Olivier Bilodeau
Implemented a ContentProvider to be able to use Linkify to link to notes in a TextView using standard android mechanisms.
5
214 by Olivier Bilodeau
Realized I bumped Android SDK requirements by mistake. We need SDK to build (understand new assets) but not to run the apk. Put back 1.5 compatibility.
6
	<uses-sdk android:minSdkVersion="3"
185.1.24 by Rodja Trappe
Added sync icon to Actionbar
7
	          android:targetSdkVersion="4" />
8
          
9
    <supports-screens android:anyDensity="true" />
10
        	       
226.1.7 by Stefan Hammer
As a last action fixed some formatting issues to clean up the mess
11
	<application
12
		android:icon="@drawable/ic_launcher"
169 by Olivier Bilodeau
Prepping for 0.3.0 release + metadata update
13
		android:label="@string/app_name"
204 by Olivier Bilodeau
last bits for 0.4 source release
14
		android:theme="@android:style/Theme.Light.NoTitleBar"
15
		android:debuggable="false"
226.1.7 by Stefan Hammer
As a last action fixed some formatting issues to clean up the mess
16
	>
55.1.5 by Olivier Bilodeau
Implemented a ContentProvider to be able to use Linkify to link to notes in a TextView using standard android mechanisms.
17
97 by Olivier Bilodeau
app lifecycle fix
18
        <activity android:label="@string/app_name"
19
        		  android:name=".ui.Tomdroid"
20
        		  android:launchMode="singleTop"
21
        		  >
10 by Olivier Bilodeau
A string and a button! Yay!
22
            <intent-filter>
23
                <action android:name="android.intent.action.MAIN" />
24
                <category android:name="android.intent.category.LAUNCHER" />
25
            </intent-filter>
185.1.6 by Benoit Garret
Make Tomdroid respond to tomdroid:// uris.
26
            <intent-filter>
27
        		<action android:name="android.intent.action.VIEW" />
28
        		<category android:name="android.intent.category.DEFAULT" />
29
        		<category android:name="android.intent.category.BROWSABLE" />
213.2.1 by Benoit Garret
Add an activity to show and save exceptions
30
        		<data android:scheme="tomdroid" android:host="sync"/>
185.1.6 by Benoit Garret
Make Tomdroid respond to tomdroid:// uris.
31
        	</intent-filter>
232.2.1 by Stefan Hammer
Created a Searchable Activity using the standard Android Search Dialog. Added Menu Button: Search. After Searching, a Results-List is shown. Still Missing: Costum Suggestions which update while typing
32
        	<!-- enable the search dialog to send searches to SearchableActivity -->
33
        	<meta-data android:name="android.app.default_searchable"
34
                   android:value=".ui.Search" />
10 by Olivier Bilodeau
A string and a button! Yay!
35
        </activity>
55.1.7 by Olivier Bilodeau
The ViewNote activity is catching Tomdroid's Intent.
36
    
37
		<activity android:name=".ui.ViewNote">
38
		    <intent-filter>
39
			    <action android:name="android.intent.action.VIEW" />
40
			    <category android:name="android.intent.category.DEFAULT" />
41
			    <category android:name="android.intent.category.BROWSABLE" />
42
			    <data android:mimeType="vnd.android.cursor.item/vnd.tomdroid.note" />
43
			</intent-filter>
44
		</activity>
55.1.5 by Olivier Bilodeau
Implemented a ContentProvider to be able to use Linkify to link to notes in a TextView using standard android mechanisms.
45
		
232.2.1 by Stefan Hammer
Created a Searchable Activity using the standard Android Search Dialog. Added Menu Button: Search. After Searching, a Results-List is shown. Still Missing: Costum Suggestions which update while typing
46
		<activity android:name=".ui.Search"
47
		          android:launchMode="singleTop">
48
			<intent-filter>
49
				<action android:name="android.intent.action.SEARCH" />
50
			</intent-filter>
51
			<meta-data	android:name="android.app.searchable"
52
						android:resource="@xml/searchable"/>
53
		</activity>
232.2.2 by Stefan Hammer
Added search history suggestions. Search history can be deleted in preferences.
54
		<provider	android:name=".util.SearchSuggestionProvider"
55
					android:authorities="org.tomdroid.util.SearchSuggestionProvider"
56
        />
232.2.1 by Stefan Hammer
Created a Searchable Activity using the standard Android Search Dialog. Added Menu Button: Search. After Searching, a Results-List is shown. Still Missing: Costum Suggestions which update while typing
57
		
55.1.5 by Olivier Bilodeau
Implemented a ContentProvider to be able to use Linkify to link to notes in a TextView using standard android mechanisms.
58
		<provider android:name="NoteProvider"
59
            android:authorities="org.tomdroid.notes"
60
        />
185.1.5 by Benoit Garret
Add a Preferences activity to manage the synchronization settings.
61
        
62
        <activity android:name=".ui.PreferencesActivity" android:label="@string/app_name">
185.1.25 by Rodja Trappe
Clickable sync icon; switched to RelativeLayout for the Actionbar.
63
185.1.24 by Rodja Trappe
Added sync icon to Actionbar
64
    	</activity>
221 by Olivier Bilodeau
Merged branch parsing-errors-reporting.
65
254.3.3 by Piotr Adamski
changed list caption on shortcut creation menu, added action icon on header in shortcut
66
        <activity android:name=".ui.ShortcutActivity" android:label="@string/shortcut_menu_item_caption">
254.3.1 by Piotr Adamski
'quick-n-dirty' shortcuts
67
            <intent-filter>
68
                <action android:name="android.intent.action.CREATE_SHORTCUT"/>
69
                <category android:name="android.intent.category.DEFAULT"/>
70
            </intent-filter>
71
        </activity>
72
185.2.4 by Guilherme Salgado
Get rid of lots of unnecessary boilerplate created by Eclipse when I created a separate test project
73
      <uses-library android:name="android.test.runner" />
185.1.24 by Rodja Trappe
Added sync icon to Actionbar
74
    </application>
75
    
254.3.10 by Piotr Adamski
shortcut removal logic
76
	<uses-permission android:name="android.permission.INTERNET" />
77
	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
78
    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
79
    <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />
221 by Olivier Bilodeau
Merged branch parsing-errors-reporting.
80
185.2.4 by Guilherme Salgado
Get rid of lots of unnecessary boilerplate created by Eclipse when I created a separate test project
81
<instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="org.tomdroid"></instrumentation>
82
185.1.5 by Benoit Garret
Add a Preferences activity to manage the synchronization settings.
83
</manifest>