Statistics
| Branch: | Tag: | Revision:

notecipher / AndroidManifest.xml @ 7adb7c71

History | View | Annotate | Download (1.71 KB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
 package="info.guardianproject.notepadbot" android:versionName="0.0.3" android:versionCode="2">
4
 
5
     <supports-screens android:smallScreens="true"
6
                      android:normalScreens="true"
7
                      android:largeScreens="true"
8
                      android:anyDensity="true" 
9
                       />  
10
       <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
11
                                           
12
    <application android:icon="@drawable/icon"  android:label="@string/app_name">
13
        <activity android:name=".Notepadbot" android:label="@string/app_name">
14
            <intent-filter>
15
                <action android:name="android.intent.action.MAIN" />
16
                <category android:name="android.intent.category.LAUNCHER" />
17
            </intent-filter>
18
            <intent-filter>
19
                 <action android:name="android.intent.action.SEND" />
20
                
21
                 <category android:name="android.intent.category.DEFAULT" />
22
                 <category android:name="android.intent.category.ALTERNATIVE" /> 
23
                 <category android:name="android.intent.category.SELECTED_ALTERNATIVE" /> 
24
                 
25
                 <data android:mimeType="image/*" />
26
             </intent-filter> 
27
           
28
        </activity>
29
        <activity android:name=".NoteEdit"  android:label="@string/app_name">
30
        </activity>
31
        
32
        <activity android:name=".ImageStore"  android:label="@string/app_name">
33
                
34
        </activity>
35
        
36
    </application>
37
    
38
    
39
    <uses-sdk android:minSdkVersion="7"/>
40
</manifest>