Scan products in the supermarket and get to truly know your basket
If you have any question, please contact Victor Aubin [email protected]
- Scan products and get info from the Open Food Facts API
- Retrieve a list of all your scans
- Add a product to today's basket
- Get statistics and charts on your baskets data
- Fill in your allergies and get alerted when you might be allergic to a scanned product
Follow the NodeJS install tutorial (npm is included) or :
sudo apt-get install npm
sudo npm install -g react-native-cli
You need NodeJS and Java installed on your computer.
If you need to reset your ios and android projects, please run :
rm -rf android/ ios/
react-native upgrade
(reply no
to all the questions)
then you can update your android and ios folders with the following commands
npm install
react-native link
To finalize installation of react-native-gesture-handler
for Android, be sure to make the necessary modifications to MainActivity.java:
package com.reactnavigation.example;
import com.facebook.react.ReactActivity;
import com.facebook.react.ReactActivityDelegate;
import com.facebook.react.ReactRootView;
import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView;
public class MainActivity extends ReactActivity {
@Override
protected String getMainComponentName() {
return "Example";
}
@Override
protected ReactActivityDelegate createReactActivityDelegate() {
return new ReactActivityDelegate(this, getMainComponentName()) {
@Override
protected ReactRootView createRootView() {
return new RNGestureHandlerEnabledRootView(MainActivity.this);
}
};
}
}
If you want to prefill the basket and product databases with some products, uncomment the corresponding lines in
App.js
before running the app.
Testing on an Android phone is faster and a little bit easier than testing on an iPhone which requires a MacBook.
Connect your device to your computer. Make sure your laptop and your phone are on the same Wi-Fi network.
Instructions for Android are in the React Native installation guide.
- Select
Building Projects with Native Code
tab, your target OS (Macos, Windows or Linux) and your target OS (Android) - Follow
Java Development Kit
instructions - Follow
Android development environment
instructions
You then need to enable USB Debugging on your Android device.
After you installed a JDK and an Android development environment, you can read the next paragraphs to run the app in your Android device.
In the project folder:
react-native run-android
-
Error when upgrading: "
process.stdin.setRawMode is not a function
": this error seems to occur when trying toreact-native upgrade
in a MINGW64 terminal. Please use a different terminal instead. -
If you have the error "
java 11.0 not found
" you need to use gradle 5.0 instead of 4.4, just change it inandroid/gradle/wrapper/gradle-wrapper.properties
-
"
SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.
" : add alocal.properties
file in theandroid/
folder with "sdk.dir=path/to/android/sdk
" -
"
Failed to install the following Android SDK packages as some licences have not been accepted.
" : install the missing components using the Android Studio SDK Manager (Android SDK Build-Tools 27.0.3). -
"
Cannot add task 'wrapper' as a task with that name already exists.
" : rename the task 'wrapper' to 'wrapper2' for example at the end ofbuild.gradle
.
In order to build a release APK file:
- Create a release key with the following command:
keytool -genkey -v -keystore my-release-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000
, answer to the different questions and move the generatedmy-release-key.keystore
file under theandroid/app
folder. - Run
cp android/gradle.properties.template android/gradle.properties
or copy paste the content ofandroid/gradle.properties.template
inandroid/gradle.properties
. - Replace the
*****
by your release key password in theandroid/gradle.properties
file. - Make sure to remove all
default.realm.*
andrealm-*
folders and files generated by Jest tests. - Make sure to quit the React Native packager (launched by
react-native run-android
).
Finally you can run the following command to start building the release APK file :
react-native run-android --variant=release
The generated APK file will be located at android/app/build/output/apk/release/app-release.apk
.
Don't forget to change version number in android/app/build.gradle
.
You can then upload this apk to the Google Play Store.
In order to test on an iPhone, you need to develop on a MacBook.
React Native - Running On Device
You need to register an Apple developer account for free by simply logging in with your Apple ID.
(If you want to be able to upload the app on the App Store, you'll need to enroll in the Apple Developer program.)
Then download XCode and open the product-scanner/ios/NutriThink.xcodeproj
project in XCode.
For the 1st time: configure code signing for the project.
Then if everything is set up correctly, your device will be listed as the build target in the Xcode toolbar, and it will also appear in the Devices panel. You can now press the Build and run button (⌘R) or select Run from the Product menu. The app will launch on your device shortly.
Additional things you need to do:
-
Authorize applications from your Apple developer account on your iPhone (Settings/General/Manage profiles and device)
-
If you have updated the
ios/
folder, add inproduct-scanner/ios/NutriThink/Info.plist
:<key>NSCameraUsageDescription</key> <string>We need access to your device camera in order to allow you to scan products.</string>
Building the app for production
If the app is not yet set for release, configure release scheme: go to Product → Scheme → Edit Scheme. Select the Run tab in the sidebar, then set the Build Configuration dropdown to Release
.
You can now build the app for release by tapping ⌘B or selecting Product → Build from the menu bar. Once built for release, you'll be able to distribute the app to beta testers and submit the app to the App Store.
To run the release version on your phone: just tap ⌘R or select Run from the Product menu.
First install jest: npm install -g jest
Run tests: jest
Jest creates snapshots of the current output and later compares the output to the snapshots it has saved.
If you want to change the expected output (and the snapshots so that future tests won't fail), run jest -u
.
We are using the Open Food Facts API.