-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
48 lines (45 loc) · 1.93 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.benmoran.affectsampler" android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission
android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.ah" />
<uses-sdk android:minSdkVersion="3" />
<application android:icon="@drawable/nuvoladrama"
android:label="@string/app_name">
<uses-library android:name="android.test.runner" />
<provider android:name="AffectProvider"
android:authorities="net.benmoran.provider.AffectSampleStore" />
<activity android:name="org.achartengine.GraphicalActivity" />
<activity android:name=".AffectSampler" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".AffectPreferences" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<service android:name=".SyncService">
</service>
<receiver android:name=".AlarmSetStartupReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name=".SampleNotificationReceiver">
<intent-filter>
<action android:name="net.benmoran.affectsampler.SCHEDULED_SAMPLE" />
</intent-filter>
</receiver>
</application>
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="net.benmoran.affectsampler" android:label="Affect Sampler tests">
</instrumentation>
</manifest>