【发布时间】:2014-12-30 13:32:38
【问题描述】:
我尝试了一切,重命名包,更改权限等,但我仍然在控制台上看到错误 INSTALL_PARSE_FAILED_MANIFEST_MALFORMED。
我尝试从 logcat 记录,这就是它所说的“在 installPackageLI 期间解析失败”和“android.content.pm.PackageParser$PackageParserException:/data/app/vmdl170122893.tmp/base.apk(在二进制 XML 文件中)第 33 行):没有有效的 android:name”并且 atlast 说“调试器不再处于活动状态”
我正在尝试在 em21 即 Lollipop SDK 上运行它。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="Ca.Rushabh.Mobileproject"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<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" />
<permission
android:name="com.example.mymapsv2.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.mymapsv2.permission.MAPS_RECEIVE" />
<application
android:allowBackup="true"
android:icon="@drawable/blue_droid"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="Ca.Rushabh.Mobileproject.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="Ca.Rushabh.Mobileproject.About"
android:label="@string/title_activity_about"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="Ca.Rushabh.Mobileproject.ToDoList"
android:label="abcd" />
<activity
android:name="Ca.Rushabh.Mobileproject.ToDoDetailActivity"
android:windowSoftInputMode="stateVisible|adjustResize" />
<provider
android:name="Ca.Rushabh.Mobileproject.MyToDoContentProvider"
android:exported="false"
android:authorities="com.example.mobileproject.todos.contentprovider" />
<activity
android:name="Ca.Rushabh.Mobileproject.ViewAnimationActivity"
android:label="@string/title_animation" >
</activity>
<activity
android:name="Ca.Rushabh.Mobileproject.ViewAnimation2"
android:label="@string/title_animation" >
</activity>
<activity
android:name="Ca.Rushabh.Mobileproject.ContactUs"
android:label="@string/title_activity_contact_us"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="Ca.Rushabh.Mobileproject.GoogleMapV2"
android:label="@string/title_activity_google_map_v2" >
</activity>
<meta-data
android:name="com.google.android.gms.version" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" />
</application>
</manifest>
【问题讨论】:
-
您可能希望使用正确的大小写(即小写)作为包名
-
包名应始终为小写,请参阅:stackoverflow.com/questions/12534302/…
-
我编辑删除了你的谷歌地图 api 密钥,在发布此类数据之前要小心
-
我已经有了小写字母,我看到很多讨论都将相同的东西重命名为大写字母 (stackoverflow.com/questions/16015033/…),但仍然不起作用
-
@RolfSmit 去吧,你确实搜索了参考
标签: android