<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ReconOS Project in Android Studio in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/ReconOS-Project-in-Android-Studio/m-p/1107898#M71051</link>
    <description>&lt;P&gt;Hi, I am following along to the 'Using the ReconOS SDK Map Component' document to start building an application for the Recon Jet (Enterprise) headset. As described in the document, I've added the maven repository to the build.gradle(Project:ReconApp) file, added the recon SDK packages to the build.gradle(Module:app) file, and updated the manifest. However, when compiling I get the following errors:&lt;/P&gt;

&lt;P&gt;“Failed to resolve: com.reconinstruments.app:recon-application:4.4.0”&lt;/P&gt;

&lt;P&gt;“Failed to resolve: com.reconinstruments.os:recon-platform:4.4.0”&lt;/P&gt;

&lt;P&gt;“Failed to resolve: com.reconinstruments.ui:recon-ui:4.4.0”&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Please let me know how I can troubleshoot this problem, any help would be greatly appreciated!&lt;/P&gt;

&lt;P&gt;Below are my build.gradle files:&lt;/P&gt;

&lt;P&gt;build.gradle(Project):&lt;/P&gt;

&lt;PRE style="color: rgb(0, 0, 0); font-family: &amp;quot;Courier New&amp;quot;; font-size: 9.6pt;"&gt;buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.tools.build:gradle:2.2.2'
&lt;/SPAN&gt;
&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;&lt;SPAN style="color:#808080;font-style:italic;"&gt;// NOTE: Do not place your application dependencies here; they belong
&lt;/SPAN&gt;&lt;SPAN style="color:#808080;font-style:italic;"&gt;        // in the individual module build.gradle files
&lt;/SPAN&gt;&lt;SPAN style="color:#808080;font-style:italic;"&gt;    &lt;/SPAN&gt;}
}

allprojects {
    repositories {
        jcenter()
        maven {
            url &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"http://repo.reconinstruments.com/artifactory/libs-release"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;}
    }
}


task clean(&lt;SPAN style="color:#008000;font-weight:bold;"&gt;type&lt;/SPAN&gt;: Delete) {
    delete rootProject.buildDir
}&lt;/PRE&gt;

&lt;P&gt;build.gradle(Module):&lt;/P&gt;

&lt;PRE style="color: rgb(0, 0, 0); font-family: &amp;quot;Courier New&amp;quot;; font-size: 9.6pt;"&gt;apply &lt;SPAN style="color:#008000;font-weight:bold;"&gt;plugin&lt;/SPAN&gt;: &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.application'
&lt;/SPAN&gt;
android {
    compileSdkVersion &lt;SPAN style="color:#0000ff;"&gt;25
&lt;/SPAN&gt;&lt;SPAN style="color:#0000ff;"&gt;    &lt;/SPAN&gt;buildToolsVersion &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"24.0.2"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;defaultConfig {
        applicationId &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"blackberry.reconapp"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;minSdkVersion &lt;SPAN style="color:#0000ff;"&gt;16
&lt;/SPAN&gt;&lt;SPAN style="color:#0000ff;"&gt;        &lt;/SPAN&gt;targetSdkVersion &lt;SPAN style="color:#0000ff;"&gt;16
&lt;/SPAN&gt;&lt;SPAN style="color:#0000ff;"&gt;        &lt;/SPAN&gt;versionCode &lt;SPAN style="color:#0000ff;"&gt;1
&lt;/SPAN&gt;&lt;SPAN style="color:#0000ff;"&gt;        &lt;/SPAN&gt;versionName &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"1.0"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;testInstrumentationRunner &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"android.support.test.runner.AndroidJUnitRunner"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;}
    buildTypes {
        release {
            minifyEnabled &lt;SPAN style="color:#000043;font-weight:bold;"&gt;false
&lt;/SPAN&gt;&lt;SPAN style="color:#000043;font-weight:bold;"&gt;            &lt;/SPAN&gt;proguardFiles getDefaultProguardFile(&lt;SPAN style="color:#008000;font-weight:bold;"&gt;'proguard-android.txt'&lt;/SPAN&gt;), &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'proguard-rules.pro'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;}
    }
}

dependencies {
    compile fileTree(&lt;SPAN style="color:#008000;font-weight:bold;"&gt;dir&lt;/SPAN&gt;: &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'libs'&lt;/SPAN&gt;, &lt;SPAN style="color:#008000;font-weight:bold;"&gt;include&lt;/SPAN&gt;: [&lt;SPAN style="color:#008000;font-weight:bold;"&gt;'*.jar'&lt;/SPAN&gt;])
    androidTestCompile(&lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.support.test.espresso:espresso-core:2.2.2'&lt;/SPAN&gt;, {
        exclude &lt;SPAN style="color:#008000;font-weight:bold;"&gt;group&lt;/SPAN&gt;: &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.support'&lt;/SPAN&gt;, &lt;SPAN style="color:#008000;font-weight:bold;"&gt;module&lt;/SPAN&gt;: &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'support-annotations'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;})
    compile &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.support:appcompat-v7:25.0.1'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;testCompile &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'junit:junit:4.12'
&lt;/SPAN&gt;
&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;compile &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.reconinstruments.app:recon-application:4.4.0'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;compile &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.reconinstruments.ui:recon-ui:4.4.0'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;provided &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.reconinstruments.os:recon-platform:4.4.0'
&lt;/SPAN&gt;}&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 07 Dec 2016 20:22:06 GMT</pubDate>
    <dc:creator>Jeffrey_J_</dc:creator>
    <dc:date>2016-12-07T20:22:06Z</dc:date>
    <item>
      <title>ReconOS Project in Android Studio</title>
      <link>https://community.intel.com/t5/Software-Archive/ReconOS-Project-in-Android-Studio/m-p/1107898#M71051</link>
      <description>&lt;P&gt;Hi, I am following along to the 'Using the ReconOS SDK Map Component' document to start building an application for the Recon Jet (Enterprise) headset. As described in the document, I've added the maven repository to the build.gradle(Project:ReconApp) file, added the recon SDK packages to the build.gradle(Module:app) file, and updated the manifest. However, when compiling I get the following errors:&lt;/P&gt;

&lt;P&gt;“Failed to resolve: com.reconinstruments.app:recon-application:4.4.0”&lt;/P&gt;

&lt;P&gt;“Failed to resolve: com.reconinstruments.os:recon-platform:4.4.0”&lt;/P&gt;

&lt;P&gt;“Failed to resolve: com.reconinstruments.ui:recon-ui:4.4.0”&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Please let me know how I can troubleshoot this problem, any help would be greatly appreciated!&lt;/P&gt;

&lt;P&gt;Below are my build.gradle files:&lt;/P&gt;

&lt;P&gt;build.gradle(Project):&lt;/P&gt;

&lt;PRE style="color: rgb(0, 0, 0); font-family: &amp;quot;Courier New&amp;quot;; font-size: 9.6pt;"&gt;buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.tools.build:gradle:2.2.2'
&lt;/SPAN&gt;
&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;&lt;SPAN style="color:#808080;font-style:italic;"&gt;// NOTE: Do not place your application dependencies here; they belong
&lt;/SPAN&gt;&lt;SPAN style="color:#808080;font-style:italic;"&gt;        // in the individual module build.gradle files
&lt;/SPAN&gt;&lt;SPAN style="color:#808080;font-style:italic;"&gt;    &lt;/SPAN&gt;}
}

allprojects {
    repositories {
        jcenter()
        maven {
            url &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"http://repo.reconinstruments.com/artifactory/libs-release"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;}
    }
}


task clean(&lt;SPAN style="color:#008000;font-weight:bold;"&gt;type&lt;/SPAN&gt;: Delete) {
    delete rootProject.buildDir
}&lt;/PRE&gt;

&lt;P&gt;build.gradle(Module):&lt;/P&gt;

&lt;PRE style="color: rgb(0, 0, 0); font-family: &amp;quot;Courier New&amp;quot;; font-size: 9.6pt;"&gt;apply &lt;SPAN style="color:#008000;font-weight:bold;"&gt;plugin&lt;/SPAN&gt;: &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.application'
&lt;/SPAN&gt;
android {
    compileSdkVersion &lt;SPAN style="color:#0000ff;"&gt;25
&lt;/SPAN&gt;&lt;SPAN style="color:#0000ff;"&gt;    &lt;/SPAN&gt;buildToolsVersion &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"24.0.2"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;defaultConfig {
        applicationId &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"blackberry.reconapp"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;minSdkVersion &lt;SPAN style="color:#0000ff;"&gt;16
&lt;/SPAN&gt;&lt;SPAN style="color:#0000ff;"&gt;        &lt;/SPAN&gt;targetSdkVersion &lt;SPAN style="color:#0000ff;"&gt;16
&lt;/SPAN&gt;&lt;SPAN style="color:#0000ff;"&gt;        &lt;/SPAN&gt;versionCode &lt;SPAN style="color:#0000ff;"&gt;1
&lt;/SPAN&gt;&lt;SPAN style="color:#0000ff;"&gt;        &lt;/SPAN&gt;versionName &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"1.0"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;testInstrumentationRunner &lt;SPAN style="color:#008000;font-weight:bold;"&gt;"android.support.test.runner.AndroidJUnitRunner"
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;}
    buildTypes {
        release {
            minifyEnabled &lt;SPAN style="color:#000043;font-weight:bold;"&gt;false
&lt;/SPAN&gt;&lt;SPAN style="color:#000043;font-weight:bold;"&gt;            &lt;/SPAN&gt;proguardFiles getDefaultProguardFile(&lt;SPAN style="color:#008000;font-weight:bold;"&gt;'proguard-android.txt'&lt;/SPAN&gt;), &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'proguard-rules.pro'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;        &lt;/SPAN&gt;}
    }
}

dependencies {
    compile fileTree(&lt;SPAN style="color:#008000;font-weight:bold;"&gt;dir&lt;/SPAN&gt;: &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'libs'&lt;/SPAN&gt;, &lt;SPAN style="color:#008000;font-weight:bold;"&gt;include&lt;/SPAN&gt;: [&lt;SPAN style="color:#008000;font-weight:bold;"&gt;'*.jar'&lt;/SPAN&gt;])
    androidTestCompile(&lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.support.test.espresso:espresso-core:2.2.2'&lt;/SPAN&gt;, {
        exclude &lt;SPAN style="color:#008000;font-weight:bold;"&gt;group&lt;/SPAN&gt;: &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.support'&lt;/SPAN&gt;, &lt;SPAN style="color:#008000;font-weight:bold;"&gt;module&lt;/SPAN&gt;: &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'support-annotations'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;})
    compile &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.android.support:appcompat-v7:25.0.1'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;testCompile &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'junit:junit:4.12'
&lt;/SPAN&gt;
&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;compile &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.reconinstruments.app:recon-application:4.4.0'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;compile &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.reconinstruments.ui:recon-ui:4.4.0'
&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-weight:bold;"&gt;    &lt;/SPAN&gt;provided &lt;SPAN style="color:#008000;font-weight:bold;"&gt;'com.reconinstruments.os:recon-platform:4.4.0'
&lt;/SPAN&gt;}&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2016 20:22:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ReconOS-Project-in-Android-Studio/m-p/1107898#M71051</guid>
      <dc:creator>Jeffrey_J_</dc:creator>
      <dc:date>2016-12-07T20:22:06Z</dc:date>
    </item>
  </channel>
</rss>

