Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gsgou/leadscore-xamarin-sample
Xamarin app for Android/iOS to explore leadscore.io API's using ReactiveUI, xamvvm and Refit.
https://github.com/gsgou/leadscore-xamarin-sample
reactiveui refit
Last synced: 8 days ago
JSON representation
Xamarin app for Android/iOS to explore leadscore.io API's using ReactiveUI, xamvvm and Refit.
- Host: GitHub
- URL: https://github.com/gsgou/leadscore-xamarin-sample
- Owner: gsgou
- Created: 2019-01-24T11:30:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-02T14:30:10.000Z (almost 6 years ago)
- Last Synced: 2024-10-11T22:21:52.833Z (about 1 month ago)
- Topics: reactiveui, refit
- Language: C#
- Homepage:
- Size: 534 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Leadscore Xamarin Sample
Xamarin app for Android/iOS to explore [leadscore.io](https://www.leadscore.io/) API's using System.Reactive, ReactiveUI, xamvvm and Refit.To test the app, you first need to [sign up for a staging leadscore account](https://app-staging.leadscore.io/#/signup).
## Required components
To build for Android and iOS, the following are required:
* macOS High Sierra (10.13) and above
* the latest version of Xcode and iOS SDK
* the latest version of Visual Studio for MacVisual Studio includes an Android SDK Manager that replaces Google's standalone Android SDK Manager and will also install OpenJDK as the preferred Java runtime for mobile development.
## Step-by-step setup instructions
The Xamarin documentation portal [has detailed setup and install instructions](https://docs.microsoft.com/en-us/visualstudio/mac/installation?view=vsmac-2017) for Xamarin.## Build Instructions in macOS
Extending our bash_profile over the terminal:
```bash
echo 'export NugetPackagesPath=~/.nuget/packages' >> ~/.bash_profile
echo 'alias vs='"'"'/Applications/Visual\ Studio.app/Contents/MacOS/VisualStudio &'"'"'' >> ~/.bash_profile
. ~/.bash_profile
```
Visual Studio for Mac inherits the environment variable NugetPackagesPath when started with "vs" from terminal.
This is important in order to build the Android project which has in csproj the following dependency:
```
$(NugetPackagesPath)\system.threading.tasks.extensions\4.5.1\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll
```## Functionality
Beyond the standard functionality provides:* LOGIN features:
* Email entry, that remembers the last sucessfully used Email, is clearable and moves focus to a Password entry when keyboard button "Next" is pressed.
* Password entry, that shows and hides the password.
* Animated login button with IsEnabled and BackgroundColor properties reacting to valid Email and Password.* REST features:
* Retry algorithm/policy with exponential back-off plus some jitter to overcome peaks of similar retries coming from many clients in case of partial outages.
* Exception handling that outputs error messages in console for a better Debugging experience.