flutter/packages/flutter_tools/templates/plugin
stuartmorgan 3ff334d68d
Add a missing include to the Linux plugin template (#68737)
The template uses strcmp (to check the received method), so should
include <cstring>
2020-10-22 13:50:39 -07:00
..
.idea remove intellij references to the v1 embedding jars now that the v2 embeddings are referenced via maven (#55353) 2020-04-22 13:33:13 -07:00
android-java.tmpl move compile/target sdk versions to 29 (#62799) (#63008) 2020-08-11 14:51:02 -07:00
android-kotlin.tmpl move compile/target sdk versions to 29 (#62799) (#63008) 2020-08-11 14:51:02 -07:00
android.tmpl Remove enableR8=true from gradle.properties (#63339) 2020-08-14 10:26:03 -07:00
ios-objc.tmpl Change iOS plugin simulator archs from allow list to deny list (#64504) 2020-08-24 17:48:05 -07:00
ios-swift.tmpl Change iOS plugin simulator archs from allow list to deny list (#64504) 2020-08-24 17:48:05 -07:00
ios.tmpl Add swift_versions to plugin template podspec, include default CocoaPod version (#44324) 2019-11-08 18:00:01 -08:00
lib Add --platforms to flutter create -t plugin command (#59507) 2020-06-23 17:38:03 -07:00
linux.tmpl Add a missing include to the Linux plugin template (#68737) 2020-10-22 13:50:39 -07:00
macos.tmpl Add swift_versions to plugin template podspec, include default CocoaPod version (#44324) 2019-11-08 18:00:01 -08:00
test Fix plugin template app's tests (#39080) 2019-08-26 14:57:16 -07:00
windows.tmpl Fix Windows and Linux plugin template filenames (#66997) 2020-09-30 16:07:03 -07:00
.gitignore.tmpl Do not ignore pubspec.lock in project templates (#24209) 2019-01-09 10:10:38 -08:00
.metadata.tmpl Rename module --> application in flutter create command. (#22565) 2018-10-04 13:03:20 -07:00
CHANGELOG.md.tmpl Update plugin template to comply with new type and style rules (#17840) 2018-05-24 08:49:17 +02:00
LICENSE.tmpl Add --template=<type> option to create command. (#11105) 2017-08-23 13:29:31 +02:00
projectName.iml.tmpl update intellij metadata in template files (#16211) 2018-04-04 09:36:34 -07:00
pubspec.yaml.tmpl Adjust constraints (#68437) 2020-10-19 17:17:13 +02:00
README.md.tmpl Add --platforms to flutter create -t plugin command (#59507) 2020-06-23 17:38:03 -07:00

# {{projectName}}

{{description}}

## Getting Started

This project is a starting point for a Flutter
[plug-in package](https://flutter.dev/developing-packages/),
a specialized package that includes platform-specific implementation code for
Android and/or iOS.

For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.

{{#no_platforms}}
The plugin project was generated without specifying the `--platforms` flag, no platforms are currently supported.
To add platforms, run `flutter create -t plugin --platforms <platforms> .` under the same
directory. You can also find a detailed instruction on how to add platforms in the `pubspec.yaml` at https://flutter.dev/docs/development/packages-and-plugins/developing-packages#plugin-platforms.
{{/no_platforms}}