Android Open Source - Xamarin.Forms-InlineMenu Mono Package Manager






From Project

Back to project page Xamarin.Forms-InlineMenu.

License

The source code is released under:

MIT License

If you think the Android project Xamarin.Forms-InlineMenu listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package mono;
/*from   ww  w .j ava2 s . co  m*/
import java.io.*;
import java.lang.String;
import java.util.Locale;
import java.util.HashSet;
import java.util.zip.*;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ApplicationInfo;
import android.content.res.AssetManager;
import android.util.Log;
import mono.android.Runtime;

public class MonoPackageManager {

  static Object lock = new Object ();
  static boolean initialized;

  public static void LoadApplication (Context context, String runtimeDataDir, String[] apks)
  {
    synchronized (lock) {
      if (!initialized) {
        System.loadLibrary("monodroid");
        Locale locale       = Locale.getDefault ();
        String language     = locale.getLanguage () + "-" + locale.getCountry ();
        String filesDir     = context.getFilesDir ().getAbsolutePath ();
        String cacheDir     = context.getCacheDir ().getAbsolutePath ();
        String dataDir      = context.getApplicationInfo ().dataDir + "/lib";
        ClassLoader loader  = context.getClassLoader ();

        Runtime.init (
            language,
            apks,
            runtimeDataDir,
            new String[]{
              filesDir,
              cacheDir,
              dataDir,
            },
            loader,
            new java.io.File (
              android.os.Environment.getExternalStorageDirectory (),
              "Android/data/" + context.getPackageName () + "/files/.__override__").getAbsolutePath (),
            MonoPackageManager_Resources.Assemblies,
            context.getPackageName ());
        initialized = true;
      }
    }
  }

  public static String[] getAssemblies ()
  {
    return MonoPackageManager_Resources.Assemblies;
  }

  public static String[] getDependencies ()
  {
    return MonoPackageManager_Resources.Dependencies;
  }

  public static String getApiPackageName ()
  {
    return MonoPackageManager_Resources.ApiPackageName;
  }
}

class MonoPackageManager_Resources {
  public static final String[] Assemblies = new String[]{
    "InlineMenu.Android.dll",
    "Xamarin.Android.Support.v4.dll",
    "Xamarin.Forms.Platform.Android.dll",
    "Xamarin.Forms.Core.dll",
    "Xamarin.Forms.Xaml.dll",
    "InlineMenu.dll",
    "System.Collections.Concurrent.dll",
    "System.Collections.dll",
    "System.ComponentModel.Annotations.dll",
    "System.ComponentModel.EventBasedAsync.dll",
    "System.ComponentModel.dll",
    "System.Diagnostics.Contracts.dll",
    "System.Diagnostics.Debug.dll",
    "System.Diagnostics.Tools.dll",
    "System.Dynamic.Runtime.dll",
    "System.Globalization.dll",
    "System.IO.dll",
    "System.Linq.Expressions.dll",
    "System.Linq.Parallel.dll",
    "System.Linq.Queryable.dll",
    "System.Linq.dll",
    "System.Net.NetworkInformation.dll",
    "System.Net.Primitives.dll",
    "System.Net.Requests.dll",
    "System.ObjectModel.dll",
    "System.Reflection.Emit.ILGeneration.dll",
    "System.Reflection.Emit.Lightweight.dll",
    "System.Reflection.Emit.dll",
    "System.Reflection.Extensions.dll",
    "System.Reflection.Primitives.dll",
    "System.Reflection.dll",
    "System.Resources.ResourceManager.dll",
    "System.Runtime.Extensions.dll",
    "System.Runtime.InteropServices.WindowsRuntime.dll",
    "System.Runtime.InteropServices.dll",
    "System.Runtime.Numerics.dll",
    "System.Runtime.Serialization.Json.dll",
    "System.Runtime.Serialization.Primitives.dll",
    "System.Runtime.Serialization.Xml.dll",
    "System.Runtime.dll",
    "System.Security.Principal.dll",
    "System.ServiceModel.Http.dll",
    "System.ServiceModel.Primitives.dll",
    "System.Text.Encoding.Extensions.dll",
    "System.Text.Encoding.dll",
    "System.Text.RegularExpressions.dll",
    "System.Threading.Tasks.Parallel.dll",
    "System.Threading.Tasks.dll",
    "System.Threading.dll",
    "System.Xml.ReaderWriter.dll",
    "System.Xml.XDocument.dll",
    "System.Xml.XmlSerializer.dll",
  };
  public static final String[] Dependencies = new String[]{
  };
  public static final String ApiPackageName = "Mono.Android.Platform.ApiLevel_19";
}




Java Source Code List

inlinemenu.android.MainActivity.java
mono.MonoPackageManager.java
mono.MonoRuntimeProvider.java
mono.android.Seppuku.java
mono.android.support.v4.app.FragmentManager_OnBackStackChangedListenerImplementor.java
mono.android.support.v4.content.Loader_OnLoadCompleteListenerImplementor.java
mono.android.support.v4.view.ActionProvider_SubUiVisibilityListenerImplementor.java
mono.android.support.v4.view.ActionProvider_VisibilityListenerImplementor.java
mono.android.support.v4.view.MenuItemCompat_OnActionExpandListenerImplementor.java
mono.android.support.v4.view.ViewPager_OnPageChangeListenerImplementor.java
mono.android.support.v4.widget.DrawerLayout_DrawerListenerImplementor.java
mono.android.support.v4.widget.SlidingPaneLayout_PanelSlideListenerImplementor.java
xamarin.forms.platform.android.ActionSheetRenderer.java
xamarin.forms.platform.android.ActivityIndicatorRenderer.java
xamarin.forms.platform.android.AndroidActivity.java
xamarin.forms.platform.android.BaseCellView.java
xamarin.forms.platform.android.BaseViewRenderer.java
xamarin.forms.platform.android.BoxRenderer.java
xamarin.forms.platform.android.ButtonDrawable.java
xamarin.forms.platform.android.ButtonRenderer_ButtonClickListener.java
xamarin.forms.platform.android.ButtonRenderer.java
xamarin.forms.platform.android.CarouselPageAdapter.java
xamarin.forms.platform.android.CarouselPageRenderer.java
xamarin.forms.platform.android.CellRenderer_RendererHolder.java
xamarin.forms.platform.android.DatePickerRenderer_TextFieldClickHandler.java
xamarin.forms.platform.android.DatePickerRenderer.java
xamarin.forms.platform.android.EditorRenderer.java
xamarin.forms.platform.android.EntryCellView.java
xamarin.forms.platform.android.EntryRenderer.java
xamarin.forms.platform.android.FrameRenderer_FrameDrawable.java
xamarin.forms.platform.android.FrameRenderer.java
xamarin.forms.platform.android.GenericAnimatorListener.java
xamarin.forms.platform.android.GenericMenuClickListener.java
xamarin.forms.platform.android.ImageRenderer.java
xamarin.forms.platform.android.LabelRenderer.java
xamarin.forms.platform.android.ListViewAdapter.java
xamarin.forms.platform.android.ListViewRenderer.java
xamarin.forms.platform.android.MasterDetailContainer.java
xamarin.forms.platform.android.MasterDetailRenderer.java
xamarin.forms.platform.android.NativeRenderer.java
xamarin.forms.platform.android.NavigationMenuRenderer.java
xamarin.forms.platform.android.NavigationRenderer.java
xamarin.forms.platform.android.ObjectJavaBox_1.java
xamarin.forms.platform.android.OpenGLRenderer_Renderer.java
xamarin.forms.platform.android.OpenGLRenderer.java
xamarin.forms.platform.android.PageContainer.java
xamarin.forms.platform.android.PageRenderer.java
xamarin.forms.platform.android.PickerRenderer_PickerListener.java
xamarin.forms.platform.android.PickerRenderer.java
xamarin.forms.platform.android.PlatformRenderer.java
xamarin.forms.platform.android.ProgressBarRenderer.java
xamarin.forms.platform.android.ScrollViewContainer.java
xamarin.forms.platform.android.ScrollViewRenderer.java
xamarin.forms.platform.android.SearchBarRenderer.java
xamarin.forms.platform.android.SliderRenderer.java
xamarin.forms.platform.android.StepperRenderer_StepperListener.java
xamarin.forms.platform.android.StepperRenderer.java
xamarin.forms.platform.android.SwitchRenderer.java
xamarin.forms.platform.android.TabbedRenderer.java
xamarin.forms.platform.android.TableViewModelRenderer.java
xamarin.forms.platform.android.TableViewRenderer.java
xamarin.forms.platform.android.TextCellRenderer_TextCellView.java
xamarin.forms.platform.android.TimePickerRenderer_TimePickerListener.java
xamarin.forms.platform.android.TimePickerRenderer.java
xamarin.forms.platform.android.ToolbarRenderer.java
xamarin.forms.platform.android.ViewCellRenderer_ViewCellContainer.java
xamarin.forms.platform.android.ViewRenderer.java
xamarin.forms.platform.android.ViewTracker_AttachTracker.java
xamarin.forms.platform.android.WebRenderer_WebClient.java
xamarin.forms.platform.android.WebRenderer.java