├── Android
├── Java
│ ├── mobile
│ │ ├── .gitignore
│ │ ├── src
│ │ │ └── main
│ │ │ │ ├── res
│ │ │ │ ├── values
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ └── styles.xml
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── emoji.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── emoji.png
│ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ └── emoji.png
│ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ └── emoji.png
│ │ │ │ ├── drawable-xxxhdpi
│ │ │ │ │ └── emoji.png
│ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xxxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable
│ │ │ │ │ └── empty_divider.xml
│ │ │ │ └── layout
│ │ │ │ │ └── activity_main.xml
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── thatcsharpguy
│ │ │ │ └── xevensthein
│ │ │ │ └── java
│ │ │ │ └── MainActivity.java
│ │ ├── proguard-rules.pro
│ │ └── build.gradle
│ ├── wear
│ │ ├── .gitignore
│ │ ├── src
│ │ │ └── main
│ │ │ │ ├── res
│ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── layout
│ │ │ │ │ ├── rect_activity_main_wear.xml
│ │ │ │ │ ├── activity_main_wear.xml
│ │ │ │ │ └── round_activity_main_wear.xml
│ │ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── thatcsharpguy
│ │ │ │ │ └── xevensthein
│ │ │ │ │ └── java
│ │ │ │ │ └── MainWearActivity.java
│ │ │ │ └── AndroidManifest.xml
│ │ ├── proguard-rules.pro
│ │ └── build.gradle
│ ├── xevensthein.core
│ │ ├── .gitignore
│ │ ├── src
│ │ │ └── main
│ │ │ │ ├── res
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── thatcsharpguy
│ │ │ │ └── xevenstheincore
│ │ │ │ └── LevenstheinDistance.java
│ │ ├── build.gradle
│ │ └── proguard-rules.pro
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradlew.bat
│ └── gradlew
└── C#
│ ├── Wear
│ ├── Resources
│ │ ├── mipmap-hdpi
│ │ │ └── Icon.png
│ │ ├── mipmap-mdpi
│ │ │ └── Icon.png
│ │ ├── mipmap-xhdpi
│ │ │ └── Icon.png
│ │ ├── mipmap-xxhdpi
│ │ │ └── Icon.png
│ │ ├── mipmap-xxxhdpi
│ │ │ └── Icon.png
│ │ ├── values
│ │ │ └── Strings.xml
│ │ ├── layout
│ │ │ ├── Main.axml
│ │ │ ├── RectangleMain.axml
│ │ │ └── RoundMain.axml
│ │ ├── Resource.designer.cs
│ │ └── AboutResources.txt
│ ├── packages.config
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── MainActivity.cs
│ └── Xevensthein.Wear.csproj
│ ├── Droid
│ ├── Resources
│ │ ├── mipmap-hdpi
│ │ │ └── Icon.png
│ │ ├── mipmap-mdpi
│ │ │ └── Icon.png
│ │ ├── mipmap-xhdpi
│ │ │ └── Icon.png
│ │ ├── drawable-hdpi
│ │ │ └── emoji.png
│ │ ├── drawable-mdpi
│ │ │ └── emoji.png
│ │ ├── drawable-xhdpi
│ │ │ └── emoji.png
│ │ ├── mipmap-xxhdpi
│ │ │ └── Icon.png
│ │ ├── mipmap-xxxhdpi
│ │ │ └── Icon.png
│ │ ├── drawable-xxhdpi
│ │ │ └── emoji.png
│ │ ├── drawable-xxxhdpi
│ │ │ └── emoji.png
│ │ ├── values
│ │ │ ├── Strings.xml
│ │ │ ├── Colors.xml
│ │ │ └── Styles.xml
│ │ ├── drawable
│ │ │ └── empty_divider.xml
│ │ └── layout
│ │ │ └── Main.axml
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── packages.config
│ ├── MainActivity.cs
│ └── Xevensthein.Mobile.csproj
│ ├── Core
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── LevenshteinDistance.cs
│ └── Xevensthein.Core.csproj
│ └── Xevensthein.sln
├── iOS
├── Swift
│ ├── Xevensthein
│ │ ├── Assets.xcassets
│ │ │ ├── Contents.json
│ │ │ ├── emoji.imageset
│ │ │ │ ├── emoji.png
│ │ │ │ ├── emoji@2x.png
│ │ │ │ ├── emoji@3x.png
│ │ │ │ └── Contents.json
│ │ │ └── AppIcon.appiconset
│ │ │ │ └── Contents.json
│ │ ├── AppDelegate.swift
│ │ ├── Info.plist
│ │ ├── ViewController.swift
│ │ └── Base.lproj
│ │ │ ├── LaunchScreen.storyboard
│ │ │ └── Main.storyboard
│ ├── Xevensthein.Core
│ │ ├── Xevensthein.Core
│ │ │ ├── Xevensthein.Core.h
│ │ │ ├── Info.plist
│ │ │ └── LevenshteinDistance.swift
│ │ └── Xevensthein.Core.xcodeproj
│ │ │ └── project.pbxproj
│ └── Xevensthein.xcodeproj
│ │ └── project.pbxproj
└── C#
│ ├── Resources
│ ├── Images.xcassets
│ │ ├── emoji.imageset
│ │ │ ├── emoji.png
│ │ │ ├── emoji@2x.png
│ │ │ ├── emoji@3x.png
│ │ │ └── Contents.json
│ │ └── AppIcons.appiconset
│ │ │ └── Contents.json
│ └── LaunchScreen.xib
│ ├── Entitlements.plist
│ ├── Main.cs
│ ├── AppDelegate.cs
│ ├── Xevensthein.Core
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── LevenshteinDistance.cs
│ └── Xevensthein.Core.csproj
│ ├── Info.plist
│ ├── ViewController.designer.cs
│ ├── ViewController.cs
│ ├── Xevensthein.sln
│ ├── Xevensthein.csproj
│ └── Main.storyboard
├── LICENSE
└── .gitignore
/Android/Java/mobile/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/Java/wear/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/Java/xevensthein.core/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/Java/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':mobile', ':wear', ':xevensthein.core'
2 |
--------------------------------------------------------------------------------
/iOS/Swift/Xevensthein/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Xev Java
3 |
4 |
--------------------------------------------------------------------------------
/Android/Java/xevensthein.core/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Xevensthein.Core
3 |
4 |
--------------------------------------------------------------------------------
/Android/C#/Wear/Resources/mipmap-hdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Wear/Resources/mipmap-hdpi/Icon.png
--------------------------------------------------------------------------------
/Android/C#/Wear/Resources/mipmap-mdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Wear/Resources/mipmap-mdpi/Icon.png
--------------------------------------------------------------------------------
/Android/Java/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/mipmap-hdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/mipmap-hdpi/Icon.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/mipmap-mdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/mipmap-mdpi/Icon.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/mipmap-xhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/mipmap-xhdpi/Icon.png
--------------------------------------------------------------------------------
/Android/C#/Wear/Resources/mipmap-xhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Wear/Resources/mipmap-xhdpi/Icon.png
--------------------------------------------------------------------------------
/Android/C#/Wear/Resources/mipmap-xxhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Wear/Resources/mipmap-xxhdpi/Icon.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/drawable-hdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/drawable-hdpi/emoji.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/drawable-mdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/drawable-mdpi/emoji.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/drawable-xhdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/drawable-xhdpi/emoji.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/mipmap-xxhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/mipmap-xxhdpi/Icon.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/mipmap-xxxhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/mipmap-xxxhdpi/Icon.png
--------------------------------------------------------------------------------
/Android/C#/Wear/Resources/mipmap-xxxhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Wear/Resources/mipmap-xxxhdpi/Icon.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/drawable-xxhdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/drawable-xxhdpi/emoji.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/drawable-xxxhdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/C#/Droid/Resources/drawable-xxxhdpi/emoji.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/drawable-hdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/drawable-hdpi/emoji.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/drawable-mdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/drawable-mdpi/emoji.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/drawable-xhdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/drawable-xhdpi/emoji.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/drawable-xxhdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/drawable-xxhdpi/emoji.png
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/wear/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/wear/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/iOS/C#/Resources/Images.xcassets/emoji.imageset/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/iOS/C#/Resources/Images.xcassets/emoji.imageset/emoji.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/drawable-xxxhdpi/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/drawable-xxxhdpi/emoji.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/wear/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/iOS/C#/Resources/Images.xcassets/emoji.imageset/emoji@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/iOS/C#/Resources/Images.xcassets/emoji.imageset/emoji@2x.png
--------------------------------------------------------------------------------
/iOS/C#/Resources/Images.xcassets/emoji.imageset/emoji@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/iOS/C#/Resources/Images.xcassets/emoji.imageset/emoji@3x.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/Android/Java/mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/iOS/Swift/Xevensthein/Assets.xcassets/emoji.imageset/emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/iOS/Swift/Xevensthein/Assets.xcassets/emoji.imageset/emoji.png
--------------------------------------------------------------------------------
/iOS/Swift/Xevensthein/Assets.xcassets/emoji.imageset/emoji@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/iOS/Swift/Xevensthein/Assets.xcassets/emoji.imageset/emoji@2x.png
--------------------------------------------------------------------------------
/iOS/Swift/Xevensthein/Assets.xcassets/emoji.imageset/emoji@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/silo-xamarin-comparation/master/iOS/Swift/Xevensthein/Assets.xcassets/emoji.imageset/emoji@3x.png
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/values/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World, Click Me!
4 | Xev C#
5 |
6 |
--------------------------------------------------------------------------------
/iOS/C#/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/drawable/empty_divider.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/drawable/empty_divider.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Xevensthein
3 | Hello Round World!
4 | Hello Square World!
5 |
6 |
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/values/Colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/Android/C#/Wear/Resources/values/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | I\'m Rect. Tap Me!
4 | I\'m Round. Tap Me!
5 | Xevensthein.Wear
6 |
7 |
--------------------------------------------------------------------------------
/Android/C#/Wear/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/Java/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
7 |
--------------------------------------------------------------------------------
/Android/Java/xevensthein.core/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/C#/Wear/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Android/C#/Droid/Resources/values/Styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/iOS/C#/Main.cs:
--------------------------------------------------------------------------------
1 | using UIKit;
2 |
3 | namespace Xevensthein
4 | {
5 | public class Application
6 | {
7 | // This is the main entry point of the application.
8 | static void Main(string[] args)
9 | {
10 | // if you want to use a different Application Delegate class from "AppDelegate"
11 | // you can specify it here.
12 | UIApplication.Main(args, null, "AppDelegate");
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/C#/Droid/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/Android/C#/Droid/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/iOS/Swift/Xevensthein/Assets.xcassets/emoji.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "emoji.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "emoji@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "emoji@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/java/com/thatcsharpguy/xevensthein/java/MainWearActivity.java:
--------------------------------------------------------------------------------
1 | package com.thatcsharpguy.xevensthein.java;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 | import android.support.wearable.view.WatchViewStub;
6 | import android.widget.TextView;
7 |
8 | public class MainWearActivity extends Activity {
9 |
10 | @Override
11 | protected void onCreate(Bundle savedInstanceState) {
12 | super.onCreate(savedInstanceState);
13 | setContentView(R.layout.activity_main_wear);
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Android/C#/Wear/Resources/layout/Main.axml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/Android/Java/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.1.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/Android/C#/Wear/Resources/layout/RectangleMain.axml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/Android/C#/Wear/Resources/layout/RoundMain.axml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/iOS/Swift/Xevensthein.Core/Xevensthein.Core/Xevensthein.Core.h:
--------------------------------------------------------------------------------
1 | //
2 | // Xevensthein.Core.h
3 | // Xevensthein.Core
4 | //
5 | // Created by Antonio Feregrino Bolaños on 4/29/16.
6 | // Copyright © 2016 That C# giuy. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | //! Project version number for Xevensthein.Core.
12 | FOUNDATION_EXPORT double Xevensthein_CoreVersionNumber;
13 |
14 | //! Project version string for Xevensthein.Core.
15 | FOUNDATION_EXPORT const unsigned char Xevensthein_CoreVersionString[];
16 |
17 | // In this header, you should import all the public headers of your framework using statements like #import
18 |
19 |
20 |
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/res/layout/rect_activity_main_wear.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
15 |
16 |
--------------------------------------------------------------------------------
/Android/C#/Wear/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with your package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/res/layout/activity_main_wear.xml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/Android/Java/xevensthein.core/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.library'
2 |
3 | android {
4 | compileSdkVersion 23
5 | buildToolsVersion "23.0.3"
6 |
7 | defaultConfig {
8 | minSdkVersion 21
9 | targetSdkVersion 23
10 | versionCode 1
11 | versionName "1.0"
12 | }
13 | buildTypes {
14 | release {
15 | minifyEnabled false
16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17 | }
18 | }
19 | }
20 |
21 | dependencies {
22 | compile fileTree(dir: 'libs', include: ['*.jar'])
23 | testCompile 'junit:junit:4.12'
24 | compile 'com.android.support:appcompat-v7:23.3.0'
25 | }
26 |
--------------------------------------------------------------------------------
/Android/Java/mobile/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /Users/hs_mac/Library/Android/sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/Android/Java/wear/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /Users/hs_mac/Library/Android/sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/res/layout/round_activity_main_wear.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
16 |
17 |
--------------------------------------------------------------------------------
/Android/Java/xevensthein.core/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /Users/hs_mac/Library/Android/sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/Android/C#/Wear/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | using Android.App;
4 | using Android.Content;
5 | using Android.OS;
6 | using Android.Runtime;
7 | using Android.Support.V4.App;
8 | using Android.Support.Wearable.Views;
9 | using Android.Views;
10 | using Android.Widget;
11 | using Xevensthein.Wear.Resources;
12 |
13 | namespace Xevensthein.Wear
14 | {
15 | [Activity(Label = "Xevensthein.Wear", MainLauncher = true, Icon = "@mipmap/icon")]
16 | public class MainActivity : Activity
17 | {
18 |
19 | protected override void OnCreate(Bundle bundle)
20 | {
21 | base.OnCreate(bundle);
22 | // Set our view from the "main" layout resource
23 | SetContentView(Resource.Layout.Main);
24 | }
25 | }
26 | }
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/Android/Java/mobile/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/Android/Java/wear/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 |
4 | android {
5 | compileSdkVersion 23
6 | buildToolsVersion "23.0.3"
7 |
8 | defaultConfig {
9 | applicationId "com.thatcsharpguy.xevensthein.java"
10 | minSdkVersion 21
11 | targetSdkVersion 23
12 | versionCode 1
13 | versionName "1.0"
14 | }
15 | buildTypes {
16 | release {
17 | minifyEnabled false
18 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19 | }
20 | }
21 | }
22 |
23 | dependencies {
24 | compile fileTree(dir: 'libs', include: ['*.jar'])
25 | compile 'com.google.android.support:wearable:1.4.0'
26 | compile 'com.google.android.gms:play-services-wearable:8.4.0'
27 | }
28 |
--------------------------------------------------------------------------------
/iOS/Swift/Xevensthein/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "xcode"
37 | }
38 | }
--------------------------------------------------------------------------------
/Android/Java/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/Android/Java/wear/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
13 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/iOS/Swift/Xevensthein.Core/Xevensthein.Core/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | $(CURRENT_PROJECT_VERSION)
23 | NSPrincipalClass
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/iOS/Swift/Xevensthein/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // Xevensthein
4 | //
5 | // Created by Antonio Feregrino Bolaños on 4/29/16.
6 | // Copyright © 2016 That C# guy. Some rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | @UIApplicationMain
12 | class AppDelegate: UIResponder, UIApplicationDelegate {
13 |
14 | var window: UIWindow?
15 |
16 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
17 | return true
18 | }
19 |
20 | func applicationWillResignActive(application: UIApplication) {
21 | }
22 |
23 | func applicationDidEnterBackground(application: UIApplication) {
24 | }
25 |
26 | func applicationWillEnterForeground(application: UIApplication) {
27 | }
28 |
29 | func applicationDidBecomeActive(application: UIApplication) {
30 | }
31 |
32 | func applicationWillTerminate(application: UIApplication) {
33 | }
34 | }
35 |
36 |
--------------------------------------------------------------------------------
/iOS/C#/AppDelegate.cs:
--------------------------------------------------------------------------------
1 | using Foundation;
2 | using UIKit;
3 |
4 | namespace Xevensthein
5 | {
6 | [Register("AppDelegate")]
7 | public class AppDelegate : UIApplicationDelegate
8 | {
9 | public override UIWindow Window { get; set; }
10 |
11 | public override bool FinishedLaunching(UIApplication application,
12 | NSDictionary launchOptions)
13 | {
14 | return true;
15 | }
16 |
17 | public override void OnResignActivation(UIApplication application)
18 | {
19 | }
20 |
21 | public override void DidEnterBackground(UIApplication application)
22 | {
23 | }
24 |
25 | public override void WillEnterForeground(UIApplication application)
26 | {
27 | }
28 |
29 | public override void OnActivated(UIApplication application)
30 | {
31 | }
32 |
33 | public override void WillTerminate(UIApplication application)
34 | {
35 | }
36 | }
37 | }
38 |
39 |
40 |
--------------------------------------------------------------------------------
/Android/Java/mobile/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 23
5 | buildToolsVersion "23.0.3"
6 |
7 | defaultConfig {
8 | applicationId "com.thatcsharpguy.xevensthein.java"
9 | minSdkVersion 21
10 | targetSdkVersion 23
11 | versionCode 1
12 | versionName "1.0"
13 | }
14 | buildTypes {
15 | release {
16 | minifyEnabled false
17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18 | }
19 | }
20 | }
21 |
22 | dependencies {
23 | compile fileTree(dir: 'libs', include: ['*.jar'])
24 | wearApp project(':wear')
25 | testCompile 'junit:junit:4.12'
26 | compile project(':xevensthein.core')
27 | compile 'com.android.support:appcompat-v7:24.0.0-alpha2'
28 | compile 'com.google.android.gms:play-services:8.4.0'
29 | compile 'com.google.android.gms:play-services-ads:8.4.0'
30 | compile 'com.google.android.gms:play-services-auth:8.4.0'
31 | compile 'com.google.android.gms:play-services-gcm:8.4.0'
32 | }
33 |
--------------------------------------------------------------------------------
/Android/C#/Core/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 |
4 | // Information about this assembly is defined by the following attributes.
5 | // Change them to the values specific to your project.
6 |
7 | [assembly: AssemblyTitle("Core")]
8 | [assembly: AssemblyDescription("")]
9 | [assembly: AssemblyConfiguration("")]
10 | [assembly: AssemblyCompany("")]
11 | [assembly: AssemblyProduct("")]
12 | [assembly: AssemblyCopyright("fferegrino")]
13 | [assembly: AssemblyTrademark("")]
14 | [assembly: AssemblyCulture("")]
15 |
16 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
17 | // The form "{Major}.{Minor}.*" will automatically update the build and revision,
18 | // and "{Major}.{Minor}.{Build}.*" will update just the revision.
19 |
20 | [assembly: AssemblyVersion("1.0.*")]
21 |
22 | // The following attributes are used to specify the signing key for the assembly,
23 | // if desired. See the Mono documentation for more information about signing.
24 |
25 | //[assembly: AssemblyDelaySign(false)]
26 | //[assembly: AssemblyKeyFile("")]
27 |
28 |
--------------------------------------------------------------------------------
/iOS/C#/Xevensthein.Core/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 |
4 | // Information about this assembly is defined by the following attributes.
5 | // Change them to the values specific to your project.
6 |
7 | [assembly: AssemblyTitle("Xevensthein.Core")]
8 | [assembly: AssemblyDescription("")]
9 | [assembly: AssemblyConfiguration("")]
10 | [assembly: AssemblyCompany("")]
11 | [assembly: AssemblyProduct("")]
12 | [assembly: AssemblyCopyright("fferegrino")]
13 | [assembly: AssemblyTrademark("")]
14 | [assembly: AssemblyCulture("")]
15 |
16 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
17 | // The form "{Major}.{Minor}.*" will automatically update the build and revision,
18 | // and "{Major}.{Minor}.{Build}.*" will update just the revision.
19 |
20 | [assembly: AssemblyVersion("1.0.*")]
21 |
22 | // The following attributes are used to specify the signing key for the assembly,
23 | // if desired. See the Mono documentation for more information about signing.
24 |
25 | //[assembly: AssemblyDelaySign(false)]
26 | //[assembly: AssemblyKeyFile("")]
27 |
28 |
--------------------------------------------------------------------------------
/Android/C#/Droid/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using Android.App;
4 |
5 | // Information about this assembly is defined by the following attributes.
6 | // Change them to the values specific to your project.
7 |
8 | [assembly: AssemblyTitle("Xevensthein")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("")]
13 | [assembly: AssemblyCopyright("fferegrino")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
18 | // The form "{Major}.{Minor}.*" will automatically update the build and revision,
19 | // and "{Major}.{Minor}.{Build}.*" will update just the revision.
20 |
21 | [assembly: AssemblyVersion("1.0.0")]
22 |
23 | // The following attributes are used to specify the signing key for the assembly,
24 | // if desired. See the Mono documentation for more information about signing.
25 |
26 | //[assembly: AssemblyDelaySign(false)]
27 | //[assembly: AssemblyKeyFile("")]
28 |
29 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2016 That C# Guy
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/iOS/C#/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleName
6 | Xev C#
7 | CFBundleIdentifier
8 | com.thatcsharpguy.xevensthein.csharp
9 | CFBundleShortVersionString
10 | 1.0
11 | CFBundleVersion
12 | 1.0
13 | LSRequiresIPhoneOS
14 |
15 | MinimumOSVersion
16 | 9.3
17 | UIDeviceFamily
18 |
19 | 1
20 |
21 | UILaunchStoryboardName
22 | LaunchScreen
23 | UIMainStoryboardFile
24 | Main
25 | UIRequiredDeviceCapabilities
26 |
27 | armv7
28 |
29 | UISupportedInterfaceOrientations
30 |
31 | UIInterfaceOrientationPortrait
32 | UIInterfaceOrientationLandscapeLeft
33 | UIInterfaceOrientationLandscapeRight
34 |
35 | XSAppIconAssets
36 | Resources/Images.xcassets/AppIcons.appiconset
37 |
38 |
39 |
--------------------------------------------------------------------------------
/Android/C#/Wear/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using Android.App;
4 |
5 | // Information about this assembly is defined by the following attributes.
6 | // Change them to the values specific to your project.
7 |
8 | [assembly: AssemblyTitle("Wear")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("")]
13 | [assembly: AssemblyCopyright("fferegrino")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
18 | // The form "{Major}.{Minor}.*" will automatically update the build and revision,
19 | // and "{Major}.{Minor}.{Build}.*" will update just the revision.
20 |
21 | [assembly: AssemblyVersion("1.0.0")]
22 |
23 | // The following attributes are used to specify the signing key for the assembly,
24 | // if desired. See the Mono documentation for more information about signing.
25 |
26 | //[assembly: AssemblyDelaySign(false)]
27 | //[assembly: AssemblyKeyFile("")]
28 |
29 | [assembly: Android.App.UsesFeature(Android.Content.PM.PackageManager.FeatureWatch)]
30 | [assembly: Application(Theme = "@android:style/Theme.DeviceDefault")]
31 |
32 |
--------------------------------------------------------------------------------
/Android/C#/Droid/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using Android.Support.V7.App;
2 | using Android.OS;
3 | using Android.Widget;
4 | using Android.App;
5 |
6 | using Xevensthein.Core;
7 |
8 | namespace Xevensthein
9 | {
10 | [Activity(MainLauncher = true)]
11 | public class MainActivity : AppCompatActivity
12 | {
13 | Button _compareButton;
14 | TextView _resultTextView;
15 | EditText _firstWordEditText;
16 | EditText _secondWordEditText;
17 |
18 | protected override void OnCreate(Bundle savedInstanceState)
19 | {
20 | base.OnCreate(savedInstanceState);
21 | SetContentView(Resource.Layout.Main);
22 |
23 | _compareButton = FindViewById