Files
yusheng-android/moduletablayout/build.gradle
梁小江 56119bb7bc 1、个人信息完善
2、集成聊天功能
3、完成登录
2025-05-29 08:59:34 +08:00

37 lines
848 B
Groovy

plugins {
alias(libs.plugins.android.library)
}
android {
namespace 'com.example.moduletablayout'
compileSdk 35
defaultConfig {
minSdk 24
targetSdk 35
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
implementation libs.appcompat
implementation libs.material
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
}