-
Notifications
You must be signed in to change notification settings - Fork 22
/
AndroidManifest.xml
120 lines (105 loc) · 4.29 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.aviary.android.feather"
android:versionCode="1"
android:versionName="1.0">
<!--
minimum supported version by the Aviary-SDK is android-9
target version must be android-19
-->
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19"/>
<!-- REQUIRED PERMISSIONS -->
<!-- <uses-permission android:name="android.permission.INTERNET" /> -->
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> -->
<!-- OPTIONAL PERMISSIONS -->
<!-- This permission is not required, but recommended -->
<!-- <uses-permission android:name="android.permission.VIBRATE" /> -->
<!-- For PCN only partners -->
<!-- You need these permissions in order to enable the in-app billing -->
<!-- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> -->
<!-- <uses-permission android:name="com.android.vending.BILLING" /> -->
<application>
<!-- Main SDK Editor -->
<!--
<activity
android:name="com.aviary.android.feather.FeatherActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:finishOnTaskLaunch="true"
android:hardwareAccelerated="true"
android:process=":aviarysdk"
android:screenOrientation="unspecified"
android:theme="@style/AviaryTheme"
android:uiOptions="splitActionBarWhenNarrow" />
-->
<!-- Alert Activity-->
<!--
<activity
android:name="com.aviary.android.feather.AlertActivity"
android:launchMode="standard"
android:noHistory="true"
android:theme="@style/AviaryTheme.Dialog">
<intent-filter>
<action android:name="aviary.intent.action.ALERT"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
-->
<!--
Required for the hi-res image processing
The "android:authorities" attribute must be unique, so please use your app's package path in this way:
android:authorities="{your.package.name}.HiResProvider"
-->
<!--
<provider
android:name="com.aviary.android.feather.library.providers.FeatherContentProvider"
android:exported="false"
android:authorities="com.aviary.launcher3d.HiResProvider"
android:process=":aviarysdk">
</provider>
-->
<!-- CDS Content Service -->
<!--
<service
android:process=":aviarycds"
android:name="com.aviary.android.feather.cds.AviaryCdsService"
android:exported="false">
<intent-filter>
<action android:name="aviary.intent.action.CDS_DOWNLOAD_START"/>
<action android:name="aviary.intent.action.CDS_RESTORE_USER_ITEMS"/>
</intent-filter>
</service>
-->
<!--
Cds Content Provider,
NOTE that the "authorities" value MUST be formatted in this way:
android:authorities="{your.packagename}.AviaryCdsProvider"
-->
<!--
<provider
android:name="com.aviary.android.feather.cds.AviaryCdsProvider"
android:authorities="com.aviary.launcher3d.AviaryCdsProvider"
android:process=":aviarycds"
android:exported="false"
android:syncable="true" />
-->
<!-- CDS Download Receiver -->
<!--
<receiver
android:name="com.aviary.android.feather.cds.AviaryCdsReceiver"
android:process=":aviarycds" >
<intent-filter>
<action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
</intent-filter>
</receiver>
-->
<!--
get your Aviary API Key for free at http://aviary.com/android
and uncomment the following section, replacing "your_api_key_here" with your api key
-->
<!--
<meta-data
android:name="com.aviary.android.feather.v1.API_KEY"
android:value="XXXXXXXXXXXXXX" />
-->
</application>
</manifest>