storymaker / app / AndroidManifest.xml @ 63bcd6ca
History | View | Annotate | Download (11.8 KB)
| 1 |
<?xml version="1.0" encoding="utf-8"?>
|
|---|---|
| 2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 |
xmlns:tools="http://schemas.android.com/tools" |
| 4 |
package="org.storymaker.app" |
| 5 |
android:installLocation="auto" |
| 6 |
android:versionCode="1100" |
| 7 |
android:versionName="2.1.5"> |
| 8 |
|
| 9 |
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
| 10 |
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
| 11 |
<uses-permission android:name="android.permission.INTERNET" /> |
| 12 |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 13 |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 14 |
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 15 |
<uses-permission android:name="android.permission.READ_MEDIA_STORAGE" android:required="false" /> |
| 16 |
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" android:required="false" /> |
| 17 |
<uses-permission android:name="android.permission.CAMERA" /> |
| 18 |
<uses-permission android:name="android.permission.RECORD_AUDIO" /> |
| 19 |
<uses-permission android:name="android.permission.WAKE_LOCK" android:required="false" /> |
| 20 |
<uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 21 |
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
| 22 |
<uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 23 |
<uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" android:required="false" /> |
| 24 |
<uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.youtube" android:required="false" /> |
| 25 |
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" /> |
| 26 |
|
| 27 |
<uses-permission android:name="android.permission.READ_LOGS" /> |
| 28 |
|
| 29 |
<uses-feature android:name="android.hardware.camera" android:required="false" /> |
| 30 |
|
| 31 |
<supports-screens
|
| 32 |
android:anyDensity="true" |
| 33 |
android:largeScreens="true" |
| 34 |
android:normalScreens="true" |
| 35 |
android:resizeable="true" |
| 36 |
android:smallScreens="true" |
| 37 |
android:xlargeScreens="true" /> |
| 38 |
|
| 39 |
<application
|
| 40 |
android:name="org.storymaker.app.StoryMakerApp" |
| 41 |
android:configChanges="orientation|keyboardHidden|screenSize|locale" |
| 42 |
android:icon="@drawable/ic_launcher" |
| 43 |
android:label="@string/app_name" |
| 44 |
android:description="@string/app_description" |
| 45 |
android:largeHeap="true" |
| 46 |
android:supportsRtl="true" |
| 47 |
tools:replace="android:name"> |
| 48 |
<activity
|
| 49 |
android:name="org.storymaker.app.server.LoginActivity" |
| 50 |
android:configChanges="locale" |
| 51 |
android:screenOrientation="portrait" |
| 52 |
android:windowSoftInputMode="stateHidden" > |
| 53 |
</activity>
|
| 54 |
<!-- Entry for RegisterActivity.class -->
|
| 55 |
<activity
|
| 56 |
android:name="org.storymaker.app.server.RegisterActivity" |
| 57 |
android:label="Register New Account" > |
| 58 |
</activity>
|
| 59 |
<activity
|
| 60 |
android:name="org.storymaker.app.HomeActivity" |
| 61 |
android:configChanges="locale" |
| 62 |
android:screenOrientation="portrait" |
| 63 |
android:label="@string/app_name" |
| 64 |
android:launchMode="singleTop" > |
| 65 |
<!--
|
| 66 |
<intent-filter android:label="@string/app_name" >
|
| 67 |
<action android:name="android.intent.action.MAIN" />
|
| 68 |
<category android:name="android.intent.category.LAUNCHER" />
|
| 69 |
</intent-filter>
|
| 70 |
-->
|
| 71 |
</activity>
|
| 72 |
<activity-alias
|
| 73 |
android:name=".Launcher" |
| 74 |
android:label="@string/app_name" |
| 75 |
android:targetActivity="org.storymaker.app.HomeActivity"> |
| 76 |
<intent-filter android:label="@string/app_name" > |
| 77 |
<action android:name="android.intent.action.MAIN" /> |
| 78 |
<category android:name="android.intent.category.LAUNCHER" /> |
| 79 |
</intent-filter>
|
| 80 |
</activity-alias>
|
| 81 |
|
| 82 |
<activity
|
| 83 |
android:name="org.storymaker.app.CatalogActivity" |
| 84 |
android:configChanges="locale" |
| 85 |
android:label="@string/title_catalog" |
| 86 |
android:screenOrientation="portrait" > |
| 87 |
<meta-data
|
| 88 |
android:name="android.support.PARENT_ACTIVITY" |
| 89 |
android:value=".HomeActivity" /> |
| 90 |
</activity>
|
| 91 |
<activity
|
| 92 |
android:name="org.storymaker.app.ProjectsActivity" |
| 93 |
android:configChanges="locale" |
| 94 |
android:label="@string/title_exports" |
| 95 |
android:launchMode="singleTop" > |
| 96 |
<meta-data
|
| 97 |
android:name="android.support.PARENT_ACTIVITY" |
| 98 |
android:value=".HomeActivity" /> |
| 99 |
</activity>
|
| 100 |
<activity
|
| 101 |
android:name="org.storymaker.app.SceneEditorActivity" |
| 102 |
android:configChanges="orientation|screenSize" |
| 103 |
android:label="@string/title_activity_scene_editor" > |
| 104 |
<meta-data
|
| 105 |
android:name="android.support.PARENT_ACTIVITY" |
| 106 |
android:value=".ProjectsActivity" /> |
| 107 |
</activity>
|
| 108 |
<activity android:name="org.storymaker.app.server.WebViewActivity" /> |
| 109 |
<activity
|
| 110 |
android:name="org.storymaker.app.media.MediaProjectManager" |
| 111 |
android:configChanges="orientation|keyboardHidden|screenSize" > |
| 112 |
</activity>
|
| 113 |
<activity android:name="org.storymaker.app.SimplePreferences" /> |
| 114 |
<activity
|
| 115 |
android:name="org.storymaker.app.media.OverlayCameraActivity" |
| 116 |
android:screenOrientation="landscape" /> |
| 117 |
|
| 118 |
<provider
|
| 119 |
android:name="org.storymaker.app.db.ProjectsProvider" |
| 120 |
android:authorities="org.storymaker.app.db.ProjectsProvider" |
| 121 |
android:exported="false" |
| 122 |
android:multiprocess="true" > |
| 123 |
</provider>
|
| 124 |
|
| 125 |
<service
|
| 126 |
android:name="org.storymaker.app.publish.PublishService" |
| 127 |
android:exported="false" > |
| 128 |
</service>
|
| 129 |
|
| 130 |
<activity
|
| 131 |
android:name="info.guardianproject.onionkit.ui.CertDisplayActivity" |
| 132 |
android:configChanges="locale|screenSize|orientation" |
| 133 |
android:taskAffinity="" |
| 134 |
android:theme="@android:style/Theme.Dialog" /> |
| 135 |
<activity android:name="net.hockeyapp.android.UpdateActivity" /> |
| 136 |
<activity android:name="net.hockeyapp.android.FeedbackActivity" /> |
| 137 |
<activity
|
| 138 |
android:name="org.storymaker.app.AccountsActivity" |
| 139 |
android:label="@string/title_activity_accounts" |
| 140 |
android:screenOrientation="portrait"> |
| 141 |
</activity>
|
| 142 |
<activity
|
| 143 |
android:name="org.storymaker.app.StoryInfoActivity" |
| 144 |
android:label="@string/title_activity_story_info" |
| 145 |
android:theme="@style/PopupTheme" |
| 146 |
android:screenOrientation="portrait"> |
| 147 |
<meta-data
|
| 148 |
android:name="android.support.PARENT_ACTIVITY" |
| 149 |
android:value=".SceneEditorActivity" /> |
| 150 |
</activity>
|
| 151 |
<activity
|
| 152 |
android:name="org.storymaker.app.StoryInfoEditActivity" |
| 153 |
android:label="@string/title_activity_story_info_edit" |
| 154 |
android:theme="@style/PopupTheme" |
| 155 |
android:screenOrientation="portrait"> |
| 156 |
<meta-data
|
| 157 |
android:name="android.support.PARENT_ACTIVITY" |
| 158 |
android:value=".StoryInfoActivity" /> |
| 159 |
</activity>
|
| 160 |
<activity
|
| 161 |
android:name="org.storymaker.app.ProjectTagFragment" |
| 162 |
android:label="@string/title_activity_project_tag_fragment" |
| 163 |
android:parentActivityName="android.support.v4.app.FragmentActivity" |
| 164 |
android:screenOrientation="portrait" > |
| 165 |
<meta-data
|
| 166 |
android:name="android.support.PARENT_ACTIVITY" |
| 167 |
android:value="android.support.v4.app.FragmentActivity" /> |
| 168 |
</activity>
|
| 169 |
<activity
|
| 170 |
android:name="org.storymaker.app.FirstStartActivity" |
| 171 |
android:screenOrientation="portrait"> |
| 172 |
</activity>
|
| 173 |
<activity
|
| 174 |
android:name="org.storymaker.app.server.WordPressAuthWebViewActivity" |
| 175 |
android:screenOrientation="portrait"> |
| 176 |
</activity>
|
| 177 |
<activity
|
| 178 |
android:name="io.scal.secureshareui.login.FacebookLoginActivity" |
| 179 |
android:screenOrientation="portrait"> |
| 180 |
</activity>
|
| 181 |
<activity
|
| 182 |
android:name="io.scal.secureshareui.login.FlickrLoginActivity" |
| 183 |
android:screenOrientation="portrait"> |
| 184 |
</activity>
|
| 185 |
<activity
|
| 186 |
android:name="io.scal.secureshareui.login.FlickrWebActivity" |
| 187 |
android:screenOrientation="portrait"> |
| 188 |
</activity>
|
| 189 |
<activity
|
| 190 |
android:name="io.scal.secureshareui.login.SoundCloudLoginActivity" |
| 191 |
android:theme="@style/PopupTheme" |
| 192 |
android:screenOrientation="portrait"> |
| 193 |
</activity>
|
| 194 |
<activity
|
| 195 |
android:name="io.scal.secureshareui.login.SSHLoginActivity" |
| 196 |
android:screenOrientation="portrait"> |
| 197 |
</activity>
|
| 198 |
<activity
|
| 199 |
android:name="io.scal.secureshareui.login.YoutubeLoginActivity" |
| 200 |
android:screenOrientation="portrait"> |
| 201 |
</activity>
|
| 202 |
<activity
|
| 203 |
android:name="io.scal.secureshareui.login.ArchiveLoginActivity" |
| 204 |
android:screenOrientation="portrait"> |
| 205 |
</activity>
|
| 206 |
<activity
|
| 207 |
android:name="com.facebook.LoginActivity" |
| 208 |
android:screenOrientation="portrait"> |
| 209 |
</activity>
|
| 210 |
<activity
|
| 211 |
android:name="io.scal.secureshareui.login.ZTLoginActivity" |
| 212 |
android:screenOrientation="portrait"> |
| 213 |
</activity>
|
| 214 |
<activity
|
| 215 |
android:name="io.scal.secureshareui.login.ZTWebActivity" |
| 216 |
android:screenOrientation="portrait"> |
| 217 |
</activity>
|
| 218 |
<activity
|
| 219 |
android:name="org.storymaker.app.ConnectAccountActivity" |
| 220 |
android:label="@string/title_activity_connect_account" |
| 221 |
android:screenOrientation="portrait" |
| 222 |
android:theme="@style/PopupTheme"> |
| 223 |
</activity>
|
| 224 |
|
| 225 |
<activity
|
| 226 |
android:name="io.scal.secureshareui.lib.ArchiveMetadataActivity" |
| 227 |
android:label="@string/title_activity_press_secure" |
| 228 |
android:theme="@style/PopupTheme" > |
| 229 |
</activity>
|
| 230 |
|
| 231 |
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/app_id"/> |
| 232 |
|
| 233 |
|
| 234 |
<activity
|
| 235 |
android:name="org.storymaker.app.PublishActivity" |
| 236 |
android:label="@string/title_activity_publish" |
| 237 |
android:screenOrientation="portrait"> |
| 238 |
<intent-filter>
|
| 239 |
<action android:name="io.scal.liger.PUBLISH" /> |
| 240 |
<category android:name="android.intent.category.DEFAULT"/> |
| 241 |
</intent-filter>
|
| 242 |
<meta-data
|
| 243 |
android:name="android.support.PARENT_ACTIVITY" |
| 244 |
android:value=".HomeActivity" /> |
| 245 |
</activity>
|
| 246 |
|
| 247 |
<activity
|
| 248 |
android:name=".SMPanicResponderActivity" |
| 249 |
android:noHistory="true" |
| 250 |
android:theme="@android:style/Theme.NoDisplay"> |
| 251 |
<intent-filter>
|
| 252 |
<action
|
| 253 |
android:name="info.guardianproject.panic.action.TRIGGER" /> |
| 254 |
<category android:name="android.intent.category.DEFAULT" /> |
| 255 |
</intent-filter>
|
| 256 |
</activity>
|
| 257 |
<activity
|
| 258 |
android:name=".ExitActivity" |
| 259 |
android:noHistory="true" |
| 260 |
android:theme="@android:style/Theme.NoDisplay" /> |
| 261 |
|
| 262 |
<!-- NEW/CACHEWORD -->
|
| 263 |
<service android:name="info.guardianproject.cacheword.CacheWordService" |
| 264 |
android:enabled="true" |
| 265 |
android:exported="false"/> |
| 266 |
|
| 267 |
<activity android:name="org.storymaker.app.CacheWordActivity"/> |
| 268 |
|
| 269 |
<receiver android:name=".LaunchViaDialReceiver" > |
| 270 |
<intent-filter>
|
| 271 |
<action android:name="android.intent.action.NEW_OUTGOING_CALL" /> |
| 272 |
</intent-filter>
|
| 273 |
</receiver>
|
| 274 |
</application>
|
| 275 |
|
| 276 |
</manifest>
|