FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
livecode/engine/AndroidManifest.xml at develop · livecodeali/livecode · GitHub
livecodeali
/
livecode
Public
forked from
livecode/livecode
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
livecode
/
engine
/
AndroidManifest.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
72 lines (63 loc) · 3.05 KB
Breadcrumbs
livecode
/
engine
/
AndroidManifest.xml
Copy path
File metadata and controls
72 lines (63 loc) · 3.05 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
<?
xml
version
=
"
1.0
"
encoding
=
"
utf-8
"
?>
<
manifest
xmlns
:
android
=
"
http://schemas.android.com/apk/res/android
"
package
=
"
com.runrev.revandroid
"
>
<
permission
android
:
name
=
"
com.runrev.revandroid.permission.C2D_MESSAGE
"
android
:
protectionLevel
=
"
signature
"
/>
<
uses-permission
android
:
name
=
"
com.runrev.revandroid.permission.C2D_MESSAGE
"
/>
<
uses-permission
android
:
name
=
"
com.google.android.c2dm.permission.RECEIVE
"
/>
<
uses-permission
android
:
name
=
"
android.permission.INTERNET
"
/>
<
uses-permission
android
:
name
=
"
android.permission.CAMERA
"
/>
<
uses-permission
android
:
name
=
"
android.permission.ACCESS_NETWORK_STATE
"
/>
<
uses-permission
android
:
name
=
"
android.permission.READ_PHONE_STATE
"
/>
<
uses-permission
android
:
name
=
"
android.permission.WAKE_LOCK
"
/>
<
uses-permission
android
:
name
=
"
android.permission.READ_CONTACTS
"
/>
<
uses-permission
android
:
name
=
"
android.permission.WRITE_CONTACTS
"
/>
<
supports-screens
android
:
largeScreens
=
"
true
"
android
:
normalScreens
=
"
true
"
android
:
smallScreens
=
"
true
"
android
:
anyDensity
=
"
true
"
/>
<
application
android
:
label
=
"
revEngine on Android
"
android
:
debuggable
=
"
true
"
>
<
activity
android
:
name
=
"
.mblandroid
"
android
:
theme
=
"
@android:style/Theme.NoTitleBar
"
android
:
screenOrientation
=
"
portrait
"
android
:
configChanges
=
"
keyboardHidden|orientation
"
android
:
windowSoftInputMode
=
"
stateHidden
"
android
:
launchMode
=
"
singleTask
"
>
<
intent-filter
>
<
action
android
:
name
=
"
android.intent.action.MAIN
"
/>
<
category
android
:
name
=
"
android.intent.category.LAUNCHER
"
/>
</
intent-filter
>
<
intent-filter
>
<
action
android
:
name
=
"
android.intent.action.VIEW
"
/>
<
category
android
:
name
=
"
android.intent.category.DEFAULT
"
/>
<
category
android
:
name
=
"
android.intent.category.BROWSABLE
"
/>
<
data
android
:
scheme
=
"
runrev
"
/>
</
intent-filter
>
</
activity
>
<
provider
android
:
name
=
"
com.runrev.android.AppProvider
"
android
:
authorities
=
"
com.runrev.android.fileprovider
"
android
:
exported
=
"
false
"
android
:
grantUriPermissions
=
"
true
"
>
</
provider
>
<
activity
android
:
name
=
"
com.inneractive.api.ads.InneractiveFullScreenView
"
></
activity
>
<
service
android
:
name
=
"
AppService
"
/>
<
receiver
android
:
name
=
"
PushReceiver
"
android
:
permission
=
"
com.google.android.c2dm.permission.SEND
"
>
<
intent-filter
>
<
action
android
:
name
=
"
com.google.android.c2dm.intent.RECEIVE
"
/>
<
category
android
:
name
=
"
com.runrev.revandroid
"
/>
</
intent-filter
>
<
intent-filter
>
<
action
android
:
name
=
"
com.google.android.c2dm.intent.REGISTRATION
"
/>
<
category
android
:
name
=
"
com.runrev.revandroid
"
/>
</
intent-filter
>
</
receiver
>
<
receiver
android
:
name
=
"
AppReceiver
"
>
<
intent-filter
>
<
action
android
:
name
=
"
com.android.vending.billing.IN_APP_NOTIFY
"
/>
<
action
android
:
name
=
"
com.android.vending.billing.RESPONSE_CODE
"
/>
<
action
android
:
name
=
"
com.android.vending.billing.PURCHASE_STATE_CHANGED
"
/>
</
intent-filter
>
</
receiver
>
</
application
>
</
manifest
>
Back
|
FazBrowse Home
|
New Git URL