上传失败:您的即时应用APK应包含至少一个基本APK

时间:2017-06-07 14:42:54

标签: android android-studio android-gradle build.gradle android-instant-apps

我需要准备一个针对即时应用程序的Alpha测试,它在Android Studio上像魅力一样运行但是当我尝试将其上传到PlayStore时失败了,说:

上传失败

您的即时应用APK应包含至少一个基本APK。

应用程序结构使用三个模块完成:

- base :它包含所有代码

- apk :Wrapper获取可安装的apk

- instantApp :Wrapper获取instantApp apk

这是build.gradles:

碱/的build.gradle

buildscript {
    repositories {
        jcenter()
    }
}
apply plugin: 'com.android.feature'

repositories {
    jcenter()
    mavenCentral()
    flatDir {
        dirs 'libs'
    }
    maven { url 'https://maven.fabric.io/public' }
}

android {
    compileSdkVersion 25
    buildToolsVersion "26.0.0-rc2"

    baseFeature = true
    dataBinding {
        enabled = true
    }

    defaultConfig {

        minSdkVersion 18
        targetSdkVersion 25
        versionCode 7
        versionName "1.1"
    }

    signingConfigs {
        release {
            [...]
        }
    }

    buildTypes {
        debug {
            [...]
        }
        release {
            minifyEnabled false
            signingConfig signingConfigs.release
            [...]
        }
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    lintOptions {
        abortOnError false
    }

    dexOptions {
        javaMaxHeapSize "4g"
    }
}

dependencies {

    application project(":apk")
    [...]
}
apply plugin: 'com.google.gms.google-services'

APK /的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "26.0.0-rc2"

    dataBinding {
        enabled true
    }

    defaultConfig {
        applicationId “…”
        minSdkVersion 18
        targetSdkVersion 25
        versionCode 7
       versionName "1.1"
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    signingConfigs {
        release {
            [...]
        }
    }

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

            signingConfig signingConfigs.release
            […]
        }
    }
}

dependencies {
    implementation project(':base')
}

instantApp /的build.gradle

apply plugin: 'com.android.instantapp'

dependencies {
    implementation project(':base')
}

这是清单文件

碱/的Manifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package=“…”>

<uses-permission android:name="android.permission.INTERNET" />
[…]

<application
    android:name=“[…].TrgApplication"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppBaseTheme">

    <activity
        android:name=“[…].LauncherActivity"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />

            <data
                android:scheme="https"
                android:host=“[domain]” />
        </intent-filter>
    </activity>
    <activity
        android:name="[…].RootActivity"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustPan" />

    <activity
        android:name="[…].OnBoardingActivity"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustResize" />

    <activity
        android:name="[…].LocationPickerActivity"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustPan" />

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <service android:name="com.parse.PushService" />
    <receiver
        android:name="com.parse.GcmBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND">
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

            <!--
              IMPORTANT: Change "com.parse.starter" to match your app's package name.
            -->
            <category android:name="[…]" />
        </intent-filter>
    </receiver>

    <meta-data
        android:name="com.parse.push.gcm_sender_id"
        android:value="id:[…]" />

</application>
</manifest>

APK /的Manifest.xml

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

此软件包与应用程序的不同

我已经尝试过这个解决方案:( Android Instant-release build not includes base APK)但它没有用。

自上周五以来我一直陷入困境,所以任何想法都可能很棒

提前致谢

P.D:这是我的第一个问题,所以如果我没有做到这一点,我很抱歉;)

2 个答案:

答案 0 :(得分:2)

呀!我发现问题!!!!(并且它不在任何谷歌帮助文档中)

问题在于我正在立即删除instantApp apk文件。解决方案是使用instantApp apk和基本apk创建一个zip文件并删除该zip文件!!!

感谢您的帮助!最后问题不是gradle或代码..这是PlayStore:)

我希望如果有人遇到同样的问题,这个问题可以帮助他们!!!

答案 1 :(得分:1)

This sample project似乎非常接近你想要实现的目标。也许您不需要application project(":apk")中的base/build.gradle,因为您只有一个功能(这是基本分割)。您也可以尝试删除base = true

This section of the docs涵盖了您的使用案例 - 但听起来所有内容都已正确设置。

您是否还可以将AndroidManifests添加到原始帖子中?