scratchjr/android/ScratchJr/app/src/main/AndroidManifest.xml

87 lines
4.2 KiB
XML
Raw Normal View History

2016-01-08 14:31:04 -05:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.scratchjr.android">
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
2018-11-22 09:23:36 -05:00
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
2016-01-08 14:31:04 -05:00
<uses-feature android:name="android.hardware.camera" android:required="false" />
2016-05-09 10:59:44 -04:00
<uses-feature android:name="android.hardware.microphone" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="true" />
<supports-screens android:requiresSmallestWidthDp="600" />
2016-01-08 14:31:04 -05:00
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:hardwareAccelerated="true">
<provider android:name="ShareContentProvider"
android:grantUriPermissions="true"
android:authorities="${applicationId}.ShareContentProvider">
</provider>
<activity
android:name=".ScratchJrActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize"
android:configChanges="keyboard|keyboardHidden"
android:theme="@style/FullscreenTheme"
android:launchMode="singleTask" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter >
2016-01-08 14:31:04 -05:00
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2018-11-22 09:23:36 -05:00
<data android:scheme="file" />
<data android:mimeType="*/*" />
2016-01-08 14:31:04 -05:00
<data android:pathPattern="@string/share_extension_filter" />
<!-- These additional pathPattern blocks are to allow for paths with
additional periods in them. See:
http://stackoverflow.com/questions/3400072/pathpattern-to-match-file-extension-does-not-work-if-a-period-exists-elsewhere-i/8599921 -->
<data android:pathPattern=".*\\..*\\.sjr"/>
<data android:pathPattern=".*\\..*\\..*\\.sjr"/>
<data android:pathPattern=".*\\..*\\..*\\..*\\.sjr"/>
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.sjr"/>
2016-01-08 14:31:04 -05:00
<data android:host="*" />
</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="file" />
<data android:scheme="content" />
<data android:mimeType="@string/share_mimetype" />
<data android:host="*" />
2016-01-08 14:31:04 -05:00
</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="file" />
<data android:scheme="content" />
<data android:mimeType="application/octet-stream" />
<data android:host="*" />
</intent-filter>
2016-01-08 14:31:04 -05:00
</activity>
<receiver android:name="com.google.android.gms.analytics.AnalyticsReceiver"
android:enabled="true">
<intent-filter>
<action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" />
</intent-filter>
</receiver>
<service android:name="com.google.android.gms.analytics.AnalyticsService"
android:enabled="true"
android:exported="false"/>
</application>
</manifest>