bonjour

je ne comprend pas , tout fonctionnait normalement et en changeant de google play

voici mon grade

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apply plugin: 'com.android.application'
 
android {
    compileSdkVersion 'Google Inc.:Google APIs:23'
    buildToolsVersion '23.0.3'
    compileOptions.encoding = 'ISO-8859-1'
    packagingOptions {
        exclude 'META-INF/ASL2.0'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/services/org.restlet.engine.ClientHelper'
        dexOptions {
            incremental true
            javaMaxHeapSize "4g"
        }
    }
 
    defaultConfig {
        applicationId "com.dinasoft.Sedistraire"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
 
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    productFlavors {
    }
    compileOptions {
    }
}
 
 
dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile files('libs/org.restlet.ext.httpclient.jar')
    compile files('libs/org.restlet.ext.jackson.jar')
    compile files('libs/org.restlet.jar')
    compile files('libs/org.codehaus.jackson.core.jar')
    compile files('libs/org.codehaus.jackson.mapper.jar')
    compile 'com.android.support:support-v4:24.0.0'
    compile 'com.android.support:support-v13:24.0.0-beta1'
    compile 'com.google.android.gms:play-services-gcm:9.0.1'
    compile 'com.google.android.gms:play-services:9.0.1'
}
voici l'erreur que j'ai


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
E/DynamiteModule: Failed to load module descriptor class: Didn't find class "com.google.android.gms.dynamite.descriptors.com.google.android.gms.googlecertificates.ModuleDescriptor" on path: DexPathList[[zip file "/data/app/com.dinasoft.Segarer-1/base.apk"],nativeLibraryDirectories=[/data/app/com.dinasoft.Segarer-1/lib/x86, /vendor/lib, /system/lib]]
I/DynamiteModule: Considering local module com.google.android.gms.googlecertificates:0 and remote module com.google.android.gms.googlecertificates:1
I/DynamiteModule: Selected remote version of com.google.android.gms.googlecertificates, version >= 1
D/ChimeraFileApk: Primary ABI of requesting process is x86
D/ChimeraFileApk: Classloading successful. Optimized code found.
D/GoogleCertificates: com.google.android.gms.googlecertificates module is loaded
D/GoogleCertificatesImpl: Fetched 300 Google certificates
V/GoogleSignatureVerifier: com.dinasoft.Sedistraire signature not valid.  Found: 
                           MIIB3TCCAUYCAQEwDQYJKoZIhvcNAQEFBQAwNzEWMBQGA1UEAwwNQW5kcm9pZCBEZWJ1ZzEQMA4G
                           A1UECgwHQW5kcm9pZDELMAkGA1UEBhMCVVMwHhcNMTYwNjI1MDgyNzMxWhcNNDYwNjE4MDgyNzMx
                           WjA3MRYwFAYDVQQDDA1BbmRyb2lkIERlYnVnMRAwDgYDVQQKDAdBbmRyb2lkMQswCQYDVQQGEwJV
                           UzCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAlu4ejoeHldv4CUM6eshqlqbLALhhDsQ7fZ6D
                           VAYBt3SvxqlAvhkrC5gDfSp8zdSjNx3zNBHR8bqyMRSTjJ5PJsSh4/qRpOcegJMiIxwBVM58QvKl
                           Afy2aKO2EHJhz/uowNThboxSKc3h66KRsabTZLR52TloHD4LnXb1VOOcZEMCAwEAATANBgkqhkiG
                           9w0BAQUFAAOBgQB+Pwcq8ZCjPljzqGxmjxI7RkWXPdfKdvrB35OpTqRu+nLLf4F7exPfkCkJsK78
                           UfSF3c552I1Zc+26MFr3Wz7jg2Z8+vrqAY0otABieUgq9kK5IJacLjZUVJSWM3oeMXCC33inA9ih
                           3zdziar/8MvmWdCYhzKXSGCtPMXJcaGfWw==
je ne comprend pas, apparemment il y aurait un Bug Google .....

mais même en déclassant google play l'erreur ne part pas.

help me.

cdt