diff --git a/src/AncientIconSet/AncientIconSet.csproj b/src/AncientIconSet/AncientIconSet.csproj deleted file mode 100644 index 0ace3f78..00000000 --- a/src/AncientIconSet/AncientIconSet.csproj +++ /dev/null @@ -1,143 +0,0 @@ - - - - Debug - AnyCPU - {7F059603-7041-4BBB-93A2-DAA7AB5CA528} - {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Library - Properties - AncientIconSet - AncientIconSet - 512 - true - Resources\Resource.Designer.cs - Off - True - v7.1 - Properties\AndroidManifest.xml - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - None - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - False - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/AncientIconSet/Assets/AboutAssets.txt b/src/AncientIconSet/Assets/AboutAssets.txt deleted file mode 100644 index ee398862..00000000 --- a/src/AncientIconSet/Assets/AboutAssets.txt +++ /dev/null @@ -1,19 +0,0 @@ -Any raw assets you want to be deployed with your application can be placed in -this directory (and child directories) and given a Build Action of "AndroidAsset". - -These files will be deployed with you package and will be accessible using Android's -AssetManager, like this: - -public class ReadAsset : Activity -{ - protected override void OnCreate (Bundle bundle) - { - base.OnCreate (bundle); - - InputStream input = Assets.Open ("my_asset.txt"); - } -} - -Additionally, some Android functions will automatically load asset files: - -Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); \ No newline at end of file diff --git a/src/AncientIconSet/MainActivity.cs b/src/AncientIconSet/MainActivity.cs deleted file mode 100644 index 70a4f5fe..00000000 --- a/src/AncientIconSet/MainActivity.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using Android.App; -using Android.Content; -using Android.Runtime; -using Android.Views; -using Android.Widget; -using Android.OS; - -namespace AncientIconSet -{ - [Activity(Label = "AncientIconSet", MainLauncher = true, Icon = "@drawable/icon")] - public class MainActivity : Activity - { - int count = 1; - - protected override void OnCreate(Bundle bundle) - { - base.OnCreate(bundle); - - // Set our view from the "main" layout resource - SetContentView(Resource.Layout.Main); - - // Get our button from the layout resource, - // and attach an event to it - Button button = FindViewById