FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ProgrammingAndroidExamples/SensorDemos/AndroidManifest.xml at master · bmeike/ProgrammingAndroidExamples · GitHub
bmeike
/
ProgrammingAndroidExamples
Public
Notifications
You must be signed in to change notification settings
Fork
99
Star
211
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
ProgrammingAndroidExamples
/
SensorDemos
/
AndroidManifest.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
81 lines (74 loc) · 3.3 KB
Breadcrumbs
ProgrammingAndroidExamples
/
SensorDemos
/
AndroidManifest.xml
Copy path
File metadata and controls
81 lines (74 loc) · 3.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?
xml
version
=
"
1.0
"
encoding
=
"
utf-8
"
?>
<
manifest
xmlns
:
android
=
"
http://schemas.android.com/apk/res/android
"
package
=
"
com.oreilly.demo.android.pa.sensordemo
"
android
:
versionCode
=
"
1
"
android
:
versionName
=
"
1.0
"
>
<!--
Change the uses-sdk to
<uses-sdk android:minSdkVersion="9" />
to run on a 2.3.1 device and be able to
detect android.nfc.action.NDEF_DISCOVERED intents (and thus read a nfc tag)
-->
<
uses-sdk
android
:
minSdkVersion
=
"
10
"
/>
<
uses-feature
android
:
name
=
"
android.hardware.nfc
"
android
:
required
=
"
true
"
/>
<
uses-permission
android
:
name
=
"
android.permission.NFC
"
/>
<
uses-permission
android
:
name
=
"
android.permission.WRITE_EXTERNAL_STORAGE
"
/>
<
uses-permission
android
:
name
=
"
android.permission.VIBRATE
"
/>
<
application
android
:
icon
=
"
@drawable/icon
"
android
:
label
=
"
@string/app_name
"
>
<
activity
android
:
name
=
"
.MainActivity
"
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
=
"
.GestureView
"
/>
<
activity
android
:
name
=
"
.GestureAdd
"
/>
<
activity
android
:
name
=
"
.SensorAccel
"
/>
<
activity
android
:
name
=
"
.SensorGyro
"
/>
<
activity
android
:
name
=
"
.SensorLight
"
/>
<
activity
android
:
name
=
"
.SensorMagnetic
"
/>
<
activity
android
:
name
=
"
.SensorRotationVector
"
/>
<
activity
android
:
name
=
"
.SensorPressure
"
/>
<
activity
android
:
name
=
"
.SensorProximity
"
/>
<
activity
android
:
name
=
"
.SensorTemp
"
/>
<
activity
android
:
name
=
"
.SensorLinearAcceleration
"
/>
<
activity
android
:
name
=
"
.SensorGravity
"
/>
<
activity
android
:
name
=
"
.NFC
"
android
:
theme
=
"
@android:style/Theme.Dialog
"
>
<
intent-filter
>
<
action
android
:
name
=
"
android.nfc.action.TAG_DISCOVERED
"
/>
<
category
android
:
name
=
"
android.intent.category.DEFAULT
"
/>
</
intent-filter
>
</
activity
>
<
activity
android
:
name
=
"
.NFC233
"
>
<!--
listen for android.nfc.action.NDEF_DISCOVERED
-->
<
intent-filter
>
<
action
android
:
name
=
"
android.nfc.action.NDEF_DISCOVERED
"
/>
<
data
android
:
mimeType
=
"
text/*
"
/>
</
intent-filter
>
<!--
Add a technology filter - Be sure to comment out the
android.nfc.action.NDEF_DISCOVERED intent-filter or else
that will get preference
-->
<
intent-filter
>
<
action
android
:
name
=
"
android.nfc.action.TECH_DISCOVERED
"
/>
</
intent-filter
>
<
meta-data
android
:
name
=
"
android.nfc.action.TECH_DISCOVERED
"
android
:
resource
=
"
@xml/nfcfilter
"
/>
</
activity
>
<
activity
android
:
name
=
"
.NFC40
"
>
<
intent-filter
>
<
action
android
:
name
=
"
android.nfc.action.NDEF_DISCOVERED
"
/>
<
category
android
:
name
=
"
android.intent.category.DEFAULT
"
/>
<
data
android
:
mimeType
=
"
application/com.oreilly.demo.android.pa.sensordemo
"
/>
</
intent-filter
>
</
activity
>
<
service
android
:
name
=
"
.Accessibility
"
>
<
intent-filter
>
<
action
android
:
name
=
"
android.accessibilityservice.AccessibilityService
"
/>
</
intent-filter
>
</
service
>
</
application
>
</
manifest
>
Back
|
FazBrowse Home
|
New Git URL