如何修复“android.support.v4.content.LocalBroadcastManager”导入错误jetpack撰写和MqttService.java

ia2d9nvy  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(132)

如何修复jetpack compose中MqttService.java类中的导入错误“android.support.v4.content.LocalBroadcastManager”我试图使用mqtt和android,但我有这个错误
这是我的乘客名单

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools">
  4. <uses-permission android:name="android.permission.INTERNET" />
  5. <uses-permission android:name="android.permission.WAKE_LOCK" />
  6. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  7. <application
  8. android:allowBackup="true"
  9. android:dataExtractionRules="@xml/data_extraction_rules"
  10. android:fullBackupContent="@xml/backup_rules"
  11. android:icon="@mipmap/ic_launcher"
  12. android:label="@string/app_name"
  13. android:roundIcon="@mipmap/ic_launcher_round"
  14. android:supportsRtl="true"
  15. android:theme="@style/Theme.Teste"
  16. tools:targetApi="31">
  17. <service android:name="org.eclipse.paho.android.service.MqttService" />
  18. <activity
  19. android:name=".MainActivity"
  20. android:exported="true"
  21. android:label="@string/app_name"
  22. android:theme="@style/Theme.Teste">
  23. <intent-filter>
  24. <action android:name="android.intent.action.MAIN" />
  25. <category android:name="android.intent.category.LAUNCHER" />
  26. </intent-filter>
  27. </activity>
  28. </application>
  29. </manifest>

字符串
build.gradle.kts:

  1. plugins {
  2. id("com.android.application")
  3. id("org.jetbrains.kotlin.android")
  4. }
  5. android {
  6. namespace = "com.example.teste"
  7. compileSdk = 34
  8. defaultConfig {
  9. applicationId = "com.example.teste"
  10. minSdk = 21
  11. targetSdk = 34
  12. versionCode = 1
  13. versionName = "1.0"
  14. testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  15. vectorDrawables {
  16. useSupportLibrary = true
  17. }
  18. }
  19. buildTypes {
  20. release {
  21. isMinifyEnabled = false
  22. proguardFiles(
  23. getDefaultProguardFile("proguard-android-optimize.txt"),
  24. "proguard-rules.pro"
  25. )
  26. }
  27. }
  28. compileOptions {
  29. sourceCompatibility = JavaVersion.VERSION_1_8
  30. targetCompatibility = JavaVersion.VERSION_1_8
  31. }
  32. kotlinOptions {
  33. jvmTarget = "1.8"
  34. }
  35. buildFeatures {
  36. compose = true
  37. }
  38. composeOptions {
  39. kotlinCompilerExtensionVersion = "1.4.3"
  40. }
  41. packaging {
  42. resources {
  43. excludes += "/META-INF/{AL2.0,LGPL2.1}"
  44. }
  45. }
  46. }
  47. dependencies {
  48. implementation("androidx.core:core-ktx:1.12.0")
  49. implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
  50. implementation("androidx.activity:activity-compose:1.8.2")
  51. implementation(platform("androidx.compose:compose-bom:2023.03.00"))
  52. implementation("androidx.compose.ui:ui")
  53. implementation("androidx.compose.ui:ui-graphics")
  54. implementation("androidx.compose.ui:ui-tooling-preview")
  55. implementation("androidx.compose.material3:material3")
  56. testImplementation("junit:junit:4.13.2")
  57. androidTestImplementation("androidx.test.ext:junit:1.1.5")
  58. androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
  59. androidTestImplementation(platform("androidx.compose:compose-bom:2023.03.00"))
  60. androidTestImplementation("androidx.compose.ui:ui-test-junit4")
  61. debugImplementation("androidx.compose.ui:ui-tooling")
  62. debugImplementation("androidx.compose.ui:ui-test-manifest")
  63. implementation("org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5")
  64. implementation("org.eclipse.paho:org.eclipse.paho.android.service:1.1.1")
  65. implementation ("androidx.appcompat:appcompat:1.6.1")
  66. implementation ("com.google.android.material:material:1.11.0")
  67. }


错误类型:

  1. at android.app.ActivityThread.main(ActivityThread.java:8058)
  2. at java.lang.reflect.Method.invoke(Native Method)
  3. at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)
  4. at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1026)
  5. Caused by: java.lang.ClassNotFoundException: Didn't find class "android.support.v4.content.LocalBroadcastManager" on path: DexPathList[[zip file "/data/app/~~JLox8OfsuMwxW3mCVxrEjg==/com.example.teste--Ik6OrSbSVdnTemMoaxLtg==/base.apk"],nativeLibraryDirectories=[/data/app/~~JLox8OfsuMwxW3mCVxrEjg==/com.example.teste--Ik6OrSbSVdnTemMoaxLtg==/lib/arm64, /system/lib64, /system_ext/lib64]]
  6. at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:259)
  7. at java.lang.ClassLoader.loadClass(ClassLoader.java:379)
  8. at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
  9. ... 93 more


MQTT类:

  1. class MQTT {
  2. private var mqttClient: MqttAndroidClient?=null
  3. // TAG
  4. companion object {
  5. const val TAG = "AndroidMqttClient"
  6. }
  7. fun connect(context: Context) {
  8. val serverURI = "tcp://x.x.x.x:1883"
  9. mqttClient = MqttAndroidClient(context, serverURI, "go_mqtt_client")
  10. mqttClient?.setCallback(object : MqttCallback {
  11. override fun messageArrived(topic: String?, message: MqttMessage?) {
  12. Log.d(TAG, "Receive message: ${message.toString()} from topic: $topic")
  13. }
  14. override fun connectionLost(cause: Throwable?) {
  15. Log.d(TAG, "Connection lost ${cause.toString()}")
  16. }
  17. override fun deliveryComplete(token: IMqttDeliveryToken?) {
  18. }
  19. })
  20. val options = MqttConnectOptions()
  21. try {
  22. mqttClient?.connect(options, null, object : IMqttActionListener {
  23. override fun onSuccess(asyncActionToken: IMqttToken?) {
  24. Log.d(TAG, "Connection success")
  25. }
  26. override fun onFailure(asyncActionToken: IMqttToken?, exception: Throwable?) {
  27. Log.d(TAG, "Connection failure")
  28. }
  29. })
  30. } catch (e: MqttException) {
  31. e.printStackTrace()
  32. }
  33. }
  34. fun subscribe(topic: String, qos: Int = 1) {
  35. try {
  36. mqttClient?.subscribe(topic, qos, null, object : IMqttActionListener {
  37. override fun onSuccess(asyncActionToken: IMqttToken?) {
  38. Log.d(TAG, "Subscribed to $topic")
  39. }
  40. override fun onFailure(asyncActionToken: IMqttToken?, exception: Throwable?) {
  41. Log.d(TAG, "Failed to subscribe $topic")
  42. }
  43. })
  44. } catch (e: MqttException) {
  45. e.printStackTrace()
  46. }
  47. }
  48. fun unsubscribe(topic: String) {
  49. try {
  50. mqttClient?.unsubscribe(topic, null, object : IMqttActionListener {
  51. override fun onSuccess(asyncActionToken: IMqttToken?) {
  52. Log.d(TAG, "Unsubscribed to $topic")
  53. }
  54. override fun onFailure(asyncActionToken: IMqttToken?, exception: Throwable?) {
  55. Log.d(TAG, "Failed to unsubscribe $topic")
  56. }
  57. })
  58. } catch (e: MqttException) {
  59. e.printStackTrace()
  60. }
  61. }
  62. fun publish(topic: String, msg: String, qos: Int = 1, retained: Boolean = false) {
  63. try {
  64. val message = MqttMessage()
  65. message.payload = msg.toByteArray()
  66. message.qos = qos
  67. message.isRetained = retained
  68. mqttClient?.publish(topic, message, null, object : IMqttActionListener {
  69. override fun onSuccess(asyncActionToken: IMqttToken?) {
  70. Log.d(TAG, "$msg published to $topic")
  71. }
  72. override fun onFailure(asyncActionToken: IMqttToken?, exception: Throwable?) {
  73. Log.d(TAG, "Failed to publish $msg to $topic")
  74. }
  75. })
  76. } catch (e: MqttException) {
  77. e.printStackTrace()
  78. }
  79. }
  80. fun disconnect() {
  81. try {
  82. mqttClient?.disconnect(null, object : IMqttActionListener {
  83. override fun onSuccess(asyncActionToken: IMqttToken?) {
  84. Log.d(TAG, "Disconnected")
  85. }
  86. override fun onFailure(asyncActionToken: IMqttToken?, exception: Throwable?) {
  87. Log.d(TAG, "Failed to disconnect")
  88. }
  89. })
  90. } catch (e: MqttException) {
  91. e.printStackTrace()
  92. }
  93. }
  94. }


类MainActivity:

  1. class MainActivity : ComponentActivity() {
  2. override fun onCreate(savedInstanceState: Bundle?) {
  3. super.onCreate(savedInstanceState)
  4. val mqtt = MQTT()
  5. setContent {
  6. TesteTheme {
  7. // A surface container using the 'background' color from the theme
  8. Surface(
  9. modifier = Modifier.fillMaxSize(),
  10. color = MaterialTheme.colorScheme.background
  11. ) {
  12. mqtt.connect(LocalContext.current)
  13. mqtt.subscribe("topic/test")
  14. }
  15. }
  16. }
  17. mqtt.publish("topic/test","Testar")
  18. mqtt.disconnect()
  19. }
  20. }


服务器mqtt go:

  1. package main
  2. import (
  3. "log"
  4. "os"
  5. "os/signal"
  6. "syscall"
  7. "time"
  8. mqtt "github.com/mochi-mqtt/server/v2"
  9. "github.com/mochi-mqtt/server/v2/hooks/auth"
  10. "github.com/mochi-mqtt/server/v2/listeners"
  11. )
  12. func main() {
  13. // Create signals channel to run server until interrupted
  14. sigs := make(chan os.Signal, 1)
  15. done := make(chan bool, 1)
  16. signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
  17. go func() {
  18. <-sigs
  19. done <- true
  20. }()
  21. opts := mqtt.Options{
  22. InlineClient: true,
  23. }
  24. // Create the new MQTT Server.
  25. server := mqtt.New(&opts)
  26. // Allow all connections.
  27. _ = server.AddHook(new(auth.AllowHook), nil)
  28. // Create a TCP listener on a standard port.
  29. tcp := listeners.NewTCP("t1", "0.0.0.0:1883", nil)
  30. err := server.AddListener(tcp)
  31. if err != nil {
  32. log.Fatal(err)
  33. }
  34. go func() {
  35. err := server.Serve()
  36. if err != nil {
  37. log.Fatal(err)
  38. }
  39. }()
  40. go func() {
  41. for range time.Tick(time.Second * 5) {
  42. err := server.Publish("topic/test", []byte("Hello World!\n"), false, 0)
  43. if err != nil {
  44. server.Log.Error("server.Publish", "error", err)
  45. }
  46. server.Log.Info("main.go issued direct message to direct/publish")
  47. }
  48. }()
  49. // Run server until interrupted
  50. <-done
  51. // Cleanup
  52. }


下面是tutorial
有人知道这是什么吗?

yks3o0rb

yks3o0rb1#

[解决]
build.gradle.kts

  1. plugins {
  2. id("com.android.application")
  3. id("org.jetbrains.kotlin.android")
  4. }
  5. android {
  6. namespace = "com.example.testar"
  7. compileSdk = 34
  8. defaultConfig {
  9. applicationId = "com.example.testar"
  10. minSdk = 21
  11. targetSdk = 34
  12. versionCode = 1
  13. versionName = "1.0"
  14. testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  15. vectorDrawables {
  16. useSupportLibrary = true
  17. }
  18. }
  19. buildTypes {
  20. release {
  21. isMinifyEnabled = false
  22. proguardFiles(
  23. getDefaultProguardFile("proguard-android-optimize.txt"),
  24. "proguard-rules.pro"
  25. )
  26. }
  27. }
  28. compileOptions {
  29. sourceCompatibility = JavaVersion.VERSION_1_8
  30. targetCompatibility = JavaVersion.VERSION_1_8
  31. }
  32. kotlinOptions {
  33. jvmTarget = "1.8"
  34. }
  35. buildFeatures {
  36. compose = true
  37. }
  38. composeOptions {
  39. kotlinCompilerExtensionVersion = "1.4.3"
  40. }
  41. packaging {
  42. resources {
  43. excludes += "/META-INF/{AL2.0,LGPL2.1}"
  44. }
  45. }
  46. }
  47. dependencies {
  48. implementation("androidx.core:core-ktx:1.12.0")
  49. implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
  50. implementation("androidx.activity:activity-compose:1.8.2")
  51. implementation(platform("androidx.compose:compose-bom:2023.03.00"))
  52. implementation("androidx.compose.ui:ui")
  53. implementation("androidx.compose.ui:ui-graphics")
  54. implementation("androidx.compose.ui:ui-tooling-preview")
  55. implementation("androidx.compose.material3:material3")
  56. testImplementation("junit:junit:4.13.2")
  57. androidTestImplementation("androidx.test.ext:junit:1.1.5")
  58. androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
  59. androidTestImplementation(platform("androidx.compose:compose-bom:2023.03.00"))
  60. androidTestImplementation("androidx.compose.ui:ui-test-junit4")
  61. debugImplementation("androidx.compose.ui:ui-tooling")
  62. debugImplementation("androidx.compose.ui:ui-test-manifest")
  63. implementation("org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5")
  64. }

字符串
主要类别:

  1. package com.example.testar
  2. import android.os.Bundle
  3. import androidx.activity.ComponentActivity
  4. import androidx.activity.compose.setContent
  5. import androidx.compose.foundation.layout.Column
  6. import androidx.compose.foundation.layout.fillMaxSize
  7. import androidx.compose.material3.ExperimentalMaterial3Api
  8. import androidx.compose.material3.MaterialTheme
  9. import androidx.compose.material3.Surface
  10. import androidx.compose.material3.Text
  11. import androidx.compose.material3.TopAppBar
  12. import androidx.compose.runtime.*
  13. import androidx.compose.ui.Modifier
  14. import com.example.testar.ui.theme.TestarTheme
  15. import org.eclipse.paho.client.mqttv3.*
  16. import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence
  17. import java.nio.charset.Charset
  18. class MainActivity : ComponentActivity() {
  19. private val mqttServerUri = "tcp://x.x.x.x:1883"
  20. private val mqttTopic = "topic/test"
  21. private lateinit var mqttClient: MqttClient
  22. override fun onCreate(savedInstanceState: Bundle?) {
  23. super.onCreate(savedInstanceState)
  24. setContent {
  25. TestarTheme {
  26. // A surface container using the 'background' color from the theme
  27. Surface(
  28. modifier = Modifier.fillMaxSize(),
  29. color = MaterialTheme.colorScheme.background
  30. ) {
  31. val messageState = remember { mutableStateOf("") }
  32. MqttSubscriptionApp(messageState)
  33. startMqttSubscription(messageState)
  34. }
  35. }
  36. }
  37. }
  38. private fun startMqttSubscription(messageState: MutableState<String>) {
  39. try {
  40. mqttClient = MqttClient(mqttServerUri, MqttClient.generateClientId(), MemoryPersistence())
  41. val options = MqttConnectOptions()
  42. options.isAutomaticReconnect = true
  43. options.isCleanSession = false
  44. mqttClient.connect(options)
  45. mqttClient.setCallback(object : MqttCallback {
  46. override fun connectionLost(cause: Throwable?) {
  47. }
  48. override fun messageArrived(topic: String?, message: MqttMessage?) {
  49. val receivedMessage = message?.toString()
  50. if (!receivedMessage.isNullOrEmpty()) {
  51. val utf8String = receivedMessage.toByteArray(Charset.forName("UTF-8"))
  52. val convertedString = String(utf8String, Charset.forName("UTF-8"))
  53. messageState.value = convertedString
  54. }
  55. }
  56. override fun deliveryComplete(token: IMqttDeliveryToken?) {
  57. }
  58. })
  59. mqttClient.subscribe(mqttTopic, 0)
  60. val topic: MqttTopic = mqttClient.getTopic(mqttTopic)
  61. val publication = "Hello world 10"
  62. val message = MqttMessage(publication.toByteArray())
  63. val token:MqttDeliveryToken = topic.publish(message)
  64. } catch (e: MqttException) {
  65. e.printStackTrace()
  66. }
  67. }
  68. }
  69. @OptIn(ExperimentalMaterial3Api::class)
  70. @Composable
  71. fun MqttSubscriptionApp(messageState: MutableState<String>) {
  72. Column {
  73. TopAppBar(title = { Text(text = "MQTT message") })
  74. Surface {
  75. Column {
  76. Text(text = "MESSSAGE:")
  77. Text(text = messageState.value)
  78. }
  79. }
  80. }
  81. }

展开查看全部

相关问题