All Projects → Prisma-care → Mobile App

Prisma-care / Mobile App

Color your memories

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Mobile App

Ionic Framework
A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.
Stars: ✭ 45,802 (+46164.65%)
Mutual labels:  ionic, frontend
Chat Ui Kit React
Build your own chat UI with React components in few minutes. Chat UI Kit from chatscope is an open source UI toolkit for developing web chat applications.
Stars: ✭ 131 (+32.32%)
Mutual labels:  social, frontend
Ng Zorro Antd Mobile
A configurable Mobile UI components based on Ant Design Mobile and Angular. 🐜
Stars: ✭ 709 (+616.16%)
Mutual labels:  ionic, frontend
Nipplejs
🎮 A virtual joystick for touch capable interfaces.
Stars: ✭ 1,313 (+1226.26%)
Mutual labels:  frontend
Vycontrol
vyos frontend
Stars: ✭ 92 (-7.07%)
Mutual labels:  frontend
Shariff
👮 Shariff enables website users to share their favorite content without compromising their privacy.
Stars: ✭ 1,333 (+1246.46%)
Mutual labels:  frontend
Ember Testing Guide
Ember.js testing guides, practicies, examples
Stars: ✭ 98 (-1.01%)
Mutual labels:  frontend
Frontend Books
📚 list of free books about front-end development
Stars: ✭ 92 (-7.07%)
Mutual labels:  frontend
Frontendmastersdownloader
FrontendMasters Downloader - A tool to keep offline copy of frontendmasters courses
Stars: ✭ 96 (-3.03%)
Mutual labels:  frontend
Learningrecord
学习资料汇总、阅读记录,持续学习,每天进步一点点.🏫🏫
Stars: ✭ 95 (-4.04%)
Mutual labels:  frontend
Jetpack
🚀 Jetpack – Webpack made more convenient.
Stars: ✭ 1,326 (+1239.39%)
Mutual labels:  frontend
Flutterweb Pizza
Simple Pizza webpage made with Flutter Web
Stars: ✭ 93 (-6.06%)
Mutual labels:  frontend
Ionic2 City Picker
ionic2的省市区三级联动组件
Stars: ✭ 95 (-4.04%)
Mutual labels:  ionic
Viewi
Powerful tool for building full-stack and completely reactive user interfaces using PHP
Stars: ✭ 93 (-6.06%)
Mutual labels:  frontend
Ion Digit Keyboard V2
A digital keyboard plugin to use in Ionic 2 applications.
Stars: ✭ 97 (-2.02%)
Mutual labels:  ionic
Holyfucktheelectionistomorrow
holy fuck
Stars: ✭ 92 (-7.07%)
Mutual labels:  frontend
Awesome Ionic
😎 A curated list of amazingly awesome Ionic libraries, resources and solutions.
Stars: ✭ 1,340 (+1253.54%)
Mutual labels:  ionic
Unityionicintegration
A guide to integrating Unity 3D content into an Ionic app and sending messages between them (for Android & iOS)(tested with Vuforia plugin)
Stars: ✭ 94 (-5.05%)
Mutual labels:  ionic
Federation
Python library for abstracting social federation protocols
Stars: ✭ 93 (-6.06%)
Mutual labels:  social
Generator Ngx Rocket
🚀 Extensible Angular 11+ enterprise-grade project generator
Stars: ✭ 1,329 (+1242.42%)
Mutual labels:  ionic

color your memories

Prisma is an app that strengthens the relationship between people with memory loss and the people close to them. It does this by providing a living, collaborative digital photo album that can be populated with content of interest. The content currently includes pictures & text added by family members, or relevant historical pictures and stories from heritage organizations.

This repository hosts the frontend of the project: a mobile app based on the Ionic framework. The app communicates with a RESTful API to gather and save data.

Be sure to check out our home page prisma.care for more information.

Contributing

Want to help out? First, peruse the Prisma wiki to learn about the roadmap, milestones and approach to developing software for people with dementia.

History

Project Prisma was part of Open Knowledge Belgium's open Summer of Code 2017. A student team coached by Frederik Vincx (@fritsbits) worked on it in July 2017:

The app was conceived in a one-month collaborative design project in a care home in Zonhoven, Belgium, in January 2017. Together with personel and dementia design researchers the team honed in on a static prototype that was later refined during the Open Summer of Code. More info about it in this blog post.

Installation

The latest release version can be downloaded for Android on the Google Play Store. An iOS version is coming soon!

With some command line & git knowledge, you can also build the development version of the app yourself. See the following section.

Building the app

Setting up the development environment

  1. Clone the repository

    git clone https://github.com/Prisma/mobile-app.git
    
  2. Install npm if you haven't already.

  3. On the command line inside the repository directory, install Cordova, Ionic and Gulp. Then install the dependencies.

    npm install -g cordova ionic gulp
    npm install
    

    These commands can take a while to finish.

  4. Set up your environment with API keys. Acquire a valid Prisma API key & YouTube API key (ask us!) and modify environment.ts with these values. Run gulp develop in the root to initialize the development environment.

Now you can run the app in various ways. Option a is used to test the app quickly in a web browser. Option b almost does the same, but adds in support for more features. Option c allows you to test the app on an Android device.

Option a - Ionic web server

Ionic comes with a local web server for development purposes that serves the application & recompiles on file changes.

Because cordova.js is not included, phone-specific features will not work. Notably, adding content doesn't work.

ionic serve

Option b - Cordova Browser build

Comparable to the previous method, but here a browser implementation of Cordova is included. Note that this implementation is not fully supported yet.

ionic cordova platform add browser
ionic cordova run browser -lc # starts a webserver, -lc enables live reloading & console logging

Note: cordova run browser defaults to Google Chrome and will crash if it is not installed. You can use the option --target=firefox to specify another browser.

Option c - Android live build

This method will build, transfer & start the app on your Android device. You'll need to connect it to your PC with a USB cable beforehand. The device needs to be in developer mode with USB Debugging enabled (search how to do this for your device).

On your PC, you'll need the Java JDK (note: Cordova doesn't work with Java 1.9 yet, install 1.8) and Android Studio. Additionally, make sure the right Android SDK Platform tools are installed. Do this in the Android Studio settings: in the Welcome screen, go to Configure -> SDK Platforms & check the platform that matches your device's Android version.

Now, make sure that the necessary folders are in your PATH so that the build executables can be found in your CLI environment.

On a MacOS/Linux system with a default Android Studio install the following lines need to be added to the shell configuration file (~/.bashrc, ~/.zshrc, ...). The locations might be different on your system, depending on where you installed Android Studio. More info here.

# Substitute with the correct paths & Gradle version for your system 

# Linux 
PATH=$PATH:$HOME/Android/Sdk/platform-tools:$HOME/Android/Sdk/tools
ANDROID_HOME=$HOME/Android/Sdk
PATH=$PATH:/opt/android-studio/gradle/gradle-3.2/bin

# Mac OS 
PATH=$PATH:/Applications/Android\ Studio.app/Contents/gradle/gradle-4.1/bin
# Make gradle accessible for the cli user (needs to be executed only once)
chmod 766 /Applications/Android\ Studio.app/Contents/gradle/gradle-4.1/bin/gradle

Now you can build & transfer the project to your device using the Cordova run command.

ionic cordova run android

The first time you run this command it installs all used cordova plugin commads. This can take a while.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].