Android,有没有办法在应用程序内更新 Fabric Beta 分布式应用程序?

Android, is there a way to update a Fabric Beta distributed app within the app?

我已经通过 fabric beta 成功分发了应用程序,但是在分发新版本的应用程序后,旧应用程序中没有window更新。

有没有办法在应用程序中更新 Fabric Beta 分布式应用程序?

我在网上找了很久。但是没有用。请帮助或尝试提供一些想法如何实现这一目标。

在项目中,我集成了fabric,像这样:

构建: 1:

apply plugin: 'io.fabric'

2:

buildscript {
repositories {
    google()
    maven { url 'https://maven.fabric.io/public' }
}

dependencies {
    classpath 'io.fabric.tools:gradle:1.25.4'
}
}

3:

dependencies {
implementation('com.crashlytics.sdk.android:crashlytics:2.9.5@aar') {
    transitive = true
}

快速文件:

fastlane_version "2.68.0"

generated_fastfile_id "1111"

default_platform :android

lane :beta do
   build_android_app(task: "assembleRelease")
   emails = ["xxxxx"]

   sh("touch changelog.txt")
   File.write("./changelog.txt","Distributed with fastlane")

   # upload to Beta by Crashlytics
   crashlytics(
       notes_path:"fastlane/changelog.txt",
       api_token: "xxxx",
       build_secret:"xxxx",
       emails: emails,
       groups:[], 
       notifications: true
  )end

Fabric.properties

apiSecret=xxxx
apiKey=xxxx

来自 Fabric 和 Firebase 的 Mike。在 Android,Fabric 每两小时检查一次您的应用程序是否有新版本可用。如果是这样,它将在系统通知中心显示通知。 Android.

上没有应用内更新提示