FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ProgrammingAndroidExamples/AudioPlayer/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
/
AudioPlayer
/
AndroidManifest.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (30 loc) · 1.85 KB
Breadcrumbs
ProgrammingAndroidExamples
/
AudioPlayer
/
AndroidManifest.xml
Copy path
File metadata and controls
33 lines (30 loc) · 1.85 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
<?
xml
version
=
"
1.0
"
encoding
=
"
utf-8
"
?>
<
manifest
xmlns
:
android
=
"
http://schemas.android.com/apk/res/android
"
package
=
"
com.oreilly.demo.android.pa.audioplayer
"
android
:
versionCode
=
"
1
"
android
:
versionName
=
"
1.0
"
>
<
uses-permission
android
:
name
=
"
android.permission.RECORD_AUDIO
"
/>
<
uses-permission
android
:
name
=
"
android.permission.RECORD_VIDEO
"
/>
<
uses-permission
android
:
name
=
"
android.permission.INTERNET
"
/>
<
uses-permission
android
:
name
=
"
android.permission.CAMERA
"
/>
<
uses-permission
android
:
name
=
"
android.permission.WRITE_EXTERNAL_STORAGE
"
/>
<
uses-sdk
android
:
targetSdkVersion
=
"
14
"
></
uses-sdk
>
<
application
android
:
icon
=
"
@drawable/icon
"
android
:
label
=
"
@string/app_name
"
>
<
activity
android
:
name
=
"
.MultiMedia
"
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
=
"
.AudioPlayer
"
android
:
label
=
"
Audio Player
"
/>
<
activity
android
:
name
=
"
.AudioPlayerWAudioTrack
"
android
:
label
=
"
Audio Player W AudioTrack
"
/>
<
activity
android
:
name
=
"
.AudioPlayerWMediaController
"
android
:
label
=
"
Audio Player W MediaController
"
/>
<
activity
android
:
name
=
"
.VideoPlayer
"
android
:
label
=
"
Video Player
"
/>
<
activity
android
:
name
=
"
.VideoRecorderViaIntent
"
android
:
label
=
"
Video Recorder By Intent
"
/>
<
activity
android
:
name
=
"
.AudioRecorderViaIntent
"
android
:
label
=
"
Audio Recorder By Intent
"
/>
<
activity
android
:
name
=
"
.VideoRecorder
"
android
:
label
=
"
Video Recorder
"
/>
<
activity
android
:
name
=
"
.AudioRecorder
"
android
:
label
=
"
Audio Recorder
"
/>
<
activity
android
:
name
=
"
.AudioRecorderWAudioRecord
"
android
:
label
=
"
Audio Recorder W AudioRecord
"
/>
</
application
>
</
manifest
>
Back
|
FazBrowse Home
|
New Git URL