在android中,当多个模块组合到一个项目中时,其他活动取代了主要活动

在android中,当多个模块组合到一个项目中时,其他活动取代了主要活动,android,android-gradle-plugin,android-manifest,build.gradle,Android,Android Gradle Plugin,Android Manifest,Build.gradle,我的项目中实现了许多android模块。每个模块都添加为一个独立的Android模块,可以在手机或模拟器上启动。在完成所有模块的工作之后。最后,我想将所有这些独立的模块合并到一个项目中,并将所有模块连接起来,使所有模块作为一个应用程序工作 为此,我将apply插件:“com.android.application”替换为 apply plugin:'com.android.library'在所有模块的gradle文件中,除了app/build.gradle是应用程序中的第一个模块,它的gradl

我的项目中实现了许多android模块。每个模块都添加为一个独立的Android模块,可以在手机或模拟器上启动。在完成所有模块的工作之后。最后,我想将所有这些独立的模块合并到一个项目中,并将所有模块连接起来,使所有模块作为一个应用程序工作

为此,我将
apply插件:“com.android.application”
替换为
apply plugin:'com.android.library'
在所有模块的gradle文件中,除了
app/build.gradle
是应用程序中的第一个模块,它的gradle中有
apply plugin:'com.android.application'

另外,在
app/manifest.xml
中,我定义了以下内容:

 <activity
            android:name=".MainActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER"/>
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
下面是其活动首先显示的其他模块的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.firsttimeusermodule">

    <uses-permission android:name="android.permission.CAMERA" />
    <uses-feature android:name="android.hardware.camera" android:required="true" />

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <!--<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="25" />-->

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity android:name=".FirstTimeProfileSetup"></activity>

        <activity android:name=".ProfilePic"></activity>

        <provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="com.firsttimeusermodule"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths"></meta-data>
        </provider>


    </application>

</manifest>
下面是另一个模块的build.gradle文件:

apply plugin: 'com.android.library'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"

    defaultConfig {
//        applicationId "com.firsttimeusermodule"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:support-v4:25.3.1'
    compile 'com.google.gms:google-services:3.1.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
}
谁能帮我解决这个问题

提前谢谢


以下是合并清单的屏幕截图:

是否检查了合并的AndroidMenifest.XML?打开清单文件,单击文本旁边的选项卡,该文本显示为合并清单。@MRX感谢您的回复:)。你想让我在这里粘贴MergedManifest吗?不,只是看看最终的Menifest文件是否是你期望的!!!在开始研究解决方案之前,只需进行另一步验证。@MRX请查看上面发布的屏幕截图,即“合并清单”选项卡,并帮助我。
apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"
    defaultConfig {
        applicationId "com.example"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        externalNativeBuild {
            cmake {
                cppFlags "-frtti -fexceptions"
            }
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    externalNativeBuild {
        cmake {
            path "CMakeLists.txt"
        }
    }
    productFlavors {
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:design:25.3.1'
    compile 'com.facebook.android:facebook-android-sdk:4.22.1'
    compile 'com.google.gms:google-services:3.1.0'
    compile 'com.android.support:support-v4:25.3.1'
    testCompile 'junit:junit:4.12'
    compile 'com.google.gms:google-services:3.1.0'
    compile 'com.google.android.gms:play-services-auth:11.0.0'
    compile 'com.google.android.gms:play-services-maps:11.0.0'
    compile project(path: ':usertype')
    compile project(path: ':firsttimeusermodule')
    compile 'com.squareup.retrofit2:retrofit:2.3.0'
    compile 'com.google.code.gson:gson:2.8.1'
    compile 'com.squareup.retrofit2:converter-gson:2.3.0'
}
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.android.library'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"

    defaultConfig {
//        applicationId "com.firsttimeusermodule"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:support-v4:25.3.1'
    compile 'com.google.gms:google-services:3.1.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
}