Code Monkey home page Code Monkey logo

mobiledevice's People

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

mobiledevice's Issues

getting Error " Attempted to read or write protected memory. This is often an indication that other memory is corrupt."

I am Getting this Error when i try to Install Application into iOS Device.

I am using this Code...

     [DllImport("iTunesMobileDevice.dll", CallingConvention = CallingConvention.Cdecl)]
    extern static int AMDeviceSecureTransferPath(int unused0, IntPtr device, IntPtr appUrl, IntPtr opts, IntPtr callback, int callback_arg);

    [DllImport("iTunesMobileDevice.dll", CallingConvention = CallingConvention.Cdecl)]
    extern static int AMDeviceSecureInstallApplication(int unused0, IntPtr device, IntPtr appUrl, IntPtr opts, IntPtr callback, int callback_arg);

    public bool InstallApp(string currUdid, string appPath)
    {
        IntPtr device;
        //string currUdid = getUDID();
        Console.Write("Opening new device handle...");
        LibiMobileDevice.iDeviceError returnCode = LibiMobileDevice.NewDevice(out device, currUdid);
        Console.WriteLine(device);

        CFString path = new CFString(appPath);
        IntPtr appUrl = CFLibrary.CFURLCreateWithFileSystemPath(IntPtr.Zero, path.typeRef, 2, false);
        string[] k = new string[1];
        k[0] = "PackageType";
        IntPtr[] v = new IntPtr[1];
        v[0] = new CFString("Developer");
        CFDictionary opts = new CFDictionary(k, v);

        int err = AMDeviceSecureTransferPath(0, device, appUrl, opts, IntPtr.Zero, 0);
        if (err == NO_ERR)
        {
            return AMDeviceSecureInstallApplication(0, device, appUrl, opts, IntPtr.Zero, 0) == NO_ERR;
        }
        return err == NO_ERR;
    }

i dont know why its unable to give AMDeviceSecureTransferPath Permission as i included iTunesMobileDevice Already in my debug folder.

Please help me out with this

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.