I'm trying to create a plugin that relies upon AWS' Mobile SDK (In Java). It says to put
implementation ('com.amazonaws:aws-android-sdk-mobile-client:2.6.+@aar') { transitive = true }
inside the app/build.grade
. However, when I'm developing that plugin as per the documentation, there is no app/
folder within the plugin's android root (there is one in the example project, but I don't think that's where I'm supposed to put it).
Specifically, I'm creating the plugin using this command:
flutter create --template=plugin hello
Where should I put this? Should I download the .jar itself, and put it in the project.
Cheers.