As stated in https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html#new_configurations , now we have apiand implementation.
In the ie Android module apply plugin: 'com.android.application', we have both.
However, in the simple ie Java module apply plugin: 'java'(used by my Android application module) I could only find implementation, but not api.
Therefore, in one of the dependent I must use compileand can not use api.
Is it apiunavailable on a Java module?
source
share