Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiagomartinhoo/project-xamarin
The purpose of this project is to convert a website into an Android and iOS application through the Xamarin platform.
https://github.com/tiagomartinhoo/project-xamarin
android ios xamarin
Last synced: 29 days ago
JSON representation
The purpose of this project is to convert a website into an Android and iOS application through the Xamarin platform.
- Host: GitHub
- URL: https://github.com/tiagomartinhoo/project-xamarin
- Owner: tiagomartinhoo
- Created: 2023-04-13T18:00:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-12T03:48:22.000Z (over 1 year ago)
- Last Synced: 2024-10-19T22:59:48.464Z (3 months ago)
- Topics: android, ios, xamarin
- Language: C#
- Homepage:
- Size: 1.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Xamarin ProjectA Project to convert a website into an Android and iOS application.
## Description
The project will be developed using [Xamarin](https://dotnet.microsoft.com/en-us/apps/xamarin), a cross-platform for building Android and iOS apps with .NET and C#.
The purpose of this project is to convert a website into an Android and iOS application. The app allows users to browse the website but prevents them from navigating to external websites, instead opening external links in the device's default browser.
## Getting Started
1. Install Visual Studio in a version that supports Xamarin.
2. You need to clone the project as follows:
```sh
git clone https://github.com/tiagomartinhoo/project-xamarin.git
```
3. Then open the project in Visual Studio.4. You can convert your website by changing:
- `url` variable to the url of your website (found in the [App5/App5/App.xaml.cs](https://github.com/tiagomartinhoo/project-xamarin/blob/main/App5/App5/App.xaml.cs) file):
```cs
string url = "https://www.yourwebsiteurl.com/";
```- `app_name` variable to the name of your application (found in the [App5/App5.Android/Resources/values/strings.xml](https://github.com/tiagomartinhoo/project-xamarin/blob/main/App5/App5.Android/Resources/values/strings.xml) file):
```xml
Your App Name
```- `app_icon.png` file to the icon you want to have in the app (found in the [App5/App5.Android/Resources/mipmap/](https://github.com/tiagomartinhoo/project-xamarin/blob/main/App5/App5.Android/Resources/mipmap) directory).
- `splash_screen.png` file to the image you want to be displayed on the splash screen (found in the [App5/App5.Android/Resources/drawable/](https://github.com/tiagomartinhoo/project-xamarin/tree/main/App5/App5.Android/Resources/drawable) directory).
## Usage
Here is an example with the [W3school](https://www.w3schools.com/) website: