Troubleshooting

1. Google Play Console: The SDK developer androidx.fragment has reported fragment:1.0.0 as outdated- Unity project.

Go to the file Assets/Plugins/Android/mainTemplate.gradle

dependencies {
// Android Resolver Dependencies Start
// ...
// Android Resolver Dependencies End

constraints.implementation 'androidx.fragment:fragment:1.3.6'
}

2. Duplicate class in Kotlin Android

Go to the file Assets/Plugins/Android/mainTemplate.gradle

dependencies {
// Android Resolver Dependencies Start
// ...
// Android Resolver Dependencies End

// Fix Duplicate class
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
}

Powered by BetterDocs

Go to Top