android-devel.rst
changeset 2593 f0ab046a080f
parent 2228 837f1337c59b
equal deleted inserted replaced
2592:fa6f56666150 2593:f0ab046a080f
    14 https://design.google.com/devices/
    14 https://design.google.com/devices/
    15   Device metrics.
    15   Device metrics.
    16 https://www.google.com/design/spec/material-design/introduction.html
    16 https://www.google.com/design/spec/material-design/introduction.html
    17   Material design, components list and example.
    17   Material design, components list and example.
    18 
    18 
       
    19 Installing Android SDK from command line tools
       
    20 ==============================================
       
    21 
       
    22 Download "Command line tools only" in:
       
    23 
       
    24 https://developer.android.com/studio
       
    25   Android Studio downloads
       
    26 
       
    27 Define env var ``ANDROID_HOME``, like::
       
    28 
       
    29   ANDROID_HOME=c:\opt\android-sdk
       
    30 
       
    31 Place ``bin`` & ``lib`` dirs from the zip archive to (the difference is that the archive
       
    32 misses ``latest`` part)::
       
    33 
       
    34   %ANDROID_HOME%\cmdline-tools\latest
       
    35 
       
    36 Run the ``sdkmanager.bat``::
       
    37 
       
    38   sdkmanager.bat --list
       
    39 
       
    40 Install ``platform-tools``, containing ``adb`` & ``fastboot``::
       
    41 
       
    42   sdkmanager.bat --install platform-tools
       
    43 
       
    44 Update ``PATH``, add ::
       
    45 
       
    46   %ANDROID_HOME%\platform-tools