почему мое приложение на андроид сразу же закрывается после того, как запустилось?

есть код MainActivity.Kt, ошибок нет:

package com.example.votingapp

import android.os.Bundle
import android.util.Log
import android.widget.Button
import android.widget.EditText
import android.widget.TextView
import androidx.appcompat.app.AppCompatActivity
import com.android.volley.Response
import com.android.volley.toolbox.StringRequest
import com.android.volley.toolbox.Volley

class MainActivity : AppCompatActivity() {

    private lateinit var candidateInput: EditText
    private lateinit var voteButton: Button
    private lateinit var resultTextView: TextView

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        candidateInput = findViewById(R.id.candidateInput)
        voteButton = findViewById(R.id.voteButton)
        resultTextView = findViewById(R.id.resultTextView)

        voteButton.setOnClickListener {
            val candidateName = candidateInput.text.toString()
            if (candidateName.isNotEmpty()) {
                sendVoteRequest(candidateName)
            } else {
                resultTextView.text = "введите имя кандидата"
            }
        }
    }

    class VotingRequest(
        url: String,
        listener: Response.Listener<String>,
        errorListener: Response.ErrorListener,
        private val candidateName: String
    ) : StringRequest(Method.POST, url, listener, errorListener) {
        override fun getParams(): MutableMap<String, String> {
            val params = HashMap<String, String>()
            params["candidate_name"] = candidateName
            return params
        }
    }

    private fun sendVoteRequest(candidateName: String) {
        val url = "http://127.0.0.1:5000/vote"

        val votingRequest = VotingRequest(
            url,
            { response ->
                Log.d("VotingApp", "ответ от сервера: $response")
                resultTextView.text = response
            },
            { error ->
                Log.e("VotingApp", "ошибка при отправке запроса: $error")
                resultTextView.text = "ошибка при голосовании"
            },
            candidateName
        )

        val requestQueue = Volley.newRequestQueue(this)
        requestQueue.add(votingRequest)
    }
}

так же код activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:autofillHints=""
    android:orientation="vertical"
    android:padding="16dp">

    <EditText
        android:id="@+id/candidateInput"
        android:layout_width="381dp"
        android:layout_height="wrap_content"
        android:hint="введите имя кандидата"
        android:inputType="text"
        android:minHeight="48dp" />

    <Button
        android:id="@+id/voteButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="проголосовать" />

    <TextView
        android:id="@+id/resultTextView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="18sp" />

</LinearLayout>

и даже код Androidmanifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.Voting_app"
        tools:targetApi="31">
        <activity
            android:name=".MainActivity"
            android:exported="true"
            android:label="@string/app_name"
            android:theme="@style/Theme.Voting_app">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

передаю приложение на телефон с помощью отладки по usb/wifi. как только захожу, оно сразу же закрывается, не успев показать интерфейс вот логи: логи

p.s проект миллион раз пересобирал, устройства перезагружал, но все равно ничего не работает. помогите, пожалуйста!

p.p.s вот фото из дебаггера: дебаг


Ответы (0 шт):