| | |
| | | <?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.hdl.hdlsdk">
|
| | |
|
| | | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
| | | <uses-permission android:name="android.permission.INTERNET" />
|
| | | <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
|
| | | <uses-permission
|
| | | android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
| | | tools:ignore="ScopedStorage" />
|
| | | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
| | |
|
| | | <application
|
| | | android:name=".App"
|
| | | android:allowBackup="true"
|
| | | android:icon="@mipmap/ic_launcher"
|
| | | android:label="@string/app_name"
|
| | | android:roundIcon="@mipmap/ic_launcher_round"
|
| | | android:supportsRtl="true"
|
| | | android:theme="@style/Theme.HDLSDK">
|
| | | <activity android:name=".device.DevicesListActivity"></activity>
|
| | | <activity
|
| | | android:name=".MainActivity"
|
| | | android:exported="true">
|
| | | <intent-filter>
|
| | | <action android:name="android.intent.action.MAIN" />
|
| | |
|
| | | <category android:name="android.intent.category.LAUNCHER" />
|
| | | </intent-filter>
|
| | | </activity>
|
| | | </application>
|
| | |
|
| | | <?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.hdl.hdlsdk"> |
| | | |
| | | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
| | | <uses-permission android:name="android.permission.INTERNET" /> |
| | | <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" /> |
| | | <uses-permission |
| | | android:name="android.permission.WRITE_EXTERNAL_STORAGE" |
| | | tools:ignore="ScopedStorage" /> |
| | | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| | | <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEM"/> |
| | | |
| | | <application |
| | | android:name=".App" |
| | | android:allowBackup="true" |
| | | android:icon="@mipmap/ic_launcher" |
| | | android:label="@string/app_name" |
| | | android:roundIcon="@mipmap/ic_launcher_round" |
| | | android:supportsRtl="true" |
| | | android:theme="@style/Theme.HDLSDK"> |
| | | <activity android:name=".device.DevicesListActivity"></activity> |
| | | <activity |
| | | android:name=".MainActivity" |
| | | android:exported="true"> |
| | | <intent-filter> |
| | | <action android:name="android.intent.action.MAIN" /> |
| | | |
| | | <category android:name="android.intent.category.LAUNCHER" /> |
| | | </intent-filter> |
| | | </activity> |
| | | </application> |
| | | |
| | | </manifest> |