xamarin.ios - How can Apple tell if an app was built in MonoTouch? -


monotouch compiles app native code. how can apple know app built using monotouch? monotouch leaves signature in application?

does monotouch has own libraries trace of origin or compiles code , .net libraries native code?

the resulting .app package contains application binary, resources required additional libraries, such as:

  • montouch.dll;
  • system.dll;
  • system.xml.dll , on.

as such, trivial them check if application built monotouch or not - simple right clicking package , select "show package contents" in finder.

however, need not worry that, apple has relaxed license agreement: http://daringfireball.net/2010/09/app_store_guidelines


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -