-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add mobile notifications #1624
Add mobile notifications #1624
Conversation
- Set version 0.8.0 - Use Bisq_notifications as app name - Improve Relay - Fix build issues
Background App refresh need to be enabled (wlan+mobile data) and bisq enabled (settings/general/Background App refresh). If that is not enabled the app does not receive the messages even if it is open. Apple has some weird logic who the name such "features" - you need Background App refresh enabled to receive data if the app is not in background.... I think another reason to push Apple in background...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please reset the version and naming used for the local test build. Besides that utACK
build.gradle
Outdated
@@ -15,7 +16,7 @@ apply plugin: 'witness' | |||
apply plugin: 'com.github.johnrengelman.shadow' | |||
|
|||
group = 'network.bisq' | |||
version = '0.7.1-SNAPSHOT' | |||
version = '0.8.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we only do this during the release?
build.gradle
Outdated
compile 'network.bisq:bisq-common:-SNAPSHOT' | ||
compile 'network.bisq:bisq-p2p:0.8.0' | ||
compile 'network.bisq:bisq-core:0.8.0' | ||
compile 'network.bisq:bisq-common:0.8.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here: I think this should be -SNAPSHOT when merging
build.gradle
Outdated
@@ -33,25 +34,29 @@ tasks.withType(JavaCompile) { | |||
sourceSets.main.resources.srcDirs += ['src/main/java'] // to copy fxml and css files | |||
|
|||
repositories { | |||
mavenLocal() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this only for testing purposes locally?
package/osx/create_app.sh
Outdated
-name Bisq \ | ||
-title Bisq \ | ||
-name Bisq_notifications \ | ||
-title Bisq_notifications \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also shouldn't be changed here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
Depends on:
bisq-network/bisq-common#33
bisq-network/bisq-core#148