2026-04-03 06:21:46 -07:00
|
|
|
plugins {
|
|
|
|
|
id("com.android.application")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace = "com.miracast.enabler"
|
|
|
|
|
compileSdk = 34
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
applicationId = "com.miracast.enabler"
|
|
|
|
|
minSdk = 31
|
|
|
|
|
targetSdk = 34
|
|
|
|
|
versionCode = 200
|
|
|
|
|
versionName = "2.0.0"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
isMinifyEnabled = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2026-04-03 07:29:54 -07:00
|
|
|
compileOnly("io.github.libxposed:api:101.0.1")
|
2026-04-03 06:21:46 -07:00
|
|
|
implementation("androidx.preference:preference:1.2.1")
|
|
|
|
|
implementation("androidx.appcompat:appcompat:1.6.1")
|
|
|
|
|
implementation("com.google.android.material:material:1.11.0")
|
|
|
|
|
}
|