2

I am trying to install and app. I developed it and signed it and exported it and when I go install on phone it comes up with "Application not installed".

No the application has not been installed before and I need to remove it. No debug mode is not true

Here is my manifest.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="spending.tracker"
  android:versionCode="1"
  android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".SpendingActivity"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".ListExspenses" />
    <activity android:name=".GraphExpenses" />

</application>

leppie
  • 115,091
  • 17
  • 196
  • 297
plantie105
  • 21
  • 1
  • How are you installing the APK onto your device? I would recommend using appInstaller or the like from the app market, if you are not already doing so. – Kgrover Jul 29 '11 at 18:02
  • I tried using the file explorer that was shipped with my Samsung S2. Click the APK-file, it pops up but in the end it says "Application not installed" with a green "check" to the left of it. – Ted Oct 21 '11 at 15:16

1 Answers1

0

Try to generate a new apk file with a fresh new keystore.

Aurelian Cotuna
  • 3,076
  • 3
  • 29
  • 49