plugins { id("com.android.application") } android { namespace = "screen_cast" compileSdk = 36 defaultConfig { applicationId = "screen_cast.receiver" minSdk = 30 targetSdk = 36 versionCode = 1 versionName = "0.1.0" } // No release signing configured: the app is sideloaded as a debug build. buildTypes { release { isMinifyEnabled = false } } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } } dependencies { testImplementation("junit:junit:4.13.2") }