renamed 'buyeeb' to 'buypeeb' 0uo

This commit is contained in:
Lynne Megido 2020-09-30 17:36:51 +10:00
parent 395778a623
commit 3f3e2c5f2e
Signed by: lynnesbian
GPG Key ID: F0A184B5213D9F90
13 changed files with 31 additions and 31 deletions

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 "space.lynnesbian.buyeeb_mobile"
applicationId "space.lynnesbian.buypeeb_mobile"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()

View File

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="space.lynnesbian.buyeeb_mobile">
package="space.lynnesbian.buypeeb_mobile">
<!-- 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="space.lynnesbian.buyeeb_mobile">
package="space.lynnesbian.buypeeb_mobile">
<!-- 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="buyeeb_mobile"
android:label="buypeeb_mobile"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"

View File

@ -1,4 +1,4 @@
package space.lynnesbian.buyeeb_mobile
package space.lynnesbian.buypeeb_mobile
import io.flutter.embedding.android.FlutterActivity

View File

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

View File

@ -310,7 +310,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = space.lynnesbian.buyeebMobile;
PRODUCT_BUNDLE_IDENTIFIER = space.lynnesbian.buypeebMobile;
PRODUCT_NAME = "$(TARGET_NAME)";
VERSIONING_SYSTEM = "apple-generic";
};
@ -438,7 +438,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = space.lynnesbian.buyeebMobile;
PRODUCT_BUNDLE_IDENTIFIER = space.lynnesbian.buypeebMobile;
PRODUCT_NAME = "$(TARGET_NAME)";
VERSIONING_SYSTEM = "apple-generic";
};
@ -461,7 +461,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = space.lynnesbian.buyeebMobile;
PRODUCT_BUNDLE_IDENTIFIER = space.lynnesbian.buypeebMobile;
PRODUCT_NAME = "$(TARGET_NAME)";
VERSIONING_SYSTEM = "apple-generic";
};

View File

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

View File

@ -15,9 +15,9 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import 'package:buyeeb_mobile/pages/main_page.dart';
import 'package:buyeeb_mobile/pages/splash.dart';
import 'package:buyeeb_mobile/pages/view_listing.dart';
import 'package:buypeeb_mobile/pages/main_page.dart';
import 'package:buypeeb_mobile/pages/splash.dart';
import 'package:buypeeb_mobile/pages/view_listing.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'models/user_listings.dart';
@ -27,17 +27,17 @@ void main() {
ChangeNotifierProvider(
create: (context) => UserListings(),
child: MaterialApp(
initialRoute: '/splash',
routes: {
'/': (context) => RouteHome(),
'/splash': (context) => RouteSplash(),
'/view_listing': (context) => RouteViewListing(),
},
initialRoute: '/splash',
routes: {
'/': (context) => RouteHome(),
'/splash': (context) => RouteSplash(),
'/view_listing': (context) => RouteViewListing(),
},
title: "Buypeeb Mobile",
theme: ThemeData(
primarySwatch: Colors.pink,
),
title: "Buypeeb Mobile",
theme: ThemeData(
primarySwatch: Colors.pink,
),
)
),
);

View File

@ -1,5 +1,5 @@
import 'dart:collection';
import 'package:buyeeb_mobile/models/yahoo_auctions_item.dart';
import 'package:buypeeb_mobile/models/yahoo_auctions_item.dart';
import 'package:flutter/foundation.dart';
class UserListings extends ChangeNotifier {

View File

@ -1,5 +1,5 @@
import 'package:buyeeb_mobile/models/user_listings.dart';
import 'package:buyeeb_mobile/models/yahoo_auctions_item.dart';
import 'package:buypeeb_mobile/models/user_listings.dart';
import 'package:buypeeb_mobile/models/yahoo_auctions_item.dart';
import 'package:flutter/material.dart';
import 'package:sprintf/sprintf.dart';
import 'package:provider/provider.dart';

View File

@ -1,5 +1,5 @@
import 'package:buyeeb_mobile/models/user_listings.dart';
import 'package:buyeeb_mobile/models/yahoo_auctions_item.dart';
import 'package:buypeeb_mobile/models/user_listings.dart';
import 'package:buypeeb_mobile/models/yahoo_auctions_item.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'dart:math';

View File

@ -1,4 +1,4 @@
name: buyeeb_mobile
name: buypeeb_mobile
description: Buypeeb for mobile devices
# The following line prevents the package from being accidentally published to

View File

@ -5,11 +5,11 @@
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:buyeeb_mobile/pages/main_page.dart';
import 'package:buypeeb_mobile/pages/main_page.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:buyeeb_mobile/main.dart';
import 'package:buypeeb_mobile/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {