Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

AndroidStudioでのbuttonクリック時の操作について

AndroidStudioにてbuttonを配置してみたまではよかったのですが、
そのあとボタンをクリックした後にTestViewの内容を変更するようにしようと
試してみたところどうにも動かず苦慮しております。

ボタンをクリックしたときの動作を書く前の準備段階として
build.gradle(Module)へ編集が必要みたいなのですが、その段階で躓いています。

[やりたいこと]
button1をクリックした際にTextView1の文字を変更する

[質問事項]
1.build.gradleを編集すること自体が間違っているのでしょうか?
2.エラーとなっているのは編集する場所が違うのでしょうか?
3.build.gradleは何を書く場所(何が書かれている場所)なのでしょうか?

build.gradle(Module:004_Test.app)

plugins {
    id 'com.android.application'
}

android {
    namespace 'com.example.a004_test'
    compileSdk 32

    buildFeatures {
        viewBinding true
    }



    defaultConfig {
        applicationId "com.example.a004_test"
        minSdk 30
        targetSdk 32
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {

    implementation 'androidx.appcompat:appcompat:1.5.1'
    implementation 'com.google.android.material:material:1.7.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

エラーメッセージ

Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the android.os.Build.VERSION_CODES javadoc for details.
A newer version of androidx.test.ext:junit than 1.1.3 is available: 1.1.4
A newer version of androidx.test.espresso:espresso-core than 3.4.0 is available: 3.5.0
0

No Answers yet.

Your answer might help someone💌