12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
- <title>Building — android_core 0.1.0 documentation</title>
-
- <link rel="stylesheet" href="_static/haiku.css" type="text/css" />
- <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
- <link rel="stylesheet" href="_static/print.css" type="text/css" />
-
- <script type="text/javascript">
- var DOCUMENTATION_OPTIONS = {
- URL_ROOT: '',
- VERSION: '0.1.0',
- COLLAPSE_INDEX: false,
- FILE_SUFFIX: '.html',
- HAS_SOURCE: true
- };
- </script>
- <script type="text/javascript" src="_static/jquery.js"></script>
- <script type="text/javascript" src="_static/underscore.js"></script>
- <script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="_static/theme_extras.js"></script>
- <link rel="top" title="android_core 0.1.0 documentation" href="index.html" />
- <link rel="next" title="Getting started" href="getting_started.html" />
- <link rel="prev" title="Installing" href="installing.html" />
- </head>
- <body>
- <div class="header"><h1 class="heading"><a href="index.html">
- <span>android_core 0.1.0 documentation</span></a></h1>
- <h2 class="heading"><span>Building</span></h2>
- </div>
- <div class="topnav">
-
- <p>
- «  <a href="installing.html">Installing</a>
-   ::  
- <a class="uplink" href="index.html">Contents</a>
-   ::  
- <a href="getting_started.html">Getting started</a>  »
- </p>
- </div>
- <div class="content">
-
-
- <div class="section" id="building">
- <span id="id1"></span><h1>Building<a class="headerlink" href="#building" title="Permalink to this headline">¶</a></h1>
- <p>android_core uses the <a class="reference external" href="http://www.gradle.org/">Gradle</a> build system in tandem with an external maven
- repository which supplies dependencies (.jar’s and .aar’s).</p>
- <p>To build debug APKs for all android_core packages, execute the <a class="reference external" href="http://gradle.org/docs/current/userguide/gradle_wrapper.html">gradle wrapper</a>.</p>
- <div class="highlight-bash"><div class="highlight"><pre><span class="nb">cd </span>android_core
- ./gradlew assemble
- </pre></div>
- </div>
- <p>You may deploy the android libraries (.aar’s) to your local maven repository so
- that other android packages outside android_core can use them with:</p>
- <p>To build the documentation, you may execute the docs task:</p>
- <div class="highlight-bash"><div class="highlight"><pre>./gradlew docs
- </pre></div>
- </div>
- <p>At this point, you may interact with your Android projects via Android Studio as described
- in the <a class="reference external" href="http://wiki.ros.org/android/AndroidStudio">RosWiki</a> pages.</p>
- </div>
- </div>
- <div class="bottomnav">
-
- <p>
- «  <a href="installing.html">Installing</a>
-   ::  
- <a class="uplink" href="index.html">Contents</a>
-   ::  
- <a href="getting_started.html">Getting started</a>  »
- </p>
- </div>
- <div class="footer">
- © Copyright 2013, Google, Inc..
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
- </div>
- </body>
- </html>
|