https://github.com/damianaldair/app_dev_config
Make modifications that are normally made to a platform native files from the 'pubspec.yaml'.
https://github.com/damianaldair/app_dev_config
dart flutter pubspec
Last synced: 7 months ago
JSON representation
Make modifications that are normally made to a platform native files from the 'pubspec.yaml'.
- Host: GitHub
- URL: https://github.com/damianaldair/app_dev_config
- Owner: DamianAldair
- License: mit
- Archived: true
- Created: 2023-02-28T01:59:14.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T22:59:24.000Z (over 3 years ago)
- Last Synced: 2025-07-14T18:25:06.393Z (11 months ago)
- Topics: dart, flutter, pubspec
- Language: Dart
- Homepage: https://pub.dev/packages/app_dev_config
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# App Development Configuration
Make modifications that are normally made to a platform native files from the `pubspec.yaml`.
## 📖 Guide
### 1. Import this library in `pubspec.yaml`.
```yaml
dev_dependencies:
app_dev_config: any
```
### 2. Setup de configuration
```yaml
app_dev_config:
launcher_name: My Flutter App
permissions:
- internet
```
### 3. Run the package
```
flutter pub get
```
```
flutter pub run app_dev_config
```
### 4. Test
## ⚙️ Attributes
### Global
- `launcher_name`: The name that will be displayed in the app launcher.
- `permissions`: Permissions to be used by the app (Only for Android for now).
### Android
- `android`
- `apply`: Specifies weather to apply config for Android platform or not.
- `compile_sdk`: SDK to be used to compile de app.
- `min_sdk`: Minimum SDK on which the app can be installed.
- `target_sdk`: Target SDK on which the app can be installed.
- `ndk`: NDK to be used to compile de app.
## ⏳ TODO
- iOS