首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >应用程序包安装程序已停止

应用程序包安装程序已停止
EN

Stack Overflow用户
提问于 2014-12-30 02:54:03
回答 2查看 296关注 0票数 0

我已经复制了Manifest XML文件。我只是不能弄清楚这个错误。这个应用程序在我的Redmi 1S上运行,但它没有在我的Micromax Canvas A110上运行,我已经尝试了所有已经在Stackoverflow上与此相关的解决方案。

代码语言:javascript
复制
 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.gilpix.am"
    android:versionCode="1"
    android:versionName="1.0" android:installLocation="auto">

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="19" />

     <uses-configuration 
        android:reqTouchScreen="finger" android:reqKeyboardType="undefined"/>

     <uses-feature  
         android:name="android.hardware.touchscreen" />

     <uses-permission 
         android:name="android.permission.INTERNET" />


     <supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true" android:xlargeScreens="true" android:resizeable="true"/>




    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" android:uiOptions="splitActionBarWhenNarrow">
        <!-- Splash screen -->
        <activity android:name="com.gilpix.am.Splash" 
            android:label="@string/app_name" 
            android:screenOrientation="portrait" 
            android:theme="@android:style/Theme.Black.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="com.gilpix.am.Login" 
            android:label="@string/app_name" 

            >
        </activity>

        <activity android:name="com.gilpix.am.Logind"
             android:label="@string/logind_name" 
             android:uiOptions="splitActionBarWhenNarrow"
             > 

        </activity>
          <activity android:name="com.gilpix.am.U_home"
              android:label="@string/app_name"
              android:uiOptions="splitActionBarWhenNarrow" > 

        </activity>




           </application>

</manifest>
EN

回答 2

Stack Overflow用户

发布于 2014-12-30 02:58:02

清理您的项目,如果不起作用,关闭项目并重新启动,创建新的apk并安装

票数 1
EN

Stack Overflow用户

发布于 2014-12-30 02:59:30

此错误是由于您的两个android手机的android版本不同造成的。

请检查两部手机的配置并根据manifest.xml文件中的配置进行更改

android:minSdkVersion="11“android:targetSdkVersion="19”

谢谢

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/27694364

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档