Created by: rowillia
If an AAR depends on another AAR it needs to include the resources of the dependent AAR while compiling.
android_prebuilt_aar(
name = 'braintree',
aar = ':braintree-jar',
deps =[
':braintree-card-form',
],
visibility = [
'PUBLIC',
],
)
remote_file(
name = 'braintree-jar',
url = 'mvn:com.braintreepayments.api:braintree:aar:1.4.0',
sha1 = 'e95a817c504263cc485a43bf11040d79a63d7237',
)
android_prebuilt_aar(
name = 'braintree-card-form',
aar = ':braintree-card-form-jar',
visibility = [
'PUBLIC',
],
)
remote_file(
name = 'braintree-card-form-jar',
url = 'mvn:com.braintreepayments:card-form:aar:2.0.1',
sha1 = 'bb6b4ca740d5607521f79ce118ca1195be318064',
)