Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

gradle plugins : com.android.application source code

Where can I find the source code of the plugin "com.android.application"? I have tried to find in here.

like image 887
罗路遥 Avatar asked Mar 14 '23 04:03

罗路遥


1 Answers

The source for com.android.application plugin is at:

https://android.googlesource.com/platform/tools/build/+/master/gradle/src/main/groovy/com/android/build/gradle/AppPlugin.groovy

The plugin name comes from this properties file:

https://android.googlesource.com/platform/tools/base/+/master/build-system/gradle/src/main/resources/META-INF/gradle-plugins/com.android.application.properties

and its contents point to the class implementing it.

like image 65
RaGe Avatar answered Mar 17 '23 11:03

RaGe