WARNING ITMS-90704: "Missing App Store Icon. &usbmuxd的2個應用場景

weixin_33806914發表於2017-11-30

前言

本文重點

WARNING ITMS-90704: "Missing App Store Icon. iOS Apps must include a 1024x1024px App Store Icon in PNG format. Without providing the icon in the Asset Catalog or via iTunes Connect, apps cannot be submitted for App Review or Beta App Review. Refer to https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/ for more information."

Asset Catalog新增1024 ,可以 via iTunes Connect自動顯示包中的1024

ipa 的基本資訊

get-task-allow


aps-environment
production
get-task-allow
false
beta-reports-active
true

http://help.apple.com/itunes-...

usbmuxd-1.0.8

  • 應用場景1:通過USB連線 來使用SSH到iOS裝置

把本地2222埠轉發到iOS的22埠

alias relay22='python ~/Downloads/kevin-software/ios-Reverse_Engineering/usbmuxd-1.0.8\ 2/python-client/tcprelay.py  -t 22:2222'
alias sshusb='ssh root@localhost -p 2222'

- 應用場景2:debugserver的開啟與LLDB的連線

iPhone:/usr/bin root# debugserver *:12345 -a "WeChat"
debugserver-@(#)PROGRAM:debugserver  PROJECT:debugserver-320.2.89
 for armv7.
Attaching to process WeChat...
Listening to port 12345 for a connection from *...

把本地12345埠轉發到iOS的12345埠


alias relay12345='python ~/Downloads/kevin-software/ios-Reverse_Engineering/usbmuxd-1.0.8\ 2/python-client/tcprelay.py  -t  12345:12345'

devzkndeMacBook-Pro:~ devzkn$ lldb
(lldb) process connect connect://localhost:12345
Process 7291 stopped

KNAFlexLoader

You can use it to analyse 3rd-party apps without sourcecode Edit
Add topics

相關文章