我的 multidex 没有解析(它仍然是红色的)
My multidex is not resolving (it is still red)
我的android.support.multidex.MultiDexApplication在所有步骤之后仍然是红色的。我无法解决这个问题。我正在学习在线课程,但找不到答案。我可以省略 multidex 吗?
android {
compileSdkVersion 28
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.ping"
minSdkVersion 21
targetSdkVersion 28
multiDexEnabled true
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.core:core-ktx:1.0.2'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.google.firebase:firebase-analytics:17.2.2'
implementation 'com.google.firebase:firebase-auth:19.2.0'
implementation 'com.google.firebase:firebase-firestore:21.4.0'
implementation 'com.google.firebase:firebase-storage:19.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
apply plugin: 'com.google.gms.google-services'
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ping">
<application
android:name="android.support.multidex.MultiDexApplication"
(this part is showing error)
>
您需要一个扩展 MultiDexApplication
的应用程序 class
您需要具有此 AndroidX 的依赖项
implementation 'androidx.multidex:multidex:2.0.1'
或者对于正常的支持库
implementation 'com.android.support:multidex:1.0.3'
下面是代码,如果你想要它在 Kotlin
class YourAppName : MultiDexApplication()
或 Java
class YourAppName extends MultiDexApplication
并且在你的清单文件中的应用标签
android:name:".YourAppName"
如果你在想为什么要申请class这里有一些你可以做的阅读
您将 androidX 与支持库混合使用。
你应该替换:
implementation 'com.android.support:support-v4:28.0.0'
和
implementation 'androidx.multidex:multidex:2.0.1'
并替换
android.support.multidex.MultiDexApplication
与
androidx.multidex.MultiDexApplication
我的android.support.multidex.MultiDexApplication在所有步骤之后仍然是红色的。我无法解决这个问题。我正在学习在线课程,但找不到答案。我可以省略 multidex 吗?
android {
compileSdkVersion 28
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.ping"
minSdkVersion 21
targetSdkVersion 28
multiDexEnabled true
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.core:core-ktx:1.0.2'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.google.firebase:firebase-analytics:17.2.2'
implementation 'com.google.firebase:firebase-auth:19.2.0'
implementation 'com.google.firebase:firebase-firestore:21.4.0'
implementation 'com.google.firebase:firebase-storage:19.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
apply plugin: 'com.google.gms.google-services'
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ping">
<application
android:name="android.support.multidex.MultiDexApplication"
(this part is showing error)
>
您需要一个扩展 MultiDexApplication
的应用程序 class您需要具有此 AndroidX 的依赖项
implementation 'androidx.multidex:multidex:2.0.1'
或者对于正常的支持库
implementation 'com.android.support:multidex:1.0.3'
下面是代码,如果你想要它在 Kotlin
class YourAppName : MultiDexApplication()
或 Java
class YourAppName extends MultiDexApplication
并且在你的清单文件中的应用标签
android:name:".YourAppName"
如果你在想为什么要申请class这里有一些你可以做的阅读
您将 androidX 与支持库混合使用。
你应该替换:
implementation 'com.android.support:support-v4:28.0.0'
和
implementation 'androidx.multidex:multidex:2.0.1'
并替换
android.support.multidex.MultiDexApplication
与
androidx.multidex.MultiDexApplication