- 添加 .gitignore 文件,配置项目忽略项 - 创建 .metadata 文件,记录项目元数据 - 编写 README.md,介绍项目基本信息 - 配置 analysis_options.yaml,设置代码分析规则 - 新增 Android 相关文件和目录,包括 Gradle 配置、资源文件等 - 新增 iOS 相关文件和目录,包括 AppFrameworkInfo.plist、Debug.xcconfig 等
15 lines
595 B
Plaintext
15 lines
595 B
Plaintext
// Application-level settings for the Runner target.
|
|
//
|
|
// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the
|
|
// future. If not, the values below would default to using the project name when this becomes a
|
|
// 'flutter create' template.
|
|
|
|
// The application's name. By default this is also the title of the Flutter window.
|
|
PRODUCT_NAME = poem
|
|
|
|
// The application's bundle identifier
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.example.poem
|
|
|
|
// The copyright displayed in application information
|
|
PRODUCT_COPYRIGHT = Copyright © 2025 com.example. All rights reserved.
|