From 23de0b6cee0d6675ebcee6969b40ee987f8f050c Mon Sep 17 00:00:00 2001 From: CaramelDunes Date: Fri, 25 Sep 2020 19:34:26 +0200 Subject: [PATCH] Rename to VFR Essentials (from No Fuss PPG). --- README.md | 2 +- android/app/build.gradle | 2 +- android/app/src/debug/AndroidManifest.xml | 2 +- android/app/src/main/AndroidManifest.xml | 2 +- .../main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt | 2 +- android/app/src/profile/AndroidManifest.xml | 2 +- ios/Runner.xcodeproj/project.pbxproj | 6 +++--- ios/Runner/Info.plist | 2 +- lib/flight_recorder.dart | 2 +- lib/main.dart | 2 +- lib/map/flight_map.dart | 2 +- lib/preset_layers.dart | 2 +- lib/route_manager.dart | 2 +- lib/user_agent_tile_provider.dart | 2 +- pubspec.yaml | 2 +- test/widget_test.dart | 2 +- 16 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index ea019eb..75cae5a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# nofussppg +# vfr_essentials A new Flutter project. diff --git a/android/app/build.gradle b/android/app/build.gradle index db8a160..0c6cd4f 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -38,7 +38,7 @@ android { defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "fr.carameldunes.nofussppg" + applicationId "fr.carameldunes.vfressentials" minSdkVersion 16 targetSdkVersion 28 versionCode flutterVersionCode.toInteger() diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index 7077dd5..149edff 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -1,3 +1,3 @@ + package="fr.carameldunes.vfressentials"> diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index a1f125e..9748aff 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="fr.carameldunes.vfressentials"> diff --git a/android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt b/android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt index f31eef6..6fd550a 100644 --- a/android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt +++ b/android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt @@ -1,4 +1,4 @@ -package fr.carameldunes.nofussppg +package fr.carameldunes.vfressentials import io.flutter.embedding.android.FlutterActivity diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml index 7077dd5..149edff 100644 --- a/android/app/src/profile/AndroidManifest.xml +++ b/android/app/src/profile/AndroidManifest.xml @@ -1,3 +1,3 @@ + package="fr.carameldunes.vfressentials"> diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 9b788ab..035c49d 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -299,7 +299,7 @@ "$(inherited)", "$(PROJECT_DIR)/Flutter", ); - PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.nofussppg; + PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.vfressentials; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; @@ -431,7 +431,7 @@ "$(inherited)", "$(PROJECT_DIR)/Flutter", ); - PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.nofussppg; + PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.vfressentials; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; @@ -458,7 +458,7 @@ "$(inherited)", "$(PROJECT_DIR)/Flutter", ); - PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.nofussppg; + PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.vfressentials; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index 00fc584..0a83304 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -11,7 +11,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - nofussppg + vfr_essentials CFBundlePackageType APPL CFBundleShortVersionString diff --git a/lib/flight_recorder.dart b/lib/flight_recorder.dart index 2c55191..54fe090 100644 --- a/lib/flight_recorder.dart +++ b/lib/flight_recorder.dart @@ -1,7 +1,7 @@ import 'dart:io'; import 'package:latlong/latlong.dart'; -import 'package:nofussppg/instruments_data_source.dart'; +import 'package:vfr_essentials/instruments_data_source.dart'; class FlightRecorder { IOSink _outputSink; diff --git a/lib/main.dart b/lib/main.dart index e3faaaf..fc5e533 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -9,7 +9,7 @@ class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( - title: 'NoFussPPG', + title: 'VFR Essentials', theme: ThemeData( primaryColor: Colors.black, visualDensity: VisualDensity.adaptivePlatformDensity, diff --git a/lib/map/flight_map.dart b/lib/map/flight_map.dart index 9000914..6a1cc98 100644 --- a/lib/map/flight_map.dart +++ b/lib/map/flight_map.dart @@ -4,7 +4,7 @@ import 'dart:math'; import 'package:flutter/material.dart'; import 'package:flutter_map/flutter_map.dart'; -import 'package:nofussppg/instruments_data_source.dart'; +import 'package:vfr_essentials/instruments_data_source.dart'; import 'package:latlong/latlong.dart'; import '../preset_layers.dart'; diff --git a/lib/preset_layers.dart b/lib/preset_layers.dart index 0ff4292..e0032bd 100644 --- a/lib/preset_layers.dart +++ b/lib/preset_layers.dart @@ -1,6 +1,6 @@ import 'package:flutter_map/flutter_map.dart'; -import 'package:nofussppg/user_agent_tile_provider.dart'; +import 'package:vfr_essentials/user_agent_tile_provider.dart'; import 'package:path_provider/path_provider.dart'; import 'package:flutter_cache_manager/flutter_cache_manager.dart'; import 'package:path/path.dart' as p; diff --git a/lib/route_manager.dart b/lib/route_manager.dart index 477492f..4214b4e 100644 --- a/lib/route_manager.dart +++ b/lib/route_manager.dart @@ -3,7 +3,7 @@ import 'dart:async'; import 'package:meta/meta.dart'; import 'package:flutter_map/flutter_map.dart'; import 'package:latlong/latlong.dart'; -import 'package:nofussppg/instruments_data_source.dart'; +import 'package:vfr_essentials/instruments_data_source.dart'; class RouteManager { List waypoints = []; diff --git a/lib/user_agent_tile_provider.dart b/lib/user_agent_tile_provider.dart index 7995439..be137b0 100644 --- a/lib/user_agent_tile_provider.dart +++ b/lib/user_agent_tile_provider.dart @@ -1,7 +1,7 @@ import 'package:flutter/widgets.dart'; import 'package:flutter_map/flutter_map.dart'; import 'package:cached_network_image/cached_network_image.dart'; -import 'package:nofussppg/preset_layers.dart'; +import 'package:vfr_essentials/preset_layers.dart'; export 'package:flutter_map/src/layer/tile_provider/mbtiles_image_provider.dart'; diff --git a/pubspec.yaml b/pubspec.yaml index 64ae793..bab2b8e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,4 +1,4 @@ -name: nofussppg +name: vfr_essentials description: A new Flutter project. publish_to: 'none' # Remove this line if you wish to publish to pub.dev diff --git a/test/widget_test.dart b/test/widget_test.dart index 3972a94..82d20af 100644 --- a/test/widget_test.dart +++ b/test/widget_test.dart @@ -8,7 +8,7 @@ import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; -import 'package:nofussppg/main.dart'; +import 'package:vfr_essentials/main.dart'; void main() { testWidgets('Counter increments smoke test', (WidgetTester tester) async {