任何人都可以检查我的manifest.xml吗?

时间:2018-06-13 15:38:34

标签: android android-studio android-manifest

我是程序员新手。我想建立自己的应用程序。我已经建立了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'
}

1 个答案:

答案 0 :(得分:0)

如果您想在物理设备上测试应用,请连接手机和手机。打开手机上的开发者选项(在内置号码上点击7次),setup ADBRun > Run App(Shift + F10)

虽然,为了生成APK,请转到Build > Generate Signed APK。您可以找到一些帮助here

相关问题