-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
android: integrate state machine (#1393)
* android: initial state machine integration * add scripts * remove sudo command * fix go mod version * add vpnservice lifecycle * APPLE: update credential view, add new core (#1371) * add error state changes * add initial error messaging * add qa consts * add qa env * add qa to env screen * add qa links * fmt * update account link * remove export * android: initial state machine integration * add scripts * remove sudo command * fix go mod version * add vpnservice lifecycle * APPLE: update credential view, add new core (#1371) * add error state changes * add initial error messaging * add qa consts * add qa env * add qa to env screen * add qa links * fmt * update account link * remove export * Merge branch 'android/integrate-state-mach' of github.com:nymtech/nym-vpn-client into android/integrate-state-mach * refactor * remove unused * fix clippy * update uniffi swift * remove rustflags, add prebuild script * Update fdroid-prebuild.sh * fix script * fix script * fix script * add flag * fix script * remove prebuild script * add cargo deps install * update kotlin bindings Co-Authored-By: Rokas Ambrazevicius <[email protected]>
- Loading branch information
1 parent
0148a33
commit 68d70bd
Showing
21 changed files
with
1,229 additions
and
896 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
nym-vpn-android/app/src/main/java/net/nymtech/nymvpn/ui/model/StateMessage.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package net.nymtech.nymvpn.ui.model | ||
|
||
import net.nymtech.nymvpn.util.StringValue | ||
import nym_vpn_lib.VpnException | ||
import nym_vpn_lib.ErrorStateReason | ||
|
||
sealed class StateMessage { | ||
data class Status(val message: StringValue) : StateMessage() | ||
data class Error(val exception: VpnException) : StateMessage() | ||
data class Error(val reason: ErrorStateReason) : StateMessage() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.