的
This commit is contained in:
@@ -0,0 +1,105 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--*************************************************************************-->
|
||||
<!-- SCICHART® Copyright SciChart Ltd. 2011-2022. All rights reserved. -->
|
||||
<!-- -->
|
||||
<!-- Web: http://www.scichart.com -->
|
||||
<!-- Support: support@scichart.com -->
|
||||
<!-- Sales: sales@scichart.com -->
|
||||
<!-- -->
|
||||
<!-- AndroidManifest.xml is part of SCICHART®, High Performance Scientific Charts -->
|
||||
<!-- For full terms and conditions of the license, see http://www.scichart.com/scichart-eula/ -->
|
||||
<!-- -->
|
||||
<!-- This source code is protected by international copyright law. Unauthorized -->
|
||||
<!-- reproduction, reverse-engineering, or distribution of all or any portion of -->
|
||||
<!-- this source code is strictly prohibited. -->
|
||||
<!-- -->
|
||||
<!-- This source code contains confidential and proprietary trade secrets of -->
|
||||
<!-- SciChart Ltd., and should at no time be copied, transferred, sold, -->
|
||||
<!-- distributed or made available without express written permission. -->
|
||||
<!--*************************************************************************-->
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<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-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" />
|
||||
|
||||
<application
|
||||
android:name=".SciChartApp"
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:label="@string/app_name"
|
||||
android:largeHeap="true"
|
||||
android:theme="@style/AppTheme"
|
||||
tools:replace="android:allowBackup">
|
||||
|
||||
|
||||
<activity
|
||||
android:name=".StartupActivity"
|
||||
android:label="@string/app_name"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".HomeActivity"
|
||||
android:label="@string/title_activity_example"
|
||||
android:parentActivityName=".StartupActivity">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value=".StartupActivity" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".ExampleActivity"
|
||||
android:label="@string/title_activity_example"
|
||||
android:parentActivityName=".HomeActivity">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value=".HomeActivity" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".Example3DActivity"
|
||||
android:label="@string/title_activity_example"
|
||||
android:parentActivityName=".HomeActivity">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value=".HomeActivity" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".ShowcaseActivity"
|
||||
android:label="@string/title_activity_example"
|
||||
android:parentActivityName=".HomeActivity">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value=".HomeActivity" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".ExceptionActivity"
|
||||
android:theme="@style/Theme_Dialog" />
|
||||
|
||||
<provider
|
||||
android:name=".demo.SciChartFilesProvider"
|
||||
android:authorities="com.scichart.examples.demo.SciChartFilesProvider"
|
||||
android:exported="false"
|
||||
android:grantUriPermissions="true">
|
||||
<meta-data
|
||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||
android:resource="@xml/provider_paths"/>
|
||||
</provider>
|
||||
|
||||
</application>
|
||||
</manifest>
|
||||
Reference in New Issue
Block a user