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
pull/1711/head
BullsEye 2 years ago committed by GitHub
parent 3bafa557f7
commit 604c82cd7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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. 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 - [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. **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 ## 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. that source code into a dynamic library.
* `lib`: Contains the Dart code that defines the API of the plugin, and which * `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 * platform folders (`ios` etc.): Contains the build files
for building and bundling the native code library with the platform application. 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. that source code into a dynamic library.

Loading…
Cancel
Save