Skip to content

Commit 46c0e0c

Browse files
author
Grant Kemp
committed
feature: added libraries for 3rd party ad_impression sample snippets. We need to include these to ensure that the project builds and we can include the "override" methods for the 3rd parties.
1 parent f8c838d commit 46c0e0c

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

analytics/app/build.gradle

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,22 @@ android {
1919
}
2020
}
2121
}
22+
repositories {
23+
maven {
24+
// Ironsource library used for ad_impression snippets
25+
url "https://android-sdk.is.com/"
26+
}
27+
}
2228

2329
dependencies {
2430
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2531
implementation 'androidx.appcompat:appcompat:1.3.1'
26-
2732
implementation "com.google.firebase:firebase-analytics:19.0.0"
2833
implementation "com.google.firebase:firebase-analytics-ktx:19.0.0"
34+
// Ironsource and AppLovin libraries used for ad_impression snippets
35+
implementation 'com.applovin:applovin-sdk:+'
36+
implementation 'com.ironsource.sdk:mediationsdk:7.2.1.1'
37+
2938
}
3039

3140
apply plugin: 'com.google.gms.google-services'

analytics/settings.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
include ':app'
2+
3+
// Ironsource library used for ad_impression snippets
4+
dependencyResolutionManagement {
5+
repositories {
6+
maven {
7+
url 'https://android-sdk.is.com/'
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)