簡體   English   中英

多功能即時應用崩潰問題

[英]Multi-feature Instant App crash issue

我是android中的Instant app的新手,請點擊以下鏈接以供參考: https : //codelabs.developers.google.com/codelabs/android-instant-apps/#6

具有單個功能的可安裝APK和Instant App運行正常。

但是,當我嘗試運行多功能即時應用程序時,它會崩潰(遵循上述鏈接中的步驟7)。

崩潰報告:

 E: FATAL EXCEPTION: main
    Process: com.bhaveshdesai.topekaapk, PID: 17609
    java.lang.IncompatibleClassChangeError: Structural change of android.support.v4.app.Fragment is hazardous (/data/app/com.bhaveshdesai.topekaapk-PhiyPZ303gxpikP7GugKyA==/oat/x86/split_topekaui.odex at compile time, /data/app/com.bhaveshdesai.topekaapk-PhiyPZ303gxpikP7GugKyA==/oat/x86/base.odex at runtime): Virtual method count off: 111 vs 150
    Landroid/support/v4/app/Fragment; (Compile time):
    Static fields:
     I ACTIVITY_CREATED
     I CREATED
     I INITIALIZING
     I RESUMED
     I STARTED
     I STOPPED
     .....

Feature Gradle文件:

apply plugin: 'com.android.feature'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"
    dataBinding {
        enabled true
    }

    defaultConfig {
        minSdkVersion 19
        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 project(':topeka-base')
}

應用程式Gradle檔案:

/*
 * Copyright 2015 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//apply plugin: 'com.android.application'
apply plugin: 'com.android.feature'
android {
    baseFeature = true

    compileSdkVersion 26
    buildToolsVersion "26.0.0"

    dataBinding {
        enabled = true
    }

    defaultConfig {
        minSdkVersion 19
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
    }

    buildTypes {
        release {
            minifyEnabled false
        }
    }

    packagingOptions {
        exclude 'LICENSE.txt'
    }
}

ext {
    supportLibVersion = "25.4.0"
    espressoVersion = "2.2.2"
    androidTestVersion = "0.5"
    hamcrestVersion = "1.3"
    junitVersion = "4.12"
}

dependencies {
    api "com.android.support:appcompat-v7:${supportLibVersion}"
    api "com.android.support:cardview-v7:${supportLibVersion}"
    api "com.android.support:design:${supportLibVersion}"
    api "com.android.support:recyclerview-v7:${supportLibVersion}"
    api "com.android.support.test.espresso:espresso-idling-resource:${espressoVersion}"
    testApi "junit:junit:${junitVersion}"

    androidTestApi("com.android.support.test.espresso:espresso-core:${espressoVersion}") {
        exclude module: "espresso-idling-resource"
        exclude group: "com.android.support"
    }
    androidTestApi("com.android.support.test.espresso:espresso-contrib:${espressoVersion}") {
        exclude module: "espresso-core"
        exclude module: "recyclerview-v7"
        exclude group: "com.android.support"
    }
    androidTestApi("com.android.support.test:rules:${androidTestVersion}") {
        exclude group: "com.android.support"
    }

    androidTestApi("com.android.support.test:runner:${androidTestVersion}") {
        exclude group: "com.android.support"
    }

    androidTestApi "org.hamcrest:hamcrest-core:${hamcrestVersion}"

    feature project(":topekaui")
    application project(":topekaapk")
}

請幫助我解決此崩潰。

經過這么多嘗試,我發現了問題。

問題是由於使用android.support.v4.app.Fragment

android.support.v4.app.Fragment更改為android.app.Fragment其工作即可。

當您對庫進行不兼容的二進制更改並且不重新編譯客戶端代碼時,通常會發生IncompatibleClassChangeError 請參閱什么原因導致java.lang.IncompatibleClassChangeError? (但這可能不是造成您問題的真正原因)

在哪一步之后您會崩潰?

但是,我現在看到的是您的Feature gradle文件具有以下依賴項implementation project(':topeka-base') ,而該文件應包含api project(':topeka-base') (假設您的Feature gradle = topeka-ui gradle)

topeka-ui / build.gradle

將所有預先生成的依賴項替換為以下依賴項:

 dependencies { api project(':topeka-base') } 

請仔細檢查代碼實驗室說明,以確保您沒有錯過任何步驟。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM