I have 2 gradle projects A and B
In project A I have
dependencies {
ext {
support_library_version = '26.1.0'
}
implementation "com.payu.india:payu-sdk:4.4.1"
implementation "com.payu.magicretry:magicretry:1.0.4"
implementation "com.payu.custombrowser:payu-custom-browser:6.1.1"
implementation "com.android.support:appcompat-v7:${support_library_version}"
implementation "com.android.support:support-v4:${support_library_version}"
}
In project B I have
implementation project(':A')
For some reason project B reports unable to find symbol for all com.payu.*
imports.
After I upgraded gradle to 4.4 I had to copy all the needed implementation
from project A to project B. What am I missing ?