建立一个签署这些问题的APK

时间:2018-05-05 20:15:39

标签: android android-studio gradle

我无法使用签名构建APK,但可以运行应用程序并构建APK版本

所有办事处都已进行 我搜索了一个解决方案,以至于找不到结果 请帮帮你们 如果你想要我会发送更多细节

Warning:okhttp3.internal.platform.ConscryptPlatform: can't find referenced class org.conscrypt.OpenSSLProvider
Warning:okhttp3.internal.platform.ConscryptPlatform: can't find referenced class org.conscrypt.Conscrypt
Warning:there were 11 unresolved references to classes or interfaces.
Warning:Exception while processing task java.io.IOException: Please correct the above warnings first.
Error:java.lang.RuntimeException: Job failed, see logs for details
Error:java.io.IOException: Please correct the above warnings first.

的build.gradle

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
ext {
    supportLibVersion = '27.1.1'
    firebaseLipVersion = '15.0.0'
    playServiceVersion = '15.0.0'
}

android {
    signingConfigs {
        config {

        }
    }


    compileSdkVersion 27
    defaultConfig {
        applicationId "com.myappk.english"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 4
        versionName "Version 4"
    }

    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {



    implementation fileTree(include: ['*.jar'], dir: 'libs')
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

    implementation('com.crashlytics.sdk.android:crashlytics:2.9.2@aar') {
        transitive = true
    }
    implementation files('libs/YouTubeAndroidPlayerApi.jar')

    //noinspection GradleCompatible
    implementation "com.android.support:appcompat-v7:$supportLibVersion"
    implementation "com.android.support:design:$supportLibVersion"
    implementation "com.android.support:support-v4:$supportLibVersion"
    implementation "com.android.support:recyclerview-v7:$supportLibVersion"
    implementation "com.android.support:support-emoji:$supportLibVersion"
    implementation "com.android.support:support-emoji-appcompat:$supportLibVersion"
    implementation "com.android.support:support-emoji-bundled:$supportLibVersion"
    implementation "com.android.support:support-annotations:$supportLibVersion"

    //noinspection GradleCompatible
    implementation "com.google.firebase:firebase-messaging:15.0.2"
    implementation "com.google.firebase:firebase-core:15.0.2"
    implementation "com.google.firebase:firebase-crash:15.0.2"
    implementation "com.google.firebase:firebase-ads:15.0.1"
    implementation "com.google.firebase:firebase-invites:15.0.1"
    implementation "com.google.firebase:firebase-auth:15.1.0"
    implementation "com.google.firebase:firebase-appindexing:15.0.1"

    implementation "com.google.android.gms:play-services-ads:15.0.1"
    implementation "com.google.android.gms:play-services-analytics:15.0.2"
    implementation "com.google.android.gms:play-services-auth:15.0.1"
    implementation "com.google.android.gms:play-services-drive:15.0.1"

    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    implementation 'com.android.volley:volley:1.0.0'
    implementation 'com.android.billingclient:billing:1.0'

    implementation 'com.intuit.sdp:sdp-android:1.0.3'

    implementation 'org.jetbrains:annotations-java5:15.0'

    implementation 'com.github.medyo:android-about-page:1.2.4'

    implementation 'com.squareup.picasso:picasso:2.71828'
    testImplementation 'com.squareup.okhttp3:mockwebserver:3.10.0'
    testImplementation 'junit:junit:4.12'
}

apply plugin: 'com.google.gms.google-services'

谁有解决此问题的方法 所有这些令人筋疲力尽的工作后,我感到沮丧

4 个答案:

答案 0 :(得分:16)

这是Android Studio版本 3.1.0 和Gradle版本 4.4 的问题。

在您的proguard-rules.pro文件中添加以下行以解决此问题。

-dontwarn okhttp3.internal.platform.*

答案 1 :(得分:0)

使用这个。 REF:https://github.com/square/okhttp/commit/a16ec15ee08424058b26c6bd62afc98b32df98bc

# JSR 305 annotations are for embedding nullability information.
-dontwarn javax.annotation.**
# A resource is loaded with a relative path so the package of this class must be preserved.
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
# Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
-dontwarn org.codehaus.mojo.animal_sniffer.*
# OkHttp platform used only on JVM and when Conscrypt dependency is available.
-dontwarn okhttp3.internal.platform.ConscryptPlatform

答案 2 :(得分:-1)

使用此代码 -dontwarn okhttp3.internal.platform。*

已签名的apk构建,但不幸的是,在移动设备上出现了弯曲的消息,并且应用已关闭,尚未针对此错误获得解决方案。

取消签名应用程序正常工作项目成功运行,但签名的apk出现问题。

答案 3 :(得分:-6)

通过更改

解决了问题

 minifyEnabled true

minifyEnabled false

感谢您使用David Medenjak建议,并展示了一些需要翻译或添加的字符串货币(ranslatable =“false”)。感谢听到

,确实做了像魔术一样的工作