Im trying to generate an aar to use it without maven.
I have these dependencies:
api fileTree(include: ['*.jar'], dir: 'libs')
api 'com.squareup.retrofit2:retrofit:2.5.0'
api 'com.squareup.retrofit2:converter-gson:2.5.0'
api 'com.squareup.okhttp3:logging-interceptor:3.12.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
But when I imports the generated aar in my app Im getting this error:
Caused by: java.lang.ClassNotFoundException: Didn't find class "okhttp3.OkHttpClient$Builder"
Any idea?