package name change

This commit is contained in:
Nick Fisher
2021-11-06 12:38:56 +08:00
parent 4a87ccd143
commit 51ba4b2377
29 changed files with 252 additions and 57 deletions

View File

@@ -43,7 +43,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.mimetic_filament_example"
applicationId "com.example.holovox_filament_example"
minSdkVersion 16
targetSdkVersion 30
versionCode flutterVersionCode.toInteger()

View File

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

View File

@@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.mimetic_filament_example">
package="com.example.holovox_filament_example">
<application
android:label="mimetic_filament_example"
android:label="holovox_filament_example"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"

View File

@@ -1,4 +1,4 @@
package com.example.mimetic_filament_example
package com.example.holovox_filament_example
import io.flutter.embedding.android.FlutterActivity

View File

@@ -1,4 +1,4 @@
package com.example.mimetic_filament_example
package com.example.holovox_filament_example
import io.flutter.embedding.android.FlutterActivity

View File

@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.mimetic_filament_example">
package="com.example.holovox_filament_example">
<!-- 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>mimetic_filament_example</string>
<string>holovox_filament_example</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>

View File

@@ -4,8 +4,8 @@ import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:mimetic_filament/filament_controller.dart';
import 'package:mimetic_filament/view/filament_widget.dart';
import 'package:holovox_filament/filament_controller.dart';
import 'package:holovox_filament/view/filament_widget.dart';
void main() {
runApp(const MyApp());

View File

@@ -1,5 +1,5 @@
name: mimetic_filament_example
description: Demonstrates how to use the mimetic_filament plugin.
name: holovox_filament_example
description: Demonstrates how to use the holovox_filament plugin.
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
@@ -18,7 +18,7 @@ dependencies:
flutter:
sdk: flutter
mimetic_filament:
holovox_filament:
path: ../
cupertino_icons: ^1.0.2

View File

@@ -8,7 +8,7 @@
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:mimetic_filament_example/main.dart';
import 'package:holovox_filament_example/main.dart';
void main() {
testWidgets('Verify Platform version', (WidgetTester tester) async {