1

我制作了我的 android 应用程序并在 AVD 上对其进行了测试,但是当我想在手机上安装它时,我得到“未安装应用程序”

什么可能导致这个问题?

这是 Manifest.xml,我没有看到任何奇怪的东西!

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.dashboard_our"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

    <permission
        android:name="com.example.dashboard_our.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar" >

        <activity
            android:name="com.example.dashboard_our.MainActivity"
            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="com.example.dashboard_our.Hotels"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.Restaurants"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.About"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.PrayTime"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.Airports"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.Currency_convert"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.Translator"
            android:label="@string/title_activity_translate" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.WeatherActivity"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.PlaceDetailsActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name=".PlaceDetails" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>


        <activity
            android:name="com.example.dashboard_our.Todo"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.Ocr"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.example.dashboard_our.TodoDetailActivity"
            android:label="@string/app_name" >
        </activity>


        <provider
            android:name=".contentprovider.MyTodoContentProvider"
            android:authorities="de.vogella.android.todos.contentprovider" >
        </provider>

        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="API-KEY" />





    </application>

</manifest>
4

4 回答 4

0

I solved it, the problem was in my phone, I had to format my phone in order to work

于 2013-11-13T19:25:19.253 回答
0

来自 DDMS 的任何错误?您也可以尝试从项目源中查找 .apk 文件并将应用程序安装到设备中。

于 2013-11-11T23:47:26.967 回答
0

您是否在手机设置中选中“允许从非市场应用程序安装”?您是否在安装时移除了 SD 卡?

于 2013-11-11T23:53:49.397 回答
0

检查您是否在 AndroidManifest.xml 中两次声明了 Main Activity。删除一个。

另一种解决方案是,如果您尚未签署您的应用程序,则需要对其进行签名。正如文档所说,所有应用程序都必须签名。如果没有签名,系统将不会在模拟器或设备上安装应用程序。转到此处了解更多信息: Android 应用签名

于 2013-11-12T00:07:32.723 回答