Skip to content

Commit 46a61a8

Browse files
authored
Rename from native-add -> viam_flutter_nmea #3
Rename from native-add -> viam_flutter_nmea
2 parents b3b7500 + 2599db2 commit 46a61a8

File tree

14 files changed

+118
-121
lines changed

14 files changed

+118
-121
lines changed

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// The Android Gradle Plugin builds the native code with the Android NDK.
22

3-
group 'com.example.native_add'
3+
group 'com.example.viam_flutter_nmea'
44
version '1.0'
55

66
buildscript {
@@ -26,7 +26,7 @@ apply plugin: 'com.android.library'
2626

2727
android {
2828
if (project.android.hasProperty("namespace")) {
29-
namespace 'com.example.native_add'
29+
namespace 'com.example.viam_flutter_nmea'
3030
}
3131

3232
// Bumping the plugin compileSdkVersion requires all clients of this plugin

android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'native_add'
1+
rootProject.name = 'viam_flutter_nmea'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.native_add">
2+
package="com.example.viam_flutter_nmea">
33
</manifest>

example/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# native_add_example
1+
# viam_flutter_nmea_example
22

3-
Demonstrates how to use the native_add plugin.
3+
Demonstrates how to use the viam_flutter_nmea plugin.
44

55
## Getting Started
66

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if (flutterVersionName == null) {
2323
}
2424

2525
android {
26-
namespace "com.example.native_add_example"
26+
namespace "com.example.viam_flutter_nmea_example"
2727
compileSdkVersion flutter.compileSdkVersion
2828
ndkVersion flutter.ndkVersion
2929

@@ -42,7 +42,7 @@ android {
4242

4343
defaultConfig {
4444
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
45-
applicationId "com.example.native_add_example"
45+
applicationId "com.example.viam_flutter_nmea_example"
4646
// You can update the following values to match your application needs.
4747
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
4848
minSdkVersion flutter.minSdkVersion

example/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
22
<application
3-
android:label="native_add_example"
3+
android:label="viam_flutter_nmea_example"
44
android:name="${applicationName}"
55
android:icon="@mipmap/ic_launcher">
66
<activity

example/android/app/src/main/kotlin/com/example/native_add_example/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.native_add_example
1+
package com.example.viam_flutter_nmea_example
22

33
import io.flutter.embedding.android.FlutterActivity
44

example/ios/Runner/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleName</key>
16-
<string>native_add_example</string>
16+
<string>viam_flutter_nmea_example</string>
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>

example/lib/main.dart

Lines changed: 102 additions & 103 deletions
Large diffs are not rendered by default.

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies:
3131
flutter:
3232
sdk: flutter
3333

34-
native_add:
34+
viam_flutter_nmea:
3535
# When depending on this package from a real application you should use:
3636
# viam_flutter_nmea: ^x.y.z
3737
# See https://dart.dev/tools/pub/dependencies#version-constraints

0 commit comments

Comments
 (0)