yanuar,
Corona Enterprise does not include any plugin libraries. You have to download them separately on our Corona Enterprise daily build page via the link below. Also note that if you are a trial user (ie: you do not have an Enterprise subscription yet), then you do not have access to this webpage. You should contact the person who provided you the Corona Enterprise trial for a copy of the plugins.
http://developer.coronalabs.com/downloads/enterprise-daily-builds
Also note that you are no longer building with Corona anymore. You are building with the Android SDK and you now must include/reference libraries into your Android application project according to Google’s documentation. This means referencing an Android library project folder via the “project.properties” file or adding *.jar and *.so files to your project’s “libs” directory. You only do one or the other for a single library. The “project.properties” file is the preferred route if possible. Corona Enterprise sample project “IncludeAllFeatures” demonstrates how to include the Facebook library via the “project.properties” and Flurry via the “libs” directory, which serves as a good example.
Also note that the “build.settings” file is ignored for native Android SDK builds. That file is for Corona Simulator builds. So, whatever you’re doing in your “build.settings” file, you’ll have to do the native Android way, such as adding permissions to your AndroidManifest.xml file yourself. Corona’s “Icon-xhdpi.png” and other app icons are ignored for native Android builds as well since those are Corona Simulator build related files. The native Android way of doing this is adding those files to the appropriate “res” directories and referencing them in your AndroidManifest.xml file. All of this is documented on Google’s end.