You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.0 KiB
65 lines
2.0 KiB
plugins {
|
|
alias(libs.plugins.android.application)
|
|
alias(libs.plugins.kotlin.compose)
|
|
}
|
|
|
|
android {
|
|
namespace 'net.micode.notes'
|
|
compileSdk {
|
|
version = release(35)
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "net.micode.notes"
|
|
minSdk 23
|
|
targetSdk 35
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
// 打包时包含额外的库文件,org.apache.http.legacy
|
|
useLibrary 'org.apache.http.legacy'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
|
|
buildFeatures {
|
|
compose true
|
|
}
|
|
|
|
//关闭警告,避免构建中断
|
|
lint {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.androidx.core.ktx
|
|
implementation libs.androidx.lifecycle.runtime.ktx
|
|
implementation libs.androidx.activity.compose
|
|
implementation platform(libs.androidx.compose.bom)
|
|
implementation libs.androidx.compose.ui
|
|
implementation libs.androidx.compose.ui.graphics
|
|
implementation libs.androidx.compose.ui.tooling.preview
|
|
// Material3 是 MiCode Notes 现在的主题依赖,Foundation 包含了 Layout, Modifier 等基础组件
|
|
implementation libs.androidx.compose.material3
|
|
implementation "androidx.compose.foundation:foundation:1.6.0"
|
|
//重启库支持
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
testImplementation libs.junit
|
|
androidTestImplementation libs.androidx.junit
|
|
androidTestImplementation libs.androidx.espresso.core
|
|
androidTestImplementation platform(libs.androidx.compose.bom)
|
|
androidTestImplementation libs.androidx.compose.ui.test.junit4
|
|
debugImplementation libs.androidx.compose.ui.tooling
|
|
debugImplementation libs.androidx.compose.ui.test.manifest
|
|
} |