|
@@ -1,62 +1,71 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- xmlns:tools="http://schemas.android.com/tools"
|
|
|
- package="com.sybotan.android.demo">
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ package="com.sybotan.android.demo">
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
|
|
- <uses-permission android:name="android.permission.INTERNET"/>
|
|
|
- <uses-permission android:name="android.permission.BLUETOOTH"/> <!-- SD卡中创建与删除文件权限 -->
|
|
|
+ <uses-permission android:name="android.permission.INTERNET" />
|
|
|
+ <uses-permission android:name="android.permission.BLUETOOTH" /> <!-- SD卡中创建与删除文件权限 -->
|
|
|
<uses-permission
|
|
|
- android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
|
|
|
- tools:ignore="ProtectedPermissions"/> <!-- 向SDCard写入数据权限 -->
|
|
|
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <!-- 摄像头 -->
|
|
|
- <uses-permission android:name="android.permission.CAMERA"/>
|
|
|
+ android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
|
|
|
+ tools:ignore="ProtectedPermissions" /> <!-- 向SDCard写入数据权限 -->
|
|
|
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- 摄像头 -->
|
|
|
+ <uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
|
- <uses-feature android:name="android.hardware.camera"/>
|
|
|
- <uses-feature android:name="android.hardware.camera.autofocus"/>
|
|
|
+ <uses-feature android:name="android.hardware.camera" />
|
|
|
+ <uses-feature android:name="android.hardware.camera.autofocus" />
|
|
|
|
|
|
|
|
|
<application
|
|
|
- android:name=".DemoApp"
|
|
|
- android:allowBackup="true"
|
|
|
- android:icon="@mipmap/ic_launcher"
|
|
|
- android:label="@string/app_name"
|
|
|
- android:networkSecurityConfig="@xml/network_security_config"
|
|
|
- android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
- android:supportsRtl="true"
|
|
|
- android:theme="@style/AppTheme">
|
|
|
- <activity android:name=".activities.poc.RelationActivity">
|
|
|
- </activity>
|
|
|
+ android:name=".DemoApp"
|
|
|
+ android:allowBackup="true"
|
|
|
+ android:icon="@mipmap/ic_launcher"
|
|
|
+ android:label="@string/app_name"
|
|
|
+ android:networkSecurityConfig="@xml/network_security_config"
|
|
|
+ android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
+ android:supportsRtl="true"
|
|
|
+ android:theme="@style/AppTheme">
|
|
|
<activity
|
|
|
- android:name=".activities.poc.RecordInfoActivity"
|
|
|
- android:exported="true"/>
|
|
|
+ android:name=".activities.poc.RelationActivity"
|
|
|
+ android:exported="true"></activity>
|
|
|
<activity
|
|
|
- android:name=".activities.poc.DeviceTypeActivity"
|
|
|
- android:exported="true"/>
|
|
|
+ android:name=".activities.poc.RecordInfoActivity"
|
|
|
+ android:exported="true" />
|
|
|
<activity
|
|
|
- android:name=".activities.poc.DeviceActivity"
|
|
|
- android:exported="true">
|
|
|
- </activity>
|
|
|
+ android:name=".activities.poc.DeviceTypeActivity"
|
|
|
+ android:exported="true" />
|
|
|
<activity
|
|
|
- android:name=".activities.poc.SceneActivity"
|
|
|
- android:exported="true"/>
|
|
|
+ android:name=".activities.poc.DeviceActivity"
|
|
|
+ android:exported="true"></activity>
|
|
|
<activity
|
|
|
- android:name=".activities.poc.SpaceActivity"
|
|
|
- android:exported="true"/>
|
|
|
- <activity android:name=".activities.MainActivity">
|
|
|
- </activity>
|
|
|
- <activity android:name=".activities.GraphyActivity"/>
|
|
|
- <activity android:name=".activities.WebViewActivity"/>
|
|
|
- <activity android:name=".activities.PocActivity">
|
|
|
+ android:name=".activities.poc.SceneActivity"
|
|
|
+ android:exported="true" />
|
|
|
+ <activity
|
|
|
+ android:name=".activities.poc.SpaceActivity"
|
|
|
+ android:exported="true" />
|
|
|
+ <activity
|
|
|
+ android:name=".activities.MainActivity"
|
|
|
+ android:exported="true"></activity>
|
|
|
+ <activity
|
|
|
+ android:name=".activities.GraphyActivity"
|
|
|
+ android:exported="true" />
|
|
|
+ <activity
|
|
|
+ android:name=".activities.WebViewActivity"
|
|
|
+ android:exported="true" />
|
|
|
+ <activity
|
|
|
+ android:name=".activities.PocActivity"
|
|
|
+ android:exported="true">
|
|
|
<intent-filter>
|
|
|
- <action android:name="android.intent.action.MAIN"/>
|
|
|
+ <action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
- <category android:name="android.intent.category.LAUNCHER"/>
|
|
|
+ <category android:name="android.intent.category.LAUNCHER" />
|
|
|
</intent-filter>
|
|
|
</activity>
|
|
|
- <activity android:name="com.zbar.lib.CaptureActivity"/>
|
|
|
+ <activity
|
|
|
+ android:name="com.zbar.lib.CaptureActivity"
|
|
|
+ android:exported="true" />
|
|
|
</application>
|
|
|
|
|
|
</manifest>
|