Add "org.eclipse.paho" Mqtt Client

This commit is contained in:
2024-03-07 23:33:24 +01:00
parent 4eb15845b3
commit 21f535bd59
4 changed files with 141 additions and 11 deletions

View File

@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Store"
tools:targetApi="31">
<application android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Store"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true"
@@ -16,10 +16,8 @@
android:theme="@style/Theme.Store.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>