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.
55 lines
1.4 KiB
55 lines
1.4 KiB
import com.android.build.api.dsl.Packaging
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.application)
|
|
}
|
|
|
|
android {
|
|
namespace = "net.micode.notes"
|
|
compileSdk = 35
|
|
|
|
packagingOptions{
|
|
exclude("META-INF/DEPENDENCIES")
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId = "net.micode.notes"
|
|
minSdk = 32
|
|
targetSdk = 35
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.appcompat)
|
|
implementation(libs.material)
|
|
implementation(libs.activity)
|
|
implementation(libs.constraintlayout)
|
|
// implementation(libs.firebase.crashlytics.buildtools)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.ext.junit)
|
|
androidTestImplementation(libs.espresso.core)
|
|
// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
|
|
|
|
//noinspection DuplicatePlatformClasses
|
|
implementation(libs.httpclient)
|
|
implementation(libs.richeditor.android)
|
|
} |