<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>"Application Not Installed"  Error</title>
  <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=5531351" />
  <subtitle>"Application Not Installed"  Error</subtitle>
  <id>http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=5531351</id>
  <updated>2013-06-20T03:07:09Z</updated>
  <dc:date>2013-06-20T03:07:09Z</dc:date>
  <entry>
    <title>RE: "Application Not Installed"  Error</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=5732136" />
    <author>
      <name>Laura Weaver</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=5732136</id>
    <updated>2012-05-15T18:28:37Z</updated>
    <published>2012-05-15T18:28:37Z</published>
    <summary type="html">Yes, that was the solution, app now runs great.
Thanks for the fix!</summary>
    <dc:creator>Laura Weaver</dc:creator>
    <dc:date>2012-05-15T18:28:37Z</dc:date>
  </entry>
  <entry>
    <title>RE: "Application Not Installed"  Error</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=5548333" />
    <author>
      <name>Larry Michalewicz</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=5548333</id>
    <updated>2012-05-01T22:13:01Z</updated>
    <published>2012-05-01T22:13:01Z</published>
    <summary type="html">How are you installing the application.  If your system administrator doesn't allow ADB, there is a chance they don't allow side loading applications either.  I suggest creating an empty Eclipse project (HelloWorld) and see if you can install it.  If you can not, you'll need to talk to your adminstrator about allowing applications on your device.
 
Larry M.</summary>
    <dc:creator>Larry Michalewicz</dc:creator>
    <dc:date>2012-05-01T22:13:01Z</dc:date>
  </entry>
  <entry>
    <title>RE: "Application Not Installed"  Error</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=5546436" />
    <author>
      <name>David Staudt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=5546436</id>
    <updated>2012-05-01T21:53:08Z</updated>
    <published>2012-05-01T21:53:08Z</published>
    <summary type="html">There are a couple of apps in the Play Market that will retrieve the system logcat output for display/email/etc. This should help in debugging.
 
I do not see any platform version info in the manifest, e.g.:
 
&lt;uses-sdk android:minSdkVersion="8"/&gt;
 
This could be the issue.</summary>
    <dc:creator>David Staudt</dc:creator>
    <dc:date>2012-05-01T21:53:08Z</dc:date>
  </entry>
  <entry>
    <title>"Application Not Installed"  Error</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=5531350" />
    <author>
      <name>Laura Weaver</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=5531350</id>
    <updated>2012-04-28T01:27:30Z</updated>
    <published>2012-04-28T01:27:30Z</published>
    <summary type="html">Hi-
 
I am installing my APK file on my CIUS and when I install I get "Application Not Installed" error.
 
Security concerns won't allow my UCM administrator to allow USB debugging on my CIUS, so I believe that precludes me from using ADB or anything useful like that to debug (tell me if I am wrong.).
 
My cius is running kernel version 2.6.31.6-mrst.
 
This is my android manifest.  Please advise.
 
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.cisco.sample.phoneapplication"
      android:versionCode="1"
      android:versionName="1.0"&gt;
    &lt;uses-permission android:name="android.permission.READ_PHONE_STATE"&gt;&lt;/uses-permission&gt;
    &lt;uses-permission android:name="android.permission.CALL_PHONE"&gt;&lt;/uses-permission&gt;
    &lt;uses-permission android:name="android.permission.BIND_DEVICE_ADMIN"&gt;&lt;/uses-permission&gt;
    &lt;uses-permission android:name="android.permission.CALL_PRIVILEGED"&gt;&lt;/uses-permission&gt;
    &lt;uses-permission android:name="android.permission.MODIFY_PHONE_STATE"&gt;&lt;/uses-permission&gt;
    &lt;uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"&gt;&lt;/uses-permission&gt;
    &lt;uses-permission android:name="cisco.telephony.permission.DEVICE_PERMISSION"&gt;&lt;/uses-permission&gt;
    &lt;uses-permission android:name="cisco.telephony.permission.CALL_INFO_PERMISSION"&gt;&lt;/uses-permission&gt;
    &lt;application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/CisDemoTheme"&gt;
    &lt;uses-library android:name="CiscoTelephony" /&gt;
        &lt;service android:name=".SamplePhoneApplicationService"
                  android:label="Service"&gt;
            &lt;intent-filter&gt;
                &lt;action android:name="com.cisco.SampleApplicationService" /&gt;
                &lt;category android:name="android.intent.category.LAUNCHER" /&gt;
            &lt;/intent-filter&gt;
        &lt;/service&gt;
        &lt;activity android:name=".SamplePhoneApplicationActivity"
                  android:label="@string/app_name"&gt;
            &lt;intent-filter&gt;
                &lt;action android:name="android.intent.action.MAIN" /&gt;
                &lt;category android:name="android.intent.category.LAUNCHER" /&gt;
            &lt;/intent-filter&gt;
        &lt;/activity&gt;
        &lt;activity android:name=".SamplePhoneApplicationDialog"
                  android:label="@string/app_name"
                  android:theme="@android:style/Theme.Dialog"
                  android:launchMode="singleInstance"
                  android:noHistory="true"&gt;
            &lt;intent-filter&gt;
                &lt;action android:name="com.cisco.SampleApplicationDialog" /&gt;
                &lt;category android:name="android.intent.category.DEFAULT" /&gt;
            &lt;/intent-filter&gt;
        &lt;/activity&gt;
        &lt;activity android:name=".Settings"
android:label="@string/app_name"&gt;
&lt;/activity&gt;
&lt;activity android:name=".Dialog"
android:label="@string/app_name"&gt;

&lt;/activity&gt;

    &lt;/application&gt;
    &lt;uses-sdk android:minSdkVersion="8" /&gt;

&lt;/manifest&gt;</summary>
    <dc:creator>Laura Weaver</dc:creator>
    <dc:date>2012-04-28T01:27:30Z</dc:date>
  </entry>
</feed>

