Commit 078b380d authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Remove underscores from Android identifier during `flutter create` (#10506)

Fixes #10077
parent dd6aab2e
......@@ -275,7 +275,7 @@ To edit platform code in an IDE see https://flutter.io/platform-plugins/#edit-co
}
String _createAndroidIdentifier(String organization, String name) {
return '$organization.$name';
return '$organization.$name'.replaceAll('_', '');
}
String _createPluginClassName(String name) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment