mirror of
https://github.com/fankes/ProjectPromote.git
synced 2025-09-04 01:35:32 +08:00
49 lines
1.6 KiB
Plaintext
49 lines
1.6 KiB
Plaintext
plugins {
|
|
autowire(libs.plugins.android.application)
|
|
autowire(libs.plugins.kotlin.android)
|
|
}
|
|
|
|
android {
|
|
namespace = property.project.app.packageName
|
|
compileSdk = property.project.android.compileSdk
|
|
|
|
defaultConfig {
|
|
applicationId = property.project.app.packageName
|
|
minSdk = property.project.android.minSdk
|
|
targetSdk = property.project.android.targetSdk
|
|
versionName = property.project.app.versionName
|
|
versionCode = property.project.app.versionCode
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
freeCompilerArgs = listOf(
|
|
"-Xno-param-assertions",
|
|
"-Xno-call-assertions",
|
|
"-Xno-receiver-assertions"
|
|
)
|
|
}
|
|
buildFeatures { buildConfig = true }
|
|
lint { checkReleaseBuilds = false }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":projectpromote"))
|
|
implementation(androidx.core.core.ktx)
|
|
implementation(androidx.appcompat.appcompat)
|
|
implementation(com.google.android.material.material)
|
|
implementation(androidx.constraintlayout.constraintlayout)
|
|
testImplementation(junit.junit)
|
|
androidTestImplementation(androidx.test.ext.junit)
|
|
androidTestImplementation(androidx.test.espresso.espresso.core)
|
|
} |