vn-ventas/app/build.gradle

44 lines
1.3 KiB
Groovy
Raw Permalink Normal View History

2023-02-10 14:12:13 +00:00
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
2024-07-17 14:26:05 +00:00
compileSdk 34
2023-02-10 14:12:13 +00:00
defaultConfig {
applicationId "com.verdnatura.verdnaturaventas"
2024-07-17 14:26:05 +00:00
minSdkVersion 21
targetSdkVersion 34
versionCode 109
versionName "3.0.5"
2023-02-10 14:12:13 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
2024-07-17 14:26:05 +00:00
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
2023-02-10 14:12:13 +00:00
}
kotlinOptions {
// jvmTarget = '1.8'
}
2024-07-17 14:26:05 +00:00
namespace 'com.verdnatura.verdnaturaventas'
2023-02-10 14:12:13 +00:00
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2024-07-17 14:26:05 +00:00
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
2023-02-10 14:12:13 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2024-07-17 14:26:05 +00:00
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
2023-02-10 14:12:13 +00:00
}