构建Android Instant App时未安装应用程序模块

时间:2018-12-24 16:23:00

标签: android android-instant-apps

我创建了一个android Instant App,它能够在设备上成功运行,功能模块中生成了src文件夹,当我尝试构建和安装应用程序模块时,它显示未找到mainactivity,如src文件在功能模块中。有什么建议吗?

app / AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.lifeclock.nishanths.lifeclock.app" />

base / AndroidManifest.xml

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

    <uses-feature android:name="android.hardware.location.network"/>
    <uses-feature android:name="android.hardware.location.gps"/>


    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

    <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">
        <meta-data
            android:name="aia-compat-api-min-version"
            android:value="1" />
    </application>
</manifest>

feature / AndroidManifest.xml列出了所有活动。

0 个答案:

没有答案