Skip to content

Commit

Permalink
Merge pull request #245 from WalletConnect/develop
Browse files Browse the repository at this point in the history
merge into master
  • Loading branch information
Talhaali00 authored Jul 7, 2022
2 parents 376cc91 + 45b7793 commit 2cc314a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions signSDK/sign/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.apache.commons.io.output.ByteArrayOutputStream

plugins {
id("com.android.library")
kotlin("android")
Expand All @@ -11,12 +13,18 @@ tasks.withType<Test> {
}

android {
namespace = "com.walletconnect.sign"
compileSdk = 32

defaultConfig {
minSdk = MIN_SDK
targetSdk = 32

aarMetadata {
minCompileSdk = MIN_SDK
targetSdk = 32
}

testInstrumentationRunner = "com.walletconnect.sign.WCTestRunner"
testInstrumentationRunnerArguments += mutableMapOf("runnerBuilder" to "de.mannodermaus.junit5.AndroidJUnit5Builder")
}
Expand Down Expand Up @@ -56,6 +64,18 @@ android {
}
}

afterEvaluate {
publishing {
publications {
register<MavenPublication>("release") {
afterEvaluate {
from(components["release"])
}
}
}
}
}

dependencies {
okhttp()
bouncyCastle()
Expand Down

0 comments on commit 2cc314a

Please sign in to comment.