@@ -44,35 +44,36 @@ android {
4444}
4545
4646dependencies {
47- compile fileTree(dir : ' libs' , include : [' *.jar' ])
48- compile ' com.android.support:appcompat-v7:23.1.1'
49- compile ' com.android.support:support-v4:23.1.1'
50- compile ' com.android.support:recommendation:23.1.1'
47+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
48+ implementation ' com.android.support:appcompat-v7:23.1.1'
49+ implementation ' com.android.support:support-v4:23.1.1'
50+ implementation ' com.android.support:recommendation:23.1.1'
51+ implementation ' org.greenrobot:eventbus:3.0.0'
5152
52- debugCompile ' com.squareup.leakcanary:leakcanary-android:1.4-beta2'
53- releaseCompile ' com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
54- testCompile ' com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
53+ debugImplementation ' com.squareup.leakcanary:leakcanary-android:1.4-beta2'
54+ releaseImplementation ' com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
55+ testImplementation ' com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
5556
56- androidTestCompile (' com.android.support.test:runner:0.4' ) {
57+ androidTestImplementation (' com.android.support.test:runner:0.4' ) {
5758 exclude group : ' com.android.support' , module : ' support-annotations'
5859 }
59- androidTestCompile (' com.android.support.test:rules:0.4' ) {
60+ androidTestImplementation (' com.android.support.test:rules:0.4' ) {
6061 exclude group : ' com.android.support' , module : ' support-annotations'
6162 }
62- androidTestCompile ' junit:junit:4.12'
63+ androidTestImplementation ' junit:junit:4.12'
6364
64- compile project(' :ModuleInterface' )
65- compile project(' :AuthInterface' )
66- compile project(' :AnalyticsInterface' )
67- compile project(' :AdsInterface' )
68- compile project(' :PurchaseInterface' )
69- compile project(' :UAMP' )
70- compile project(' :DataLoader' )
71- compile project(' :DynamicParser' )
72- compile project(' :Utils' )
73- compile project(' :ContentModel' )
65+ api project(' :ModuleInterface' )
66+ api project(' :AuthInterface' )
67+ api project(' :AnalyticsInterface' )
68+ api project(' :AdsInterface' )
69+ api project(' :PurchaseInterface' )
70+ api project(' :UAMP' )
71+ api project(' :DataLoader' )
72+ api project(' :DynamicParser' )
73+ api project(' :Utils' )
74+ api project(' :ContentModel' )
7475 // Global font support
75- compile project(' :Calligraphy' )
76+ implementation project(' :Calligraphy' )
7677}
7778
7879buildscript {
0 commit comments