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.
73 lines
2.0 KiB
73 lines
2.0 KiB
plugins {
|
|
alias(libs.plugins.android.application)
|
|
}
|
|
|
|
android {
|
|
namespace = "net.micode.notes"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "net.micode.notes"
|
|
minSdk = 24
|
|
targetSdk = 34
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
flavorDimensions += "device"
|
|
productFlavors {
|
|
create("phone") {
|
|
dimension = "device"
|
|
applicationIdSuffix = ".phone"
|
|
versionNameSuffix = "-phone"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
excludes += "META-INF/DEPENDENCIES"
|
|
excludes += "META-INF/LICENSE"
|
|
excludes += "META-INF/LICENSE.txt"
|
|
excludes += "META-INF/license.txt"
|
|
excludes += "META-INF/NOTICE"
|
|
excludes += "META-INF/NOTICE.txt"
|
|
excludes += "META-INF/notice.txt"
|
|
excludes += "META-INF/ASL2.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.appcompat)
|
|
implementation(libs.material)
|
|
implementation(libs.activity)
|
|
implementation(libs.constraintlayout)
|
|
|
|
// OkHttp dependencies
|
|
implementation("com.squareup.okhttp3:okhttp:3.14.9") {
|
|
exclude(group = "org.bouncycastle", module = "bcprov-jdk15on")
|
|
exclude(group = "org.bouncycastle", module = "bcpkix-jdk15on")
|
|
}
|
|
implementation("com.squareup.okio:okio:1.17.5")
|
|
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.ext.junit)
|
|
androidTestImplementation(libs.espresso.core)
|
|
} |