Skip to content

Commit

Permalink
Reverting the dev.flutter -> com.example change (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
domesticmouse committed Jan 9, 2020
1 parent 2ec96ef commit eea6f18
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion animations/android/app/build.gradle
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.example.animations"
applicationId "dev.flutter.animations"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
Expand Down
2 changes: 1 addition & 1 deletion animations/android/app/src/debug/AndroidManifest.xml
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.animations">
package="dev.flutter.animations">
<!-- 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 animations/android/app/src/main/AndroidManifest.xml
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.animations">
package="dev.flutter.animations">
<!-- 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
Expand Down
@@ -1,4 +1,4 @@
package com.example.animations
package dev.flutter.animations

import androidx.annotation.NonNull;
import io.flutter.embedding.android.FlutterActivity
Expand Down
2 changes: 1 addition & 1 deletion animations/android/app/src/profile/AndroidManifest.xml
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.animations">
package="dev.flutter.animations">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
Expand Down
6 changes: 3 additions & 3 deletions animations/ios/Runner.xcodeproj/project.pbxproj
Expand Up @@ -320,7 +320,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.animations;
PRODUCT_BUNDLE_IDENTIFIER = dev.flutter.animations;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
Expand Down Expand Up @@ -454,7 +454,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.animations;
PRODUCT_BUNDLE_IDENTIFIER = dev.flutter.animations;

This comment has been minimized.

Copy link
@krishkdev

krishkdev Mar 13, 2020

not n

PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
Expand All @@ -481,7 +481,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.animations;
PRODUCT_BUNDLE_IDENTIFIER = dev.flutter.animations;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
Expand Down
4 changes: 2 additions & 2 deletions animations/macos/Runner/Configs/AppInfo.xcconfig
Expand Up @@ -8,7 +8,7 @@
PRODUCT_NAME = animations

// The application's bundle identifier
PRODUCT_BUNDLE_IDENTIFIER = com.example.animations
PRODUCT_BUNDLE_IDENTIFIER = dev.flutter.animations

// The copyright displayed in application information
PRODUCT_COPYRIGHT = Copyright © 2020 com.example. All rights reserved.
PRODUCT_COPYRIGHT = Copyright © 2020 dev.flutter. All rights reserved.

0 comments on commit eea6f18

Please sign in to comment.