Posts

Showing posts with the label Iis 7

Configure IIS 7.0 To Download APK

Answer : Solution 1: Open the Internet Information Service (IIS) Manager -> Properties Click MIME types New -> type Extension ".apk" and MIME type "application/vnd.android.package-archive" Click Ok and Apply Solution 2: Generally, adding a new MIME type should be all that's required: application/vnd.android.package-archive Solution 3: Add this to the web.config : <system.webServer> <staticContent> <mimeMap fileExtension="apk" mimeType="application/vnd.android.package-archive" /> </staticContent> <system.webServer>