React NativeのAndroid App Bundle:APKまたはAndroid App Bundleをアップロードしましたが、一部のファイルの署名情報が無効または欠落しています


10

アプリを初めてGoogle Playストアに公開しようとしています。Google Play Signingにオプトインしました。別のキーを使用してアップロードする場合、コンソールは特定のSHA1識別子を持つ他のキーを使用してアップロードするよう指示するので、私は正しいキーでAndroid App Bundleに署名しているという事実を知っています。しかし、正しいキーでアップロードすると、次のエラーが発生します。

一部のファイルの署名情報が無効または欠落しているAPKまたはAndroid App Bundleをアップロードしました。

私は次のようにAndroid Studioを使用してアプリをビルドしています:ビルド>署名付きバンドル/ APKの生成> Android App Bundle>キーストアの選択とパスワードの入力>リリース>完了

アプリは、分離されたExpo / ExpoKitで構築されたReact Nativeアプリです。Apple App Storeへのアップロードは問題なく動作します。Playストアに問題があるだけです。何が欠けていますか?

アップデート1:Google Playからアプリを完全に削除して、新しいアプリを作成しました。なかったではない今回の署名Google Playのために選ぶと署名APKをアップロードしました。まだ同じエラー。

Update 2:完全に新しいキーストアとキーを試してみました。まだ同じ。

これがどういうわけか重要になる場合のプロジェクト設定の概要は次のとおりです。 プロジェクトの概要

そしてここにありますandroid/app/build.gradle

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

  dependencies {
    classpath 'io.fabric.tools:gradle:1.26.1'
  }
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'devicefarm'

repositories {
  maven { url 'https://maven.fabric.io/public' }
}

def safeExtGet(prop, fallback) {
  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
}

android {
  compileSdkVersion safeExtGet("compileSdkVersion", 28)

  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }

  defaultConfig {
    applicationId 'de.***.android'
    minSdkVersion safeExtGet("minSdkVersion", 21)
    targetSdkVersion safeExtGet("targetSdkVersion", 28)
    versionCode 1
    versionName '1.0.2'
    ndk {
      abiFilters 'armeabi-v7a', 'x86'
    }
    multiDexEnabled true
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    // Deprecated. Used by net.openid:appauth
    manifestPlaceholders = [
        'appAuthRedirectScheme': 'host.exp.exponent'
    ]
  }
  dexOptions {
    javaMaxHeapSize System.getenv("DISABLE_DEX_MAX_HEAP") ? null : "8g"
  }

  signingConfigs {
    debug {
      storeFile file('../debug.keystore')
    }
    release {
      storeFile file(System.getenv("ANDROID_KEYSTORE_PATH") ?: "release-key.jks")
      storePassword System.getenv("ANDROID_KEYSTORE_PASSWORD")
      keyAlias System.getenv("ANDROID_KEY_ALIAS")
      keyPassword System.getenv("ANDROID_KEY_PASSWORD")
    }
  }
  buildTypes {
    debug {
      debuggable true
      ext.enableCrashlytics = false
    }
    release {
      minifyEnabled true
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
      signingConfig signingConfigs.release
    }
  }
  lintOptions {
    abortOnError false
  }
  packagingOptions {
    pickFirst "**"
  }
}

devicefarm {
  projectName System.getenv("DEVICEFARM_PROJECT_NAME")
  devicePool System.getenv("DEVICEFARM_DEVICE_POOL")
  executionTimeoutMinutes 40
  authentication {

    accessKey System.getenv("AWS_ACCESS_KEY_ID")
    secretKey System.getenv("AWS_SECRET_ACCESS_KEY")
  }
}

configurations.all {
  resolutionStrategy {
    force 'org.webkit:android-jsc:r245459'
  }
}

// WHEN_PREPARING_SHELL_REMOVE_FROM_HERE

apply from: 'expo.gradle'

// WHEN_PREPARING_SHELL_REMOVE_TO_HERE

apply from: "../../node_modules/react-native-unimodules/gradle.groovy"

dependencies {
    implementation project(':react-native-torch')
    implementation project(':react-native-twilio-video-webrtc')
    implementation project(':react-native-exit-app')
    implementation project(':react-native-fs')
    implementation project(':react-native-document-picker')
    implementation project(':rn-fetch-blob')
    implementation project(':react-native-onesignal')
    implementation project(':react-native-vector-icons')
    implementation project(':react-native-randombytes')
  implementation fileTree(dir: 'libs', include: ['*.jar'])

  compile project(':tipsi-stripe')

  implementation 'com.android.support:multidex:1.0.1'

  // Our dependencies
  implementation "com.android.support:appcompat-v7:$supportLibVersion"

  // Our dependencies from ExpoView
  // DON'T ADD ANYTHING HERE THAT ISN'T IN EXPOVIEW. ONLY COPY THINGS FROM EXPOVIEW TO HERE.
  implementation "com.android.support:appcompat-v7:$supportLibVersion"
  implementation 'com.facebook.android:facebook-android-sdk:5.0.1'
  implementation('com.facebook.android:audience-network-sdk:5.1.1') {
    exclude module: 'play-services-ads'
  }
  compileOnly 'org.glassfish:javax.annotation:3.1.1'
  implementation 'com.jakewharton:butterknife:9.0.0'
  implementation 'de.greenrobot:eventbus:2.4.0'

  implementation 'com.squareup.picasso:picasso:2.5.2'
  implementation 'com.google.android.gms:play-services-gcm:15.0.1'
  implementation 'com.google.android.gms:play-services-analytics:16.0.1'
  implementation 'com.google.android.gms:play-services-maps:15.0.1'
  implementation 'com.google.android.gms:play-services-auth:15.0.1'
  implementation 'com.google.android.gms:play-services-location:15.0.1'
  implementation 'com.google.android.gms:play-services-ads:15.0.1'
  //annotationProcessor 'com.raizlabs.android:DBFlow-Compiler:2.2.1'
  //implementation "com.raizlabs.android:DBFlow-Core:2.2.1"
  //implementation "com.raizlabs.android:DBFlow:2.2.1"
  implementation "com.madgag.spongycastle:core:1.53.0.0"
  implementation "com.madgag.spongycastle:prov:1.53.0.0"
  debugImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
  // debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.4-beta1'
  releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
  implementation 'com.facebook.device.yearclass:yearclass:2.1.0'
  implementation 'commons-io:commons-io:1.4'
  implementation 'me.leolin:ShortcutBadger:1.1.4@aar'
  implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
  implementation 'commons-codec:commons-codec:1.10'
  implementation 'com.segment.analytics.android:analytics:4.3.0'
  implementation 'com.google.zxing:core:3.3.3'
  implementation 'net.openid:appauth:0.4.1'
  implementation 'com.airbnb.android:lottie:2.5.6'
  implementation('io.nlopez.smartlocation:library:3.2.11') {
    transitive = false
  }
  implementation "com.android.support:exifinterface:${safeExtGet("supportLibVersion", "28.0.0")}"
  implementation 'com.squareup.okio:okio:1.9.0'
  implementation 'com.facebook.soloader:soloader:0.6.0'

  // expo-file-system
  implementation 'com.squareup.okhttp3:okhttp:3.10.0'
  implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.10.0'

  // Testing
  androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  // We use a modified build of com.android.support.test:runner:1.0.1. Explanation in maven-test/README
  androidTestImplementation 'com.android.support.test:runner:1.0.1'
  androidTestImplementation "com.android.support:support-annotations:${safeExtGet("supportLibVersion", "28.0.0")}"
  androidTestImplementation 'com.google.code.findbugs:jsr305:3.0.0'
  androidTestImplementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
  androidTestImplementation 'com.azimolabs.conditionwatcher:conditionwatcher:0.2'

  testImplementation 'junit:junit:4.12'
  testImplementation 'org.mockito:mockito-core:1.10.19'
  testImplementation 'org.robolectric:robolectric:3.8'
  testImplementation 'com.android.support.test:runner:1.0.2-alpha1'
  testImplementation 'com.android.support.test:rules:1.0.2-alpha1'


  implementation('host.exp.exponent:expoview:35.0.0@aar') {
    transitive = true
    exclude group: 'com.squareup.okhttp3', module: 'okhttp'
    exclude group: 'com.squareup.okhttp3', module: 'okhttp-urlconnection'
  }




  api 'org.webkit:android-jsc:r245459' // needs to be before react-native
  api 'com.facebook.react:react-native:35.0.0'




  addUnimodulesDependencies([
      modulesPaths : [
        '../../node_modules'
      ],
      configuration: 'api',
      target       : 'react-native',
      exclude      : [
        // You can exclude unneeded modules here.
        // By default we exclude FaceDetector
        // and Stripe payments APIs.
        'unimodules-face-detector-interface',
        'expo-face-detector',
        'expo-payments-stripe'

        // Adding a name here will also remove the package
        // from auto-generated BasePackageList.java
      ]
  ])

}

// This has to be down here for some reason
apply plugin: 'com.google.gms.google-services'
googleServices {
  disableVersionCheck = true
}

更新3:署名済みAPKを作成し、jarsignerを使用して署名を検証しようとしました:

jarsigner -verify -verbose -certs /***/app-release.apk

このコマンドは、次のエラーを生成します。

jarsigner: java.lang.SecurityException: Invalid signature file digest for Manifest main attributes

私にとって、これはパズルにとって重要なピースのように思えます。ただし、これまでのところ、このエラーに関する役立つ情報は見つかりませんでした。


android / app / build.gradlewを表示できますか?
アンドレ・ピント

@AndréPinto質問に追加しました。defaultConfigのapplicationIdを検閲しました。
マクシミリアンクラウス

回答:


0

APKまたはAABを作成するときは、必ずキーエイリアスとしてアップロードを選択してください。参照用の画像を参照してください。

ここに画像の説明を入力してください


0

あなたが探している答えではないかもしれませんが、Android Studioを使用するのではなく、コマンドラインを使用してキーストアを生成しようとしましたか?

これがうまくいかない場合は、モジュール、特にエキスポモジュールを調べ始めます。これは、過去数週間にわたっていくつかの悲しみを引き起こしたためです。

Android向けのパブリッシングに関するネイティブガイドに反応する


0

元の問題に対する完全な解決策ではありませんが、ここで私の質問に答えます。ExpoKitに関するいくつかのベントです。

ExpoKitをアプリから完全に削除しました。以前はExpoでサポートされていなかったWebRTCのような他のネイティブ機能が必要だったため、以前はマネージドExpoワークフローからExpoKitに退出していました。しかし、ここで完全に正直に言うと、我々はおそらくに排出している必要があり、裸の代わりに半最適ExpoKitのネイティブに反応します。

管理されたワークフローを使用できる場合は、それを実行してください。確かにいくつかのものを簡単にします。ただし、サポートされていない他のネイティブ機能が必要な場合は、簡単にできる限り、自分自身を支持して、ベアRNに戻ってください。

なぜなら、Expo KitからベアRNに移行するのはまったく魅力がないからです。まったく新しいRNプロジェクトを初期化し、JavaScriptをコピーし、モジュールを1つずつ再インストールし、いくつかのネイティブの問題を修正する必要がありました。たとえば、アプリを実行するための2日間の作業です。

しかし、すべての作業が終わった後、今ではExpoKitなしで同じアプリを使用しています。

長所:

  • Google Playへのアプリのアップロードが最終的に機能します。
  • アプリのダウンロードサイズを70%以上削減(!)
  • RN 0.60を介した自動リンクの容易さ(ExpoKitは最新のSDKでiircをサポートしていますが、Expo SDKの更新は、多くの場合それ自体で完全な科学です)
  • unimodulesを介してexpo-secure-storeのように実際に学習したExpoモジュールを引き続き使用できます。
  • プラセボかもしれませんが、アプリのパフォーマンスも向上しているようです。
  • リリースアプリのビルド時間は、iOSでは約50%、Androidでは60%増加しました
  • アプリの起動は速度が速いようです-以前はiPhone 11 Proで起動するのに約2〜3秒かかっていましたが、今では数ミリ秒です。

短所:今のところ見つかりませんでした。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.