Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
remove old signing vars
  • Loading branch information
jclark118 authored Oct 31, 2023
1 parent c76cf3c commit 8e339e8
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions mapcache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,26 +110,6 @@ dependencies {
testImplementation 'androidx.test:rules:1.5.0'
}

configure extensions.android, {
if (project.hasProperty('RELEASE_STORE_FILE') && new File((String) project.getProperty('RELEASE_STORE_FILE')).exists()) {
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
buildTypes {
release {
setSigningConfig(signingConfigs.release)
}
}
} else {
println 'no keystore configured'
}
}

// This is to fix the errors : java.lang.NoClassDefFoundError: Failed resolution of: Landroid/view/View$OnUnhandledKeyEventListener;
configurations.all {
resolutionStrategy.eachDependency { details ->
Expand Down

0 comments on commit 8e339e8

Please sign in to comment.