我将我的应用程序发送到了Play商店,经过一番抱怨之后,在Play控制台中出现了一些错误簇。在我的手机中,这种失败从未发生过。
播放控制台错误:
java.lang.RuntimeException:
at android.app.ActivityThread.handleReceiver (ActivityThread.java:3334)
at android.app.ActivityThread.-wrap17 (Unknown Source)
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1725)
at android.os.Handler.dispatchMessage (Handler.java:105)
at android.os.Looper.loop (Looper.java:164)
at android.app.ActivityThread.main (ActivityThread.java:6694)
at java.lang.reflect.Method.invoke (Native Method)
at com.android.internal.os.Zygote$MethodAndArgsCaller.run (Zygote.java:240)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:769)
Caused by: java.lang.ClassNotFoundException:
at dalvik.system.BaseDexClassLoader.findClass (BaseDexClassLoader.java:93)
at java.lang.ClassLoader.loadClass (ClassLoader.java:379)
at java.lang.ClassLoader.loadClass (ClassLoader.java:312)
at android.app.ActivityThread.handleReceiver (ActivityThread.java:3329)
我的设置摇篮:
rootProject.name = project_name
include ':react-native-firebase'
project(':react-native-firebase').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-firebase/android')
include ':react-native-snackbar'
project(':react-native-snackbar').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-snackbar/android')
include ':react-native-vector-icons'
project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
include ':react-native-text-input-mask'
project(':react-native-text-input-mask').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-text-input- mask/android')
include ':app'
My build.gradle
buildscript {
repositories {
google()
maven {
url 'https://maven.google.com/'
name 'Google'
}
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.google.gms:google-services:4.0.1'
}
}
allprojects {
repositories {
mavenLocal()
maven {
url "$rootDir/../node_modules/react-native/android"
}
maven {
url 'https://maven.google.com/'
name 'Google'
}
google()
jcenter()
}
}
ext {
buildToolsVersion = "26.0.3"
minSdkVersion = 16
compileSdkVersion = 26
targetSdkVersion = 26
supportLibVersion = "26.1.0"
}
我的app / build.gradle
...
dependencies {
implementation project(':react-native-firebase')
compile project(':react-native-snackbar')
implementation project(':react-native-vector-icons')
compile project(':react-native-text-input-mask')
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
compile "com.facebook.react:react-native:+" // From node_modules
implementation "com.google.android.gms:play-services-base:15.0.1"
implementation "com.google.firebase:firebase-core:16.0.1"
implementation "com.google.firebase:firebase-messaging:17.1.0"
implementation 'me.leolin:ShortcutBadger:1.1.21@aar'
}
我不知道发生了什么事以及如何解决它。谁能帮助我解决这个问题?
答案 0 :(得分:1)
这看起来像是dex问题。您需要启用multidex支持。
当您将minSDKVersion设置为16时,需要将以下内容添加到依赖项中
implementation 'com.android.support:multidex:1.0.3'
您还需要在defaultConfig
的{{1}}中启用multidex
android/app/build.gradle
您还需要从
更改defaultConfig {
// there will be other things here like applicationId, minSdkVersion, versionCode etc.
multiDexEnabled true
}
中的以下行
MainApplication.java
到
public class MainApplication extends Application implements ReactApplication {
您可以在https://developer.android.com/studio/build/multidex上阅读有关启用multidex的更多信息,因为有多种方法可以启用它,具体取决于您是否覆盖public class MainApplication extends MultiDexApplication implements ReactApplication {
类。