Files
AndroidJava/devbricksx-android/devbricksx-audio/build.gradle
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

53 lines
1.1 KiB
Groovy

plugins {
id 'com.android.library'
id 'kotlin-android'
id "com.vanniktech.maven.publish"
}
android {
defaultConfig {
namespace "com.dailystudio.devbricksx.audio"
compileSdk COMPILE_SDK
minSdkVersion MINI_SDK
targetSdkVersion TARGET_SDK
versionCode VERSION_CODE
versionName VERSION_NAME
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JAVA_VERSION
targetCompatibility JAVA_VERSION
}
kotlinOptions {
jvmTarget = JVM_TARGET
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
api project(":devbricksx")
testImplementation "junit:junit:$junit_version"
androidTestImplementation "androidx.test.ext:junit:$android_junit_ext_version"
androidTestImplementation "androidx.test.espresso:espresso-core:$android_junit_espresso_version"
}
apply from: '../buildscripts/maven_push.gradle'