plugins { id 'com.android.application' } android { namespace 'com.example.paintingapp' compileSdk 34 viewBinding { enabled true } // //add this feature dataBinding { enabled true } defaultConfig { applicationId "com.example.paintingapp" minSdk 24 targetSdk 34 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } android.applicationVariants.all { variant -> variant.outputs.all { outputFileName = "Painting.apk" } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } buildFeatures{ buildConfig true } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'com.google.android.material:material:1.9.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' implementation 'com.github.mik3y:usb-serial-for-android:3.7.0' implementation 'com.google.protobuf:protobuf-java:4.27.2' implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20") implementation 'com.github.nodemedia:nodemediaclient-android:2.9.20' implementation 'io.github.xmaihh:serialport:2.1.1' }