在InstantApps类showInstallPrompt未找到

问题描述 投票:2回答:1

我有这个问题。

enter image description here

我有这些CONFIGS ..

 compileSdkVersion 26
    buildToolsVersion '28.0.3'
    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 26

    implementation 'com.android.support:cardview-v7:26.1.0'
    implementation 'com.android.support:recyclerview-v7:26.1.0'
    implementation 'com.google.code.gson:gson:2.4'
    implementation 'com.squareup.picasso:picasso:2.4.0'
    implementation 'com.android.volley:volley:1.1.0'
    implementation 'com.makeramen:roundedimageview:2.1.1'
    implementation project(':expandablelayout')
    implementation 'com.daimajia.swipelayout:library:1.2.0@aar'
    implementation 'com.timehop.stickyheadersrecyclerview:library:0.4.1@aar'
    implementation 'com.google.android.gms:play-services-gcm:15.0.1'
    implementation 'com.google.android.gms:play-services-analytics:16.0.0'
    implementation 'com.google.android.gms:play-services-location:15.0.1'
    implementation 'com.google.android.gms:play-services-ads:15.0.1'
    implementation 'com.google.android.gms:play-services-auth:15.0.1'
    implementation 'com.google.firebase:firebase-core:16.0.0'
    implementation 'com.facebook.android:facebook-android-sdk:4.26.0'
    implementation('com.crashlytics.sdk.android:crashlytics:2.5.0@aar') {
        transitive = true;
    }
    implementation project(':stripe')
    //implementation files('libs/PayPalAndroidSDK-2.10.1.jar')
    implementation('com.paypal.sdk:paypal-android-sdk:2.16.0') {
        exclude group: 'io.card'
    }
    implementation 'com.facebook.android:account-kit-sdk:4.18.0'
    implementation files('libs/GoogleConversionTrackingSdk-2.2.4.jar')
    implementation 'me.grantland:autofittextview:0.2.1'
    implementation 'com.appsflyer:af-android-sdk:4.8.11@aar'
    implementation 'com.android.support:multidex:1.0.1'
    implementation 'com.onesignal:OneSignal:3.6.3@aar'

想法?

android android-instant-apps
1个回答
2
投票

为什么你的依赖丢失:

com.google.android.gms:play-services-instantapps

请仔细检查您gradle这个依赖其他地方,并确保它被更新。 16.0.1对我的作品。

/com/google/android/gms/instantapps/InstantApps

© www.soinside.com 2019 - 2024. All rights reserved.