From bc313c7ad27584d86d9e7cb50ef6166d0fcbf963 Mon Sep 17 00:00:00 2001 From: Jeremy Kescher Date: Mon, 27 Jan 2020 11:20:57 +0100 Subject: [PATCH] Renamed app to "Server pinger" --- README.md | 4 ++-- android/app/build.gradle | 2 +- android/app/src/debug/AndroidManifest.xml | 2 +- android/app/src/main/AndroidManifest.xml | 4 ++-- .../main/kotlin/at/htldonaustadt/flutter_demo/MainActivity.kt | 2 +- android/app/src/profile/AndroidManifest.xml | 2 +- ios/Runner/Info.plist | 2 +- lib/main.dart | 4 ++-- pubspec.yaml | 2 +- test/widget_test.dart | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index f7bfe66..c382e55 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# flutter_demo +# Server pinger -A new Flutter application. +A Flutter application that checks if servers are reachable. ## Getting Started diff --git a/android/app/build.gradle b/android/app/build.gradle index a5baddd..6b0543a 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 "at.htldonaustadt.flutter_demo" + applicationId "at.htldonaustadt.server_pinger" minSdkVersion 16 targetSdkVersion 28 versionCode flutterVersionCode.toInteger() diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index fd37fd1..def6898 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="at.htldonaustadt.server_pinger"> diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 0b0bcdd..c867e9a 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="at.htldonaustadt.server_pinger"> + package="at.htldonaustadt.server_pinger"> diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index abbecfc..f520ef9 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -11,7 +11,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - flutter_demo + server_pinger CFBundlePackageType APPL CFBundleShortVersionString diff --git a/lib/main.dart b/lib/main.dart index 6e990e5..dbbc1ed 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -7,7 +7,7 @@ class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( - title: 'Flutter Demo', + title: 'Server pinger', theme: ThemeData( // This is the theme of your application. // @@ -20,7 +20,7 @@ class MyApp extends StatelessWidget { // is not restarted. primarySwatch: Colors.cyan, ), - home: MyHomePage(title: 'Flutter Demo Home Page'), + home: MyHomePage(title: 'Server pinger'), ); } } diff --git a/pubspec.yaml b/pubspec.yaml index 45d1342..0ccd8de 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,4 +1,4 @@ -name: flutter_demo +name: server_pinger description: A new Flutter application. # The following defines the version and build number for your application. diff --git a/test/widget_test.dart b/test/widget_test.dart index aebc4b1..c097b9d 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:flutter_demo/main.dart'; +import 'package:server_pinger/main.dart'; void main() { testWidgets('Counter increments smoke test', (WidgetTester tester) async { -- 2.47.0