Categories
Android Google Microsoft SDK Windows 7 Windows Server 2008 Windows Vista Windows XP

Android SDK update – “File not found: C:\Program Files\Android\android-sdk\temp\platform-tools_r12-windows.zip (Access is denied) Skipping ‘Android SDK Tools, revision 20’; it depends on ‘Android SDK Platform-tools, revision 12’ which was not installed.”

Solution to the error “File not found: C:\Program Files\Android\android-sdk\temp\platform-tools_r*-windows.zip (Access is denied)”.

File not found error on Android SDK update

When you try to upgrade the Android SDK on Microsoft Windows with the SDK Manager show the following error lines:

File not found: C:\Program Files\Android\android-sdk\temp\platform-tools_r12-windows.zip (Access is denied)
Skipping ‘Android SDK Tools, revision 20’; it depends on ‘Android SDK Platform-tools, revision 12’ which was not installed.

Solution:

Close the SDK Manager and Run as Administrator (Start -> All Programs -> Android SDK Tools -> Right-click SDK Manager, select “Run as administrator” then click Yes).

Did my solution solve your problem? Leave a reply.

Categories
7.0 7.5 7.8 8.0 HOW TO Microsoft SDK 7.1 SDK 7.8 VB.NET Visual Studio Windows Phone

HOW TO create a bulleted list in Microsoft Windows Phone App

To create a bulleted list in Microsoft Windows Phone App you have the following options:

  1. Write text inside your xaml file using and elements
    [sourcecode lang=”xml”]
    <TextBlock TextWrapping="Wrap">
    New features:<LineBreak/>
    <Run>• No Ads</Run><LineBreak/>
    <Run>• Message Encryption with Password for a double protection</Run><LineBreak/>
    <Run>• Advanced settings</Run><LineBreak/>
    <Run>• and more…</Run><LineBreak/>
    </TextBlock>
    [/sourcecode]
  2. Write text inside you Resouces file (use SHIFT+RETURN to create new line)
    [sourcecode lang=”text”]
    New features:
    • No Ads
    • Message Encryption with Password for a double protection
    • Advanced settings
    • and more…
    [/sourcecode]
  3. Create a bulleted or numbered list in Blend

Did my HOW TO help you? Leave a reply.