mirror of
https://github.com/hmalik144/Android-Cucumber-BDD-Sample.git
synced 2026-03-18 07:25:56 +00:00
Initial commit
This commit is contained in:
41
app/build.gradle
Normal file
41
app/build.gradle
Normal file
@@ -0,0 +1,41 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
compileSdkVersion 24
|
||||
buildToolsVersion "23.0.3"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.codemate.booklibrary"
|
||||
minSdkVersion 19
|
||||
targetSdkVersion 24
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
buildTypes {
|
||||
debug {
|
||||
testCoverageEnabled true
|
||||
}
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||
|
||||
androidTestCompile ('com.android.support.test.espresso:espresso-core:2.2.1') {
|
||||
exclude module: 'support-annotations'
|
||||
}
|
||||
|
||||
testCompile 'junit:junit:4.12'
|
||||
testCompile 'info.cukes:cucumber-java:1.2.4'
|
||||
testCompile 'info.cukes:cucumber-junit:1.2.4'
|
||||
testCompile 'org.mockito:mockito-core:1.+'
|
||||
|
||||
compile 'com.android.support:appcompat-v7:24.2.0'
|
||||
compile 'com.android.support:recyclerview-v7:24.2.0'
|
||||
}
|
||||
Reference in New Issue
Block a user