plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' } android { namespace 'top.outsidethebox.otbcloud' compileSdk 34 defaultConfig { applicationId "top.outsidethebox.otbcloud" minSdk 23 targetSdk 34 versionCode 33 versionName "0.3.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false } debug { minifyEnabled false } } compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = '17' } buildFeatures { viewBinding true } } dependencies { implementation 'androidx.core:core-ktx:1.13.1' implementation 'androidx.appcompat:appcompat:1.7.0' implementation 'com.google.android.material:material:1.12.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' }