Files
sumtest/app/build.gradle
hmalik144 21a85777b8 Test framework built
Edge cases establish and tested
CircleCI integrated for better CI/CD operations
Robot Framework implemented for automation testing
2023-02-27 18:22:21 +00:00

53 lines
1.7 KiB
Groovy

plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.example.sumtest'
compileSdk 33
defaultConfig {
applicationId "com.example.sumtest"
minSdk 21
targetSdk 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "io.cucumber.android.runner.CucumberAndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.activity:activity-ktx:1.6.1'
implementation 'androidx.test.espresso:espresso-idling-resource:3.5.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation "io.cucumber:cucumber-android:${rootProject.ext.cucumberVersion}"
}