Renamed app to "Server pinger" #1

Merged
Jeremy Kescher merged 1 commit from jeremy/0127/rename-app into master 2020-01-27 10:22:35 +00:00
10 changed files with 13 additions and 13 deletions

View file

@ -1,6 +1,6 @@
# flutter_demo
# Server pinger
A new Flutter application.
A Flutter application that checks if servers are reachable.
## Getting Started

View file

@ -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()

View file

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.htldonaustadt.flutter_demo">
package="at.htldonaustadt.server_pinger">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->

View file

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.htldonaustadt.flutter_demo">
package="at.htldonaustadt.server_pinger">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
@ -7,7 +7,7 @@
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="flutter_demo"
android:label="Server pinger"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"

View file

@ -1,4 +1,4 @@
package at.htldonaustadt.flutter_demo
package at.htldonaustadt.server_pinger
import androidx.annotation.NonNull;
import io.flutter.embedding.android.FlutterActivity

View file

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.htldonaustadt.flutter_demo">
package="at.htldonaustadt.server_pinger">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->

View file

@ -11,7 +11,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>flutter_demo</string>
<string>server_pinger</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>

View file

@ -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'),
);
}
}

View file

@ -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.

View file

@ -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 {