mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-29 18:45:40 -05:00
16ee3f9213
Fixes #233
61 lines
2.7 KiB
XML
61 lines
2.7 KiB
XML
<?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"/>
|
|
|
|
|
|
<uses-feature android:name="android.hardware.camera" android:required="false" />
|
|
<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" />
|
|
<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 >
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:mimeType="@string/share_mimetype" />
|
|
<data android:pathPattern="@string/share_extension_filter" />
|
|
<data android:host="*" />
|
|
<data android:scheme="file" />
|
|
<data android:scheme="content" />
|
|
</intent-filter>
|
|
</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>
|