我已在不同计算机上多次干净安装AS v3.3.2,并创建了“ hello world”,然后构建并创建了APK!当我分析APK(调试和发布)时,它会在manifest.xml中突出显示一个错误。
我已经搜索并尝试了许多可能的解决方案(包括该论坛上的解决方案),但没有任何变化, 我一直无法解决该错误。这发生在具有各种复杂性的几个项目中。 Developer.Android网站上有一个图片,但没有解决方案! 链接:https://developer.android.com/studio/build/apk-analyzer 我是否缺少明显的东西?一位同事建议编码有误。
<?xml version="1.0" encoding="UTF-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
platformBuildVersionName="9"
platformBuildVersionCode="28"
package="com.example.myapp"
android:compileSdkVersionCodename="9"
android:compileSdkVersion="28"
android:versionName="1.0"
android:versionCode="1" >
<uses-sdk
android:targetSdkVersion="28"
android:minSdkVersion="24"/>
<application
android:appComponentFactory="
android.support.v4.app.CoreComponentFactory"
android:roundIcon="@ref/0x7f0a0001"
android:supportsRtl="true"
android:allowBackup="true"
android:debuggable="true"
android:icon="@ref/0x7f0a0000"
android:label="@ref/0x7f0b0027"
android:theme="@ref/0x7f0c0005">
<activity
android:name="com.example.myapp.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category
android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
我可以在虚拟设备上运行项目,但不能将apk上传并安装到手机v7.0,api-24。