我是程序员新手。我想建立自己的应用程序。我已经建立了APK来测试我的LG G6。但是有一条错误信息"解析包时出现问题"安装时我读到这可能是由一个损坏的清单造成的。我还没有在那里发现问题。但我只是一个初学者,所以如果你能把它看出去就好了,也许你可以告诉我这个问题。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="e.jonathan.kirchenappalpha">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="Kirchgemeinde Königshain BETA"
android:roundIcon="@drawable/logo"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".Menu"
android:configChanges="orientation"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
<activity
android:name=".Info"
android:configChanges="orientation"
android:screenOrientation="portrait" />
<activity
android:name=".veranstaltungen"
android:configChanges="orientation"
android:screenOrientation="portrait" />
<activity
android:name=".monat_1"
android:configChanges="orientation"
android:screenOrientation="portrait" />
<activity
android:name=".monat_2"
android:configChanges="orientation"
android:screenOrientation="portrait" />
<activity
android:name=".monat_3"
android:configChanges="orientation"
android:screenOrientation="portrait" />
<activity android:name=".feedback" />
<activity android:name=".Gemeindekreise"></activity>
</application>
</manifest>
Granle
申请插件:&#39; com.android.application&#39;
android {
compileSdkVersion 26
defaultConfig {
applicationId "e.jonathan.kirchenappalpha"
minSdkVersion 16
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.android.support:design:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.google.android.gms:play-services-ads:12.0.1'
}