├── 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 | 52 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /iOS/Swift/Xevensthein/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 33 | 34 | 35 | 36 | 37 | 38 | 44 | 45 | 46 | 47 | 48 | 49 | 53 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /iOS/Swift/Xevensthein.Core/Xevensthein.Core.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | B94A452A1CD405A6007E2E3B /* Xevensthein.Core.h in Headers */ = {isa = PBXBuildFile; fileRef = B94A45291CD405A6007E2E3B /* Xevensthein.Core.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | B94A45391CD406E9007E2E3B /* LevenshteinDistance.swift in Sources */ = {isa = PBXBuildFile; fileRef = B94A45381CD406E9007E2E3B /* LevenshteinDistance.swift */; }; 12 | /* End PBXBuildFile section */ 13 | 14 | /* Begin PBXFileReference section */ 15 | B94A45261CD405A6007E2E3B /* XevenstheinCore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = XevenstheinCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 16 | B94A45291CD405A6007E2E3B /* Xevensthein.Core.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Xevensthein.Core.h; sourceTree = ""; }; 17 | B94A452B1CD405A6007E2E3B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 18 | B94A45381CD406E9007E2E3B /* LevenshteinDistance.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LevenshteinDistance.swift; sourceTree = ""; }; 19 | /* End PBXFileReference section */ 20 | 21 | /* Begin PBXFrameworksBuildPhase section */ 22 | B94A45221CD405A6007E2E3B /* Frameworks */ = { 23 | isa = PBXFrameworksBuildPhase; 24 | buildActionMask = 2147483647; 25 | files = ( 26 | ); 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXFrameworksBuildPhase section */ 30 | 31 | /* Begin PBXGroup section */ 32 | B94A451C1CD405A6007E2E3B = { 33 | isa = PBXGroup; 34 | children = ( 35 | B94A45281CD405A6007E2E3B /* Xevensthein.Core */, 36 | B94A45271CD405A6007E2E3B /* Products */, 37 | ); 38 | sourceTree = ""; 39 | }; 40 | B94A45271CD405A6007E2E3B /* Products */ = { 41 | isa = PBXGroup; 42 | children = ( 43 | B94A45261CD405A6007E2E3B /* XevenstheinCore.framework */, 44 | ); 45 | name = Products; 46 | sourceTree = ""; 47 | }; 48 | B94A45281CD405A6007E2E3B /* Xevensthein.Core */ = { 49 | isa = PBXGroup; 50 | children = ( 51 | B94A45291CD405A6007E2E3B /* Xevensthein.Core.h */, 52 | B94A452B1CD405A6007E2E3B /* Info.plist */, 53 | B94A45381CD406E9007E2E3B /* LevenshteinDistance.swift */, 54 | ); 55 | path = Xevensthein.Core; 56 | sourceTree = ""; 57 | }; 58 | /* End PBXGroup section */ 59 | 60 | /* Begin PBXHeadersBuildPhase section */ 61 | B94A45231CD405A6007E2E3B /* Headers */ = { 62 | isa = PBXHeadersBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | B94A452A1CD405A6007E2E3B /* Xevensthein.Core.h in Headers */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXHeadersBuildPhase section */ 70 | 71 | /* Begin PBXNativeTarget section */ 72 | B94A45251CD405A6007E2E3B /* Xevensthein.Core */ = { 73 | isa = PBXNativeTarget; 74 | buildConfigurationList = B94A452E1CD405A6007E2E3B /* Build configuration list for PBXNativeTarget "Xevensthein.Core" */; 75 | buildPhases = ( 76 | B94A45211CD405A6007E2E3B /* Sources */, 77 | B94A45221CD405A6007E2E3B /* Frameworks */, 78 | B94A45231CD405A6007E2E3B /* Headers */, 79 | B94A45241CD405A6007E2E3B /* Resources */, 80 | ); 81 | buildRules = ( 82 | ); 83 | dependencies = ( 84 | ); 85 | name = Xevensthein.Core; 86 | productName = Xevensthein.Core; 87 | productReference = B94A45261CD405A6007E2E3B /* XevenstheinCore.framework */; 88 | productType = "com.apple.product-type.framework"; 89 | }; 90 | /* End PBXNativeTarget section */ 91 | 92 | /* Begin PBXProject section */ 93 | B94A451D1CD405A6007E2E3B /* Project object */ = { 94 | isa = PBXProject; 95 | attributes = { 96 | LastUpgradeCheck = 0730; 97 | ORGANIZATIONNAME = "That C# giuy"; 98 | TargetAttributes = { 99 | B94A45251CD405A6007E2E3B = { 100 | CreatedOnToolsVersion = 7.3; 101 | DevelopmentTeam = 7WF9KH7X9Y; 102 | }; 103 | }; 104 | }; 105 | buildConfigurationList = B94A45201CD405A6007E2E3B /* Build configuration list for PBXProject "Xevensthein.Core" */; 106 | compatibilityVersion = "Xcode 3.2"; 107 | developmentRegion = English; 108 | hasScannedForEncodings = 0; 109 | knownRegions = ( 110 | en, 111 | ); 112 | mainGroup = B94A451C1CD405A6007E2E3B; 113 | productRefGroup = B94A45271CD405A6007E2E3B /* Products */; 114 | projectDirPath = ""; 115 | projectRoot = ""; 116 | targets = ( 117 | B94A45251CD405A6007E2E3B /* Xevensthein.Core */, 118 | ); 119 | }; 120 | /* End PBXProject section */ 121 | 122 | /* Begin PBXResourcesBuildPhase section */ 123 | B94A45241CD405A6007E2E3B /* Resources */ = { 124 | isa = PBXResourcesBuildPhase; 125 | buildActionMask = 2147483647; 126 | files = ( 127 | ); 128 | runOnlyForDeploymentPostprocessing = 0; 129 | }; 130 | /* End PBXResourcesBuildPhase section */ 131 | 132 | /* Begin PBXSourcesBuildPhase section */ 133 | B94A45211CD405A6007E2E3B /* Sources */ = { 134 | isa = PBXSourcesBuildPhase; 135 | buildActionMask = 2147483647; 136 | files = ( 137 | B94A45391CD406E9007E2E3B /* LevenshteinDistance.swift in Sources */, 138 | ); 139 | runOnlyForDeploymentPostprocessing = 0; 140 | }; 141 | /* End PBXSourcesBuildPhase section */ 142 | 143 | /* Begin XCBuildConfiguration section */ 144 | B94A452C1CD405A6007E2E3B /* Debug */ = { 145 | isa = XCBuildConfiguration; 146 | buildSettings = { 147 | ALWAYS_SEARCH_USER_PATHS = NO; 148 | CLANG_ANALYZER_NONNULL = YES; 149 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 150 | CLANG_CXX_LIBRARY = "libc++"; 151 | CLANG_ENABLE_MODULES = YES; 152 | CLANG_ENABLE_OBJC_ARC = YES; 153 | CLANG_WARN_BOOL_CONVERSION = YES; 154 | CLANG_WARN_CONSTANT_CONVERSION = YES; 155 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 156 | CLANG_WARN_EMPTY_BODY = YES; 157 | CLANG_WARN_ENUM_CONVERSION = YES; 158 | CLANG_WARN_INT_CONVERSION = YES; 159 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 160 | CLANG_WARN_UNREACHABLE_CODE = YES; 161 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 162 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 163 | COPY_PHASE_STRIP = NO; 164 | CURRENT_PROJECT_VERSION = 1; 165 | DEBUG_INFORMATION_FORMAT = dwarf; 166 | ENABLE_STRICT_OBJC_MSGSEND = YES; 167 | ENABLE_TESTABILITY = YES; 168 | GCC_C_LANGUAGE_STANDARD = gnu99; 169 | GCC_DYNAMIC_NO_PIC = NO; 170 | GCC_NO_COMMON_BLOCKS = YES; 171 | GCC_OPTIMIZATION_LEVEL = 0; 172 | GCC_PREPROCESSOR_DEFINITIONS = ( 173 | "DEBUG=1", 174 | "$(inherited)", 175 | ); 176 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 177 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 178 | GCC_WARN_UNDECLARED_SELECTOR = YES; 179 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 180 | GCC_WARN_UNUSED_FUNCTION = YES; 181 | GCC_WARN_UNUSED_VARIABLE = YES; 182 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 183 | MTL_ENABLE_DEBUG_INFO = YES; 184 | ONLY_ACTIVE_ARCH = YES; 185 | SDKROOT = iphoneos; 186 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 187 | TARGETED_DEVICE_FAMILY = "1,2"; 188 | VERSIONING_SYSTEM = "apple-generic"; 189 | VERSION_INFO_PREFIX = ""; 190 | }; 191 | name = Debug; 192 | }; 193 | B94A452D1CD405A6007E2E3B /* Release */ = { 194 | isa = XCBuildConfiguration; 195 | buildSettings = { 196 | ALWAYS_SEARCH_USER_PATHS = NO; 197 | CLANG_ANALYZER_NONNULL = YES; 198 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 199 | CLANG_CXX_LIBRARY = "libc++"; 200 | CLANG_ENABLE_MODULES = YES; 201 | CLANG_ENABLE_OBJC_ARC = YES; 202 | CLANG_WARN_BOOL_CONVERSION = YES; 203 | CLANG_WARN_CONSTANT_CONVERSION = YES; 204 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 205 | CLANG_WARN_EMPTY_BODY = YES; 206 | CLANG_WARN_ENUM_CONVERSION = YES; 207 | CLANG_WARN_INT_CONVERSION = YES; 208 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 209 | CLANG_WARN_UNREACHABLE_CODE = YES; 210 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 211 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 212 | COPY_PHASE_STRIP = NO; 213 | CURRENT_PROJECT_VERSION = 1; 214 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 215 | ENABLE_NS_ASSERTIONS = NO; 216 | ENABLE_STRICT_OBJC_MSGSEND = YES; 217 | GCC_C_LANGUAGE_STANDARD = gnu99; 218 | GCC_NO_COMMON_BLOCKS = YES; 219 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 220 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 221 | GCC_WARN_UNDECLARED_SELECTOR = YES; 222 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 223 | GCC_WARN_UNUSED_FUNCTION = YES; 224 | GCC_WARN_UNUSED_VARIABLE = YES; 225 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 226 | MTL_ENABLE_DEBUG_INFO = NO; 227 | SDKROOT = iphoneos; 228 | TARGETED_DEVICE_FAMILY = "1,2"; 229 | VALIDATE_PRODUCT = YES; 230 | VERSIONING_SYSTEM = "apple-generic"; 231 | VERSION_INFO_PREFIX = ""; 232 | }; 233 | name = Release; 234 | }; 235 | B94A452F1CD405A6007E2E3B /* Debug */ = { 236 | isa = XCBuildConfiguration; 237 | buildSettings = { 238 | CLANG_ENABLE_MODULES = YES; 239 | CODE_SIGN_IDENTITY = "iPhone Developer"; 240 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 241 | DEFINES_MODULE = YES; 242 | DYLIB_COMPATIBILITY_VERSION = 1; 243 | DYLIB_CURRENT_VERSION = 1; 244 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 245 | INFOPLIST_FILE = Xevensthein.Core/Info.plist; 246 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 247 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 248 | PRODUCT_BUNDLE_IDENTIFIER = "com.thatcsharpguy.xevensthein-core"; 249 | PRODUCT_NAME = XevenstheinCore; 250 | PROVISIONING_PROFILE = ""; 251 | SKIP_INSTALL = YES; 252 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 253 | }; 254 | name = Debug; 255 | }; 256 | B94A45301CD405A6007E2E3B /* Release */ = { 257 | isa = XCBuildConfiguration; 258 | buildSettings = { 259 | CLANG_ENABLE_MODULES = YES; 260 | CODE_SIGN_IDENTITY = "iPhone Developer"; 261 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 262 | DEFINES_MODULE = YES; 263 | DYLIB_COMPATIBILITY_VERSION = 1; 264 | DYLIB_CURRENT_VERSION = 1; 265 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 266 | INFOPLIST_FILE = Xevensthein.Core/Info.plist; 267 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 268 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 269 | PRODUCT_BUNDLE_IDENTIFIER = "com.thatcsharpguy.xevensthein-core"; 270 | PRODUCT_NAME = XevenstheinCore; 271 | PROVISIONING_PROFILE = ""; 272 | SKIP_INSTALL = YES; 273 | }; 274 | name = Release; 275 | }; 276 | /* End XCBuildConfiguration section */ 277 | 278 | /* Begin XCConfigurationList section */ 279 | B94A45201CD405A6007E2E3B /* Build configuration list for PBXProject "Xevensthein.Core" */ = { 280 | isa = XCConfigurationList; 281 | buildConfigurations = ( 282 | B94A452C1CD405A6007E2E3B /* Debug */, 283 | B94A452D1CD405A6007E2E3B /* Release */, 284 | ); 285 | defaultConfigurationIsVisible = 0; 286 | defaultConfigurationName = Release; 287 | }; 288 | B94A452E1CD405A6007E2E3B /* Build configuration list for PBXNativeTarget "Xevensthein.Core" */ = { 289 | isa = XCConfigurationList; 290 | buildConfigurations = ( 291 | B94A452F1CD405A6007E2E3B /* Debug */, 292 | B94A45301CD405A6007E2E3B /* Release */, 293 | ); 294 | defaultConfigurationIsVisible = 0; 295 | }; 296 | /* End XCConfigurationList section */ 297 | }; 298 | rootObject = B94A451D1CD405A6007E2E3B /* Project object */; 299 | } 300 | -------------------------------------------------------------------------------- /iOS/Swift/Xevensthein.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | B94A45371CD4063E007E2E3B /* Xevensthein.Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B94A45361CD405A6007E2E3B /* Xevensthein.Core.framework */; settings = {ATTRIBUTES = (Required, ); }; }; 11 | B94A453A1CD409C6007E2E3B /* Xevensthein.Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B94A45361CD405A6007E2E3B /* Xevensthein.Core.framework */; }; 12 | B94A453B1CD409C6007E2E3B /* Xevensthein.Core.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B94A45361CD405A6007E2E3B /* Xevensthein.Core.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 13 | B9D491201CD3C17E00092B1F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9D4911F1CD3C17E00092B1F /* AppDelegate.swift */; }; 14 | B9D491221CD3C17E00092B1F /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9D491211CD3C17E00092B1F /* ViewController.swift */; }; 15 | B9D491251CD3C17E00092B1F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B9D491231CD3C17E00092B1F /* Main.storyboard */; }; 16 | B9D491271CD3C17E00092B1F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B9D491261CD3C17E00092B1F /* Assets.xcassets */; }; 17 | B9D4912A1CD3C17E00092B1F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B9D491281CD3C17E00092B1F /* LaunchScreen.storyboard */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | B94A45351CD405A6007E2E3B /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = B94A45311CD405A6007E2E3B /* Xevensthein.Core.xcodeproj */; 24 | proxyType = 2; 25 | remoteGlobalIDString = B94A45261CD405A6007E2E3B; 26 | remoteInfo = Xevensthein.Core; 27 | }; 28 | B94A453C1CD409C6007E2E3B /* PBXContainerItemProxy */ = { 29 | isa = PBXContainerItemProxy; 30 | containerPortal = B94A45311CD405A6007E2E3B /* Xevensthein.Core.xcodeproj */; 31 | proxyType = 1; 32 | remoteGlobalIDString = B94A45251CD405A6007E2E3B; 33 | remoteInfo = Xevensthein.Core; 34 | }; 35 | /* End PBXContainerItemProxy section */ 36 | 37 | /* Begin PBXCopyFilesBuildPhase section */ 38 | B94A453E1CD409C6007E2E3B /* Embed Frameworks */ = { 39 | isa = PBXCopyFilesBuildPhase; 40 | buildActionMask = 2147483647; 41 | dstPath = ""; 42 | dstSubfolderSpec = 10; 43 | files = ( 44 | B94A453B1CD409C6007E2E3B /* Xevensthein.Core.framework in Embed Frameworks */, 45 | ); 46 | name = "Embed Frameworks"; 47 | runOnlyForDeploymentPostprocessing = 0; 48 | }; 49 | /* End PBXCopyFilesBuildPhase section */ 50 | 51 | /* Begin PBXFileReference section */ 52 | B94A45311CD405A6007E2E3B /* Xevensthein.Core.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Xevensthein.Core.xcodeproj; path = Xevensthein.Core/Xevensthein.Core.xcodeproj; sourceTree = ""; }; 53 | B9D4911C1CD3C17E00092B1F /* Xev Swift.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Xev Swift.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | B9D4911F1CD3C17E00092B1F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 55 | B9D491211CD3C17E00092B1F /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 56 | B9D491241CD3C17E00092B1F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 57 | B9D491261CD3C17E00092B1F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 58 | B9D491291CD3C17E00092B1F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 59 | B9D4912B1CD3C17E00092B1F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 60 | /* End PBXFileReference section */ 61 | 62 | /* Begin PBXFrameworksBuildPhase section */ 63 | B9D491191CD3C17E00092B1F /* Frameworks */ = { 64 | isa = PBXFrameworksBuildPhase; 65 | buildActionMask = 2147483647; 66 | files = ( 67 | B94A45371CD4063E007E2E3B /* Xevensthein.Core.framework in Frameworks */, 68 | B94A453A1CD409C6007E2E3B /* Xevensthein.Core.framework in Frameworks */, 69 | ); 70 | runOnlyForDeploymentPostprocessing = 0; 71 | }; 72 | /* End PBXFrameworksBuildPhase section */ 73 | 74 | /* Begin PBXGroup section */ 75 | B94A451B1CD40493007E2E3B /* Xevensthein.Core */ = { 76 | isa = PBXGroup; 77 | children = ( 78 | B94A45311CD405A6007E2E3B /* Xevensthein.Core.xcodeproj */, 79 | ); 80 | name = Xevensthein.Core; 81 | sourceTree = ""; 82 | }; 83 | B94A45321CD405A6007E2E3B /* Products */ = { 84 | isa = PBXGroup; 85 | children = ( 86 | B94A45361CD405A6007E2E3B /* Xevensthein.Core.framework */, 87 | ); 88 | name = Products; 89 | sourceTree = ""; 90 | }; 91 | B9D491131CD3C17E00092B1F = { 92 | isa = PBXGroup; 93 | children = ( 94 | B94A451B1CD40493007E2E3B /* Xevensthein.Core */, 95 | B9D4911E1CD3C17E00092B1F /* Xevensthein */, 96 | B9D4911D1CD3C17E00092B1F /* Products */, 97 | ); 98 | sourceTree = ""; 99 | }; 100 | B9D4911D1CD3C17E00092B1F /* Products */ = { 101 | isa = PBXGroup; 102 | children = ( 103 | B9D4911C1CD3C17E00092B1F /* Xev Swift.app */, 104 | ); 105 | name = Products; 106 | sourceTree = ""; 107 | }; 108 | B9D4911E1CD3C17E00092B1F /* Xevensthein */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | B9D4911F1CD3C17E00092B1F /* AppDelegate.swift */, 112 | B9D491211CD3C17E00092B1F /* ViewController.swift */, 113 | B9D491231CD3C17E00092B1F /* Main.storyboard */, 114 | B9D491261CD3C17E00092B1F /* Assets.xcassets */, 115 | B9D491281CD3C17E00092B1F /* LaunchScreen.storyboard */, 116 | B9D4912B1CD3C17E00092B1F /* Info.plist */, 117 | ); 118 | path = Xevensthein; 119 | sourceTree = ""; 120 | }; 121 | /* End PBXGroup section */ 122 | 123 | /* Begin PBXNativeTarget section */ 124 | B9D4911B1CD3C17E00092B1F /* Xevensthein */ = { 125 | isa = PBXNativeTarget; 126 | buildConfigurationList = B9D4912E1CD3C17E00092B1F /* Build configuration list for PBXNativeTarget "Xevensthein" */; 127 | buildPhases = ( 128 | B9D491181CD3C17E00092B1F /* Sources */, 129 | B9D491191CD3C17E00092B1F /* Frameworks */, 130 | B9D4911A1CD3C17E00092B1F /* Resources */, 131 | B94A453E1CD409C6007E2E3B /* Embed Frameworks */, 132 | ); 133 | buildRules = ( 134 | ); 135 | dependencies = ( 136 | B94A453D1CD409C6007E2E3B /* PBXTargetDependency */, 137 | ); 138 | name = Xevensthein; 139 | productName = Xevenshthen; 140 | productReference = B9D4911C1CD3C17E00092B1F /* Xev Swift.app */; 141 | productType = "com.apple.product-type.application"; 142 | }; 143 | /* End PBXNativeTarget section */ 144 | 145 | /* Begin PBXProject section */ 146 | B9D491141CD3C17E00092B1F /* Project object */ = { 147 | isa = PBXProject; 148 | attributes = { 149 | LastSwiftUpdateCheck = 0730; 150 | LastUpgradeCheck = 0730; 151 | ORGANIZATIONNAME = Messier16; 152 | TargetAttributes = { 153 | B9D4911B1CD3C17E00092B1F = { 154 | CreatedOnToolsVersion = 7.3; 155 | }; 156 | }; 157 | }; 158 | buildConfigurationList = B9D491171CD3C17E00092B1F /* Build configuration list for PBXProject "Xevensthein" */; 159 | compatibilityVersion = "Xcode 3.2"; 160 | developmentRegion = English; 161 | hasScannedForEncodings = 0; 162 | knownRegions = ( 163 | en, 164 | Base, 165 | ); 166 | mainGroup = B9D491131CD3C17E00092B1F; 167 | productRefGroup = B9D4911D1CD3C17E00092B1F /* Products */; 168 | projectDirPath = ""; 169 | projectReferences = ( 170 | { 171 | ProductGroup = B94A45321CD405A6007E2E3B /* Products */; 172 | ProjectRef = B94A45311CD405A6007E2E3B /* Xevensthein.Core.xcodeproj */; 173 | }, 174 | ); 175 | projectRoot = ""; 176 | targets = ( 177 | B9D4911B1CD3C17E00092B1F /* Xevensthein */, 178 | ); 179 | }; 180 | /* End PBXProject section */ 181 | 182 | /* Begin PBXReferenceProxy section */ 183 | B94A45361CD405A6007E2E3B /* Xevensthein.Core.framework */ = { 184 | isa = PBXReferenceProxy; 185 | fileType = wrapper.framework; 186 | path = Xevensthein.Core.framework; 187 | remoteRef = B94A45351CD405A6007E2E3B /* PBXContainerItemProxy */; 188 | sourceTree = BUILT_PRODUCTS_DIR; 189 | }; 190 | /* End PBXReferenceProxy section */ 191 | 192 | /* Begin PBXResourcesBuildPhase section */ 193 | B9D4911A1CD3C17E00092B1F /* Resources */ = { 194 | isa = PBXResourcesBuildPhase; 195 | buildActionMask = 2147483647; 196 | files = ( 197 | B9D4912A1CD3C17E00092B1F /* LaunchScreen.storyboard in Resources */, 198 | B9D491271CD3C17E00092B1F /* Assets.xcassets in Resources */, 199 | B9D491251CD3C17E00092B1F /* Main.storyboard in Resources */, 200 | ); 201 | runOnlyForDeploymentPostprocessing = 0; 202 | }; 203 | /* End PBXResourcesBuildPhase section */ 204 | 205 | /* Begin PBXSourcesBuildPhase section */ 206 | B9D491181CD3C17E00092B1F /* Sources */ = { 207 | isa = PBXSourcesBuildPhase; 208 | buildActionMask = 2147483647; 209 | files = ( 210 | B9D491221CD3C17E00092B1F /* ViewController.swift in Sources */, 211 | B9D491201CD3C17E00092B1F /* AppDelegate.swift in Sources */, 212 | ); 213 | runOnlyForDeploymentPostprocessing = 0; 214 | }; 215 | /* End PBXSourcesBuildPhase section */ 216 | 217 | /* Begin PBXTargetDependency section */ 218 | B94A453D1CD409C6007E2E3B /* PBXTargetDependency */ = { 219 | isa = PBXTargetDependency; 220 | name = Xevensthein.Core; 221 | targetProxy = B94A453C1CD409C6007E2E3B /* PBXContainerItemProxy */; 222 | }; 223 | /* End PBXTargetDependency section */ 224 | 225 | /* Begin PBXVariantGroup section */ 226 | B9D491231CD3C17E00092B1F /* Main.storyboard */ = { 227 | isa = PBXVariantGroup; 228 | children = ( 229 | B9D491241CD3C17E00092B1F /* Base */, 230 | ); 231 | name = Main.storyboard; 232 | sourceTree = ""; 233 | }; 234 | B9D491281CD3C17E00092B1F /* LaunchScreen.storyboard */ = { 235 | isa = PBXVariantGroup; 236 | children = ( 237 | B9D491291CD3C17E00092B1F /* Base */, 238 | ); 239 | name = LaunchScreen.storyboard; 240 | sourceTree = ""; 241 | }; 242 | /* End PBXVariantGroup section */ 243 | 244 | /* Begin XCBuildConfiguration section */ 245 | B9D4912C1CD3C17E00092B1F /* Debug */ = { 246 | isa = XCBuildConfiguration; 247 | buildSettings = { 248 | ALWAYS_SEARCH_USER_PATHS = NO; 249 | CLANG_ANALYZER_NONNULL = YES; 250 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 251 | CLANG_CXX_LIBRARY = "libc++"; 252 | CLANG_ENABLE_MODULES = YES; 253 | CLANG_ENABLE_OBJC_ARC = YES; 254 | CLANG_WARN_BOOL_CONVERSION = YES; 255 | CLANG_WARN_CONSTANT_CONVERSION = YES; 256 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 257 | CLANG_WARN_EMPTY_BODY = YES; 258 | CLANG_WARN_ENUM_CONVERSION = YES; 259 | CLANG_WARN_INT_CONVERSION = YES; 260 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 261 | CLANG_WARN_UNREACHABLE_CODE = YES; 262 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 263 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 264 | COPY_PHASE_STRIP = NO; 265 | DEBUG_INFORMATION_FORMAT = dwarf; 266 | ENABLE_STRICT_OBJC_MSGSEND = YES; 267 | ENABLE_TESTABILITY = YES; 268 | GCC_C_LANGUAGE_STANDARD = gnu99; 269 | GCC_DYNAMIC_NO_PIC = NO; 270 | GCC_NO_COMMON_BLOCKS = YES; 271 | GCC_OPTIMIZATION_LEVEL = 0; 272 | GCC_PREPROCESSOR_DEFINITIONS = ( 273 | "DEBUG=1", 274 | "$(inherited)", 275 | ); 276 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 277 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 278 | GCC_WARN_UNDECLARED_SELECTOR = YES; 279 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 280 | GCC_WARN_UNUSED_FUNCTION = YES; 281 | GCC_WARN_UNUSED_VARIABLE = YES; 282 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 283 | MTL_ENABLE_DEBUG_INFO = YES; 284 | ONLY_ACTIVE_ARCH = YES; 285 | SDKROOT = iphoneos; 286 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 287 | }; 288 | name = Debug; 289 | }; 290 | B9D4912D1CD3C17E00092B1F /* Release */ = { 291 | isa = XCBuildConfiguration; 292 | buildSettings = { 293 | ALWAYS_SEARCH_USER_PATHS = NO; 294 | CLANG_ANALYZER_NONNULL = YES; 295 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 296 | CLANG_CXX_LIBRARY = "libc++"; 297 | CLANG_ENABLE_MODULES = YES; 298 | CLANG_ENABLE_OBJC_ARC = YES; 299 | CLANG_WARN_BOOL_CONVERSION = YES; 300 | CLANG_WARN_CONSTANT_CONVERSION = YES; 301 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 302 | CLANG_WARN_EMPTY_BODY = YES; 303 | CLANG_WARN_ENUM_CONVERSION = YES; 304 | CLANG_WARN_INT_CONVERSION = YES; 305 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 306 | CLANG_WARN_UNREACHABLE_CODE = YES; 307 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 308 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 309 | COPY_PHASE_STRIP = NO; 310 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 311 | ENABLE_NS_ASSERTIONS = NO; 312 | ENABLE_STRICT_OBJC_MSGSEND = YES; 313 | GCC_C_LANGUAGE_STANDARD = gnu99; 314 | GCC_NO_COMMON_BLOCKS = YES; 315 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 316 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 317 | GCC_WARN_UNDECLARED_SELECTOR = YES; 318 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 319 | GCC_WARN_UNUSED_FUNCTION = YES; 320 | GCC_WARN_UNUSED_VARIABLE = YES; 321 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 322 | MTL_ENABLE_DEBUG_INFO = NO; 323 | SDKROOT = iphoneos; 324 | VALIDATE_PRODUCT = YES; 325 | }; 326 | name = Release; 327 | }; 328 | B9D4912F1CD3C17E00092B1F /* Debug */ = { 329 | isa = XCBuildConfiguration; 330 | buildSettings = { 331 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 332 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; 333 | INFOPLIST_FILE = "$(SRCROOT)/Xevensthein/Info.plist"; 334 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 335 | PRODUCT_BUNDLE_IDENTIFIER = com.thatcsharpguy.xevensthein.swift; 336 | PRODUCT_NAME = "Xev Swift"; 337 | }; 338 | name = Debug; 339 | }; 340 | B9D491301CD3C17E00092B1F /* Release */ = { 341 | isa = XCBuildConfiguration; 342 | buildSettings = { 343 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 344 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; 345 | INFOPLIST_FILE = "$(SRCROOT)/Xevensthein/Info.plist"; 346 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 347 | PRODUCT_BUNDLE_IDENTIFIER = com.thatcsharpguy.xevensthein.swift; 348 | PRODUCT_NAME = "Xev Swift"; 349 | }; 350 | name = Release; 351 | }; 352 | /* End XCBuildConfiguration section */ 353 | 354 | /* Begin XCConfigurationList section */ 355 | B9D491171CD3C17E00092B1F /* Build configuration list for PBXProject "Xevensthein" */ = { 356 | isa = XCConfigurationList; 357 | buildConfigurations = ( 358 | B9D4912C1CD3C17E00092B1F /* Debug */, 359 | B9D4912D1CD3C17E00092B1F /* Release */, 360 | ); 361 | defaultConfigurationIsVisible = 0; 362 | defaultConfigurationName = Release; 363 | }; 364 | B9D4912E1CD3C17E00092B1F /* Build configuration list for PBXNativeTarget "Xevensthein" */ = { 365 | isa = XCConfigurationList; 366 | buildConfigurations = ( 367 | B9D4912F1CD3C17E00092B1F /* Debug */, 368 | B9D491301CD3C17E00092B1F /* Release */, 369 | ); 370 | defaultConfigurationIsVisible = 0; 371 | defaultConfigurationName = Release; 372 | }; 373 | /* End XCConfigurationList section */ 374 | }; 375 | rootObject = B9D491141CD3C17E00092B1F /* Project object */; 376 | } 377 | --------------------------------------------------------------------------------