Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Pappas (0.26 sec)

  1. misc/ios/README

    First make sure you have a valid developer certificate and have setup your device properly
    to run apps signed by your developer certificate. Then install the libimobiledevice and
    ideviceinstaller tools from https://www.libimobiledevice.org/. Use the HEAD versions from
    source; the stable versions have bugs that prevents the Go exec wrapper to install and run
    apps.
    
    Second, the Go exec wrapper must be told the developer account signing identity, the team
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Dec 29 21:49:26 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  2. misc/ios/go_ios_exec.go

    		return "", fmt.Errorf("ideviceinstaller: -l -o xml %v", err)
    	}
    	var list struct {
    		Apps []struct {
    			Data []byte `xml:",innerxml"`
    		} `xml:"array>dict"`
    	}
    	if err := xml.Unmarshal(out, &list); err != nil {
    		return "", fmt.Errorf("failed to parse ideviceinstaller output: %v", err)
    	}
    	for _, app := range list.Apps {
    		values, err := parsePlistDict(app.Data)
    		if err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
Back to top