问题描述
我最近为客户开发了一个应用程序,现在必须在Crashlytics上共享该应用程序的Beta版.我过去做过很多次,但是有了这个应用程序,就出现了问题.
I recently developed an app for a client and now have to share it on Crashlytics for a Beta.I did this many times in the past but with this app, there's a problem.
当我在Crashlytics Studio的插件上上传我的应用程序时,没有错误.该电子邮件已正确发送给测试人员.
When I upload my app on Crashlytics Studio's plugin, there's no error. The email is correctly delivered to testers.
但是在安装结束时,它会显示该软件包似乎已损坏" .
But at the end of the installation, it says "The package appears to be corrupted".
这是我第一次看到这个,我不知道该怎么办.
This is the first time I see this and I don't know what to do.
我尝试使用所有此类APK:-调试(无符号)-发布(未签名)-释放(签名)
I try with all this type of APK:- debug (unsigned)- release (unsigned)- release (signed)
没有一个起作用.
这是我的build.gradle:
Here's my build.gradle :
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
// These docs use an open ended version so that our plugin
// can be updated quickly in response to Android tooling updates
// We recommend changing it to the latest version from our changelog:
// https://docs.fabric.io/android/changelog.html#fabric-gradle-plugin
classpath 'io.fabric.tools:gradle:1.24.1'
}
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
maven { url "https://jitpack.io" }
}
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.xxxxxxx"
minSdkVersion 15
targetSdkVersion 26
versionCode 3
versionName "0.1.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
renderscriptSupportModeEnabled = true
}
buildTypes {
release {
minifyEnabled = true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
/**
* SUPPORT LIBS
*/
implementation 'com.android.support:appcompat-v7:26.0.2'
implementation 'com.android.support:recyclerview-v7:26.0.2'
implementation 'com.android.support:design:26.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:support-vector-drawable:26.0.2'
/**
* KOTLIN
*/
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
/**
* UNIT TESTS
*/
testImplementation 'junit:junit:4.12'
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
exclude group: 'com.android.support', module: 'support-annotations'
})
/**
* HTTP
*/
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation "com.squareup.retrofit2:converter-gson:2.3.0"
implementation "com.squareup.retrofit2:adapter-rxjava:2.3.0"
implementation 'com.squareup.okhttp3:logging-interceptor:3.8.0'
/**
* INJECTION LIB
*/
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
/**
* COMPONENT LIBS
*/
implementation('com.mikepenz:fastadapter:2.6.3@aar') {
transitive = true
}
implementation 'com.mikepenz:fastadapter-commons:2.6.3@aar'
implementation 'com.mikepenz:fastadapter-extensions:2.6.3@aar'
/**
* IMAGE LOADING/CACHING/EDITING LIBS
*/
implementation 'com.github.bumptech.glide:glide:4.1.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.1.1'
implementation 'com.makeramen:roundedimageview:2.3.0'
/**
* PLAYERS VIDEO/MUSIC
*/
implementation 'com.google.android.exoplayer:exoplayer:r2.0.0'
implementation 'com.dailymotion.dailymotion-sdk-android:sdk:0.1.12'
/**
* EVENTBUS
*/
implementation 'org.greenrobot:eventbus:3.0.0'
/**
* Overscroll
*/
implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.0.3'
implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.0.3'
/**
* FABRIC/CRASHLYTICS
*/
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true
}
}
我该如何解决?
推荐答案
自Android Studio 3.0以来,如果我尝试通过用户界面上传apk,就会遇到完全相同的问题.
Since Android Studio 3.0, I have the exact same problem if I try to upload an apk via the user interface.
目前,您必须使用命令行来上传apk,如文档说.
For now, you will have to use the command line in order to upload an apk, as the documentation says.
./gradlew assembleDebug crashlyticsUploadDistributionDebug
我希望这会有所帮助!
这篇关于Beta by Crashlytics-软件包似乎已损坏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!