├── .gitignore ├── HelloUnity.sln ├── HelloUnity ├── Assets │ └── AboutAssets.txt ├── HelloUnity.csproj ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── layout │ │ ├── activity_main.axml │ │ └── content_main.axml │ ├── menu │ │ └── menu_main.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml └── UnityActivity.cs ├── LICENSE ├── README.md ├── UnityBindings ├── Additions │ └── AboutAdditions.txt ├── Jars │ └── AboutJars.txt ├── Properties │ └── AssemblyInfo.cs ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── UnityBindings.csproj └── unityLibrary-release.aar └── screenshot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/.gitignore -------------------------------------------------------------------------------- /HelloUnity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity.sln -------------------------------------------------------------------------------- /HelloUnity/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /HelloUnity/HelloUnity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/HelloUnity.csproj -------------------------------------------------------------------------------- /HelloUnity/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/MainActivity.cs -------------------------------------------------------------------------------- /HelloUnity/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /HelloUnity/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloUnity/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/AboutResources.txt -------------------------------------------------------------------------------- /HelloUnity/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /HelloUnity/Resources/layout/activity_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/layout/activity_main.axml -------------------------------------------------------------------------------- /HelloUnity/Resources/layout/content_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/layout/content_main.axml -------------------------------------------------------------------------------- /HelloUnity/Resources/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/menu/menu_main.xml -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /HelloUnity/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HelloUnity/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/values/colors.xml -------------------------------------------------------------------------------- /HelloUnity/Resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/values/dimens.xml -------------------------------------------------------------------------------- /HelloUnity/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /HelloUnity/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/values/strings.xml -------------------------------------------------------------------------------- /HelloUnity/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/Resources/values/styles.xml -------------------------------------------------------------------------------- /HelloUnity/UnityActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/HelloUnity/UnityActivity.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/README.md -------------------------------------------------------------------------------- /UnityBindings/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/UnityBindings/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /UnityBindings/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/UnityBindings/Jars/AboutJars.txt -------------------------------------------------------------------------------- /UnityBindings/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/UnityBindings/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnityBindings/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/UnityBindings/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /UnityBindings/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/UnityBindings/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /UnityBindings/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/UnityBindings/Transforms/Metadata.xml -------------------------------------------------------------------------------- /UnityBindings/UnityBindings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/UnityBindings/UnityBindings.csproj -------------------------------------------------------------------------------- /UnityBindings/unityLibrary-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/UnityBindings/unityLibrary-release.aar -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EgorBo/XamarinWithUnityApp/HEAD/screenshot.gif --------------------------------------------------------------------------------