Skip to content

Commit bc65d91

Browse files
authored
feat(gradle): Keep only leanplum-core in Leanplum SDK. (#155)
* feat(gradle): Keep only leanplum-core in Leanplum SDK.
1 parent 989fa1e commit bc65d91

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

AndroidSDK/build.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ allprojects {
1414
dependencies {
1515
debugApi project(':AndroidSDKCore')
1616
releaseApi project(':AndroidSDKCore')
17-
debugApi project(':AndroidSDKPush')
18-
releaseApi project(':AndroidSDKPush')
19-
debugApi project(':AndroidSDKGcm')
20-
releaseApi project(':AndroidSDKGcm')
21-
debugApi project(':AndroidSDKLocation')
22-
releaseApi project(':AndroidSDKLocation')
2317
}
2418

2519
android {

AndroidSDKTests/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ android {
2626
}
2727

2828
dependencies {
29-
implementation project(':AndroidSDK')
29+
implementation project(':AndroidSDKCore')
30+
implementation project(':AndroidSDKPush')
31+
implementation project(':AndroidSDKLocation')
32+
implementation project(':AndroidSDKGcm')
3033
implementation project(':AndroidSDKFcm')
3134
implementation "com.android.support:appcompat-v7:${SUPPORT_LIBRARY_VERSION}"
3235
implementation 'com.google.android.gms:play-services-gcm:11.6.0'

0 commit comments

Comments
 (0)