Skip to content

Commit

Permalink
change hypen in package name
Browse files Browse the repository at this point in the history
  • Loading branch information
kangsudal committed Nov 5, 2019
1 parent 1ae67fa commit 32fe3f9
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.kangsudal.mybook-diary"
applicationId "com.kangsudal.mybook_diary"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kangsudal.mybook-diary">
package="com.kangsudal.mybook_diary">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kangsudal.mybook-diary">
package="com.kangsudal.mybook_diary">

<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.kangsudal.mybook-diary
package com.kangsudal.mybook_diary

import android.os.Bundle

Expand Down
2 changes: 1 addition & 1 deletion android/app/src/profile/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kangsudal.mybook-diary">
package="com.kangsudal.mybook_diary">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
Expand Down
2 changes: 1 addition & 1 deletion ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>mybook-diary</string>
<string>mybook_diary</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:mybook-diary/page/shelfdetailpage.dart';
import 'package:mybook_diary/page/shelfdetailpage.dart';

import 'page/calendarpage.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/page/shelfdetailpage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ class _ShelfDetailPageState extends State<ShelfDetailPage> {
return Scaffold(
appBar: AppBar(
title: Text("${widget.bookShelfName}/$_bookCounter"),
actions: <Widget>[
IconButton(icon: Icon(Icons.edit),color: Colors.white,),
IconButton(icon: Icon(Icons.delete_forever),color: Colors.white,)
],
),
body: Center(
child:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: mybook-diary
name: mybook_diary
description: A new Flutter project.

# The following defines the version and build number for your application.
Expand Down
2 changes: 1 addition & 1 deletion test/widget_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';

import 'package:mybook-diary/main.dart';
import 'package:mybook_diary/main.dart';

void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
Expand Down

0 comments on commit 32fe3f9

Please sign in to comment.