From 604c82cd7c9c7807ff6c5ca96fbb01d44a4f2c41 Mon Sep 17 00:00:00 2001 From: BullsEye <18664297+BullsEye34@users.noreply.github.com> Date: Thu, 23 Mar 2023 15:25:23 +0530 Subject: [PATCH] Fix spelling and Casing of word (#1697) * Fix spelling and cases Fixes: - Jave to Java on Line 6 - CmakeFile.txt to CMakeFile.txt on Line 41 and 50 * Correct the facts of file CMakeLists.txt --- experimental/pedometer/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/experimental/pedometer/README.md b/experimental/pedometer/README.md index a6ec0deb9..1d26ea800 100644 --- a/experimental/pedometer/README.md +++ b/experimental/pedometer/README.md @@ -3,7 +3,7 @@ This is a demo for some of our tooling around calling platform APIs directly from dart code. This repository represents a demo of a plugin that leverages FFIgen & JNIgen. There is also an example pedometer app that uses the bindings generated from these tools. - [FFIgen](https://pub.dev/packages/ffigen) is used to generate bindings for C, Objective-C and Swift APIs -- [JNIgen](https://pub.dev/packages/jnigen) is used to generate bindings for Jave and Kotlin APIs +- [JNIgen](https://pub.dev/packages/jnigen) is used to generate bindings for Java and Kotlin APIs **These tools are both experimental and are currently a work in progress.** If you find any issues or have feedback, please file it on the corresponding Github repositories. @@ -38,7 +38,7 @@ Note that step counting is only available on physical devices. ## Project stucture -* `src`: Contains the native source code, and a CmakeFile.txt file for building +* `src`: Contains the native source code, and a CMakeLists.txt file for building that source code into a dynamic library. * `lib`: Contains the Dart code that defines the API of the plugin, and which @@ -47,7 +47,7 @@ Note that step counting is only available on physical devices. * platform folders (`ios` etc.): Contains the build files for building and bundling the native code library with the platform application. -* `example`: Contains the native source code, and a CmakeFile.txt file for building +* `example`: Contains the native source code for building that source code into a dynamic library.