Skip to content

Commit

Permalink
[s] add new relic dependencies to the project
Browse files Browse the repository at this point in the history
  • Loading branch information
Javieric committed Nov 27, 2023
1 parent b5d1dec commit 3c41787
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,14 @@ kotlin {
ios()
iosSimulatorArm64()
cocoapods {
ios.deploymentTarget = "11.0"
framework {
baseName = MODULE_NAME
}
pod("NewRelicAgent") {
version = "7.4.7"
headers = "NewRelic.xcframework/ios-arm64/NewRelic.framework/Headers/Agent.h"
}
}

sourceSets {
Expand All @@ -70,7 +75,11 @@ kotlin {
implementation(kotlin("test"))
}
}
val androidMain by getting
val androidMain by getting {
dependencies {
implementation("com.newrelic.agent.android:android-agent:7.2.0")
}
}
val androidUnitTest by getting {
dependencies {
implementation(testingLibs.junit)
Expand Down

0 comments on commit 3c41787

Please sign in to comment.