status-react/nix/mobile/android/maven-and-npm-deps/maven
yenda 36ad6fb762
support for local notification service on Android
- add option in profile on Android to enable local notifications
- use foreground service to keep the app alive when running in the background
- implement enable and disbable notification function in status module

When enabling notifications, a foreground service is started that displays
a sticky notification to make the user aware that the app is running in the
background.
Notifications are updated whenever a new.message signal is handled on java side.
Currently only one to one chats are generating notifications but that can be
easily extended to other types of messages, including mentions and keywords.
The ens name of the user as well as keywords to follow should then be passed
to the native side when calling the enable function.

Signed-off-by: yenda <eric@status.im>
2019-11-07 09:59:12 +01:00
..
README.md Upgrade react-native to 0.60.5 2019-09-12 16:13:42 +02:00
default.nix nix: Apply some nixfmt suggestions and fix macOS status-go buildInputs 2019-07-29 18:01:07 +02:00
fetch-maven-deps.sh fix matching deps with only one dependency 2019-10-25 18:00:54 +02:00
generate-nix.sh nix: Pass target-os to Nix script 2019-08-20 10:02:46 +02:00
maven-inputs.txt support for local notification service on Android 2019-11-07 09:59:12 +01:00
maven-sources.nix support for local notification service on Android 2019-11-07 09:59:12 +01:00
reactnative-android-native-deps.nix Upgrade react-native to 0.60.5 2019-09-12 16:13:42 +02:00
shell.nix Use flock to create exclusive locks on node_modules/ 2019-09-13 17:46:18 +02:00

README.md

Maven dependencies Nix wrapper

Overview

This folder contains the Nix expression (maven-sources.nix) that downloads all Maven dependencies required for Gradle, as well as the scripts used to generate that file, namely:

  • generate-nix.sh: This is the main entry point script, which will use Gradle to determine the dependencies (into maven-inputs.txt), and nix/tools/maven/maven-inputs2nix.sh to generate default.nix from those dependencies.
  • fetch-maven-deps.sh: This script does the heavy work of determining Gradle dependencies and outputting a maven-inputs.txt file listing the external URLs.
  • reactnative-android-native-deps.nix: Contains the Nix attribute set used to download the React Native dependencies used in React Native Gradle scripts.
  • maven-inputs.txt: A list of Maven dependenciy URLs that can be used by nix/tools/maven/maven-inputs2nix.sh to generate maven-sources.nix.