From adf7bc63ea4566be6dd86459cd5a24fd1e8f6ca2 Mon Sep 17 00:00:00 2001 From: CaramelDunes Date: Mon, 28 Sep 2020 22:04:36 +0200 Subject: [PATCH] Rename to VFR Light (from VFR Essentials). --- README.md | 2 +- android/app/build.gradle | 3 +-- android/app/src/debug/AndroidManifest.xml | 2 +- android/app/src/main/AndroidManifest.xml | 2 +- .../fr/carameldunes/{nofussppg => vfrlight}/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(+), 19 deletions(-) rename android/app/src/main/kotlin/fr/carameldunes/{nofussppg => vfrlight}/MainActivity.kt (71%) diff --git a/README.md b/README.md index 75cae5a..9c8cf63 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# vfr_essentials +# vfr_light A new Flutter project. diff --git a/android/app/build.gradle b/android/app/build.gradle index 0c6cd4f..e1ace84 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -37,8 +37,7 @@ android { } defaultConfig { - // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "fr.carameldunes.vfressentials" + applicationId "fr.carameldunes.vfrlight" minSdkVersion 16 targetSdkVersion 28 versionCode flutterVersionCode.toInteger() diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index 149edff..83bd772 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -1,3 +1,3 @@ + package="fr.carameldunes.vfrlight"> diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 9748aff..8cbe2e9 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="fr.carameldunes.vfrlight"> diff --git a/android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt b/android/app/src/main/kotlin/fr/carameldunes/vfrlight/MainActivity.kt similarity index 71% rename from android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt rename to android/app/src/main/kotlin/fr/carameldunes/vfrlight/MainActivity.kt index 6fd550a..1a8cfe0 100644 --- a/android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt +++ b/android/app/src/main/kotlin/fr/carameldunes/vfrlight/MainActivity.kt @@ -1,4 +1,4 @@ -package fr.carameldunes.vfressentials +package fr.carameldunes.vfrlight import io.flutter.embedding.android.FlutterActivity diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml index 149edff..83bd772 100644 --- a/android/app/src/profile/AndroidManifest.xml +++ b/android/app/src/profile/AndroidManifest.xml @@ -1,3 +1,3 @@ + package="fr.carameldunes.vfrlight"> diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 035c49d..69f68f7 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.vfressentials; + PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.vfrlight; 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.vfressentials; + PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.vfrlight; 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.vfressentials; + PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.vfrlight; 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 0a83304..3a0c971 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -11,7 +11,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - vfr_essentials + vfr_light CFBundlePackageType APPL CFBundleShortVersionString diff --git a/lib/flight_recorder.dart b/lib/flight_recorder.dart index 54fe090..f11994e 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:vfr_essentials/instruments_data_source.dart'; +import 'package:vfr_light/instruments_data_source.dart'; class FlightRecorder { IOSink _outputSink; diff --git a/lib/main.dart b/lib/main.dart index fc5e533..313a9ba 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: 'VFR Essentials', + title: 'VFR Light', theme: ThemeData( primaryColor: Colors.black, visualDensity: VisualDensity.adaptivePlatformDensity, diff --git a/lib/map/flight_map.dart b/lib/map/flight_map.dart index 6a1cc98..b79a6df 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:vfr_essentials/instruments_data_source.dart'; +import 'package:vfr_light/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 e0032bd..49b2db7 100644 --- a/lib/preset_layers.dart +++ b/lib/preset_layers.dart @@ -1,6 +1,6 @@ import 'package:flutter_map/flutter_map.dart'; -import 'package:vfr_essentials/user_agent_tile_provider.dart'; +import 'package:vfr_light/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 4214b4e..1fb4412 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:vfr_essentials/instruments_data_source.dart'; +import 'package:vfr_light/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 be137b0..a839a53 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:vfr_essentials/preset_layers.dart'; +import 'package:vfr_light/preset_layers.dart'; export 'package:flutter_map/src/layer/tile_provider/mbtiles_image_provider.dart'; diff --git a/pubspec.yaml b/pubspec.yaml index bab2b8e..a0b1bfc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,4 +1,4 @@ -name: vfr_essentials +name: vfr_light 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 82d20af..0fcf229 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:vfr_essentials/main.dart'; +import 'package:vfr_light/main.dart'; void main() { testWidgets('Counter increments smoke test', (WidgetTester tester) async {