The sensing plugin for the Smart Sensing Library
Clone the repo
git clone https://gitlab.uni-ulm.de/se-anwendungsprojekt-22-23/sensing-plugin.git
Execute setup script
On Windows run:
.\setup.ps1
On Linux/macOS run:
bash setup.sh
Your setup is now complete and you're good to go.
Pigeon is a plugin that generates API code for all three of our platforms (Dart, Android, iOS).
The API code is defined in the ./pigeons
directory. If the content changes, run the following command to keep the code up to date.
On Windows run:
.\run_pigeon.ps1
On Linux/macOS run:
bash run_pigeon.sh
We use Android Studio to write code for our Android sensor implementations.
In order for Android Studio to recognize all dependencies, it is mandatory to open the ./example/android/
directory with Android Studio. If any other directory is opened, the dependencies won't be recognized.
We use Ktlint to lint our Kotlin code.
For a simple check, run:
./gradlew ktlintCheck
For Ktlint to format the code automatically, run:
./gradlew ktlintFormat
For the development of the iOS platform code, which is written in Swift, we use Xcode.
In order for Xcode to recognize all dependencies and correctly set up the project structure, it is mandatory to open the ./example/ios/
directory with Xcode.
To lint the Swift code we use Swiftlint (see here for installation guide). If Swiftlint is installed successfully, you can manually check the Swift files by running
swiftlint
and correct fixable linting issues with
swiftlint --fix
For further configuration of the swiftlint
command, it is recommended to use a .swiftlint.yml
file, which already exists in this repository and can be extended.
If you want Swiftlint to be automatically run by Xcode, you need to set up a new "Run script phase" in the "Build phases" of your target and execute the swiftlint
command there, as described here.