Cloud_music/StatusBarUtil/build.gradle

25 lines
637 B
Groovy
Raw Permalink Normal View History

2024-07-22 12:54:14 +00:00
apply plugin: 'com.android.library'
version = "1.5.1"
android {
namespace 'com.jaeger.library'
compileSdk 34
resourcePrefix "statusbarutil_"
defaultConfig {
minSdkVersion 23
//noinspection ExpiredTargetSdkVersion
targetSdk 31
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
}