Skip to content

Commit

Permalink
updated path for keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithad0703 committed May 6, 2024
1 parent daaf8a1 commit df0f6f2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions contentstack/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,20 +71,20 @@ android {

testOptions {
unitTests.all {
jacoco {
includeNoLocationClasses = true
}
// jacoco {
// includeNoLocationClasses = true
// }
}
}
signingConfigs {
debug {
storeFile file("/Users/shaileshmishra/keystore/key.keystore")
storeFile file("../key.keystore")
storePassword 'android'
keyAlias 'key0'
keyPassword 'android'
}
release {
storeFile file("/Users/shaileshmishra/keystore/key.keystore")
storeFile file("../key.keystore")
storePassword 'android'
keyAlias 'key0'
keyPassword 'android'
Expand All @@ -98,7 +98,7 @@ android {
versionCode 1
versionName "1.0"
useLibrary 'org.apache.http.legacy'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
signingConfig signingConfigs.release
}

Expand Down Expand Up @@ -143,7 +143,7 @@ dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:core:1.5.0'
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2', {
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
}
Expand Down

0 comments on commit df0f6f2

Please sign in to comment.