You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't get a build with react native processing, I get app:checkDebugDuplicateClasses error every time, I tried the solutions suggested on stackoverflow or everywhere else but I couldn't do it. what is the reason for this?
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.0.0")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}allprojects {
repositories {
mavenCentral()
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
jcenter()
jcenter() {
content {
includeModule("cn.aigestudio.wheelpicker", "WheelPicker")
}
}
google()
maven { url 'https://www.jitpack.io' }
}
}`
The text was updated successfully, but these errors were encountered:
I can't get a build with react native processing, I get app:checkDebugDuplicateClasses error every time, I tried the solutions suggested on stackoverflow or everywhere else but I couldn't do it. what is the reason for this?
build.gradle
`buildscript {
ext {
buildToolsVersion = "30.0.2"
minSdkVersion = 21
compileSdkVersion = 31
targetSdkVersion = 31
ndkVersion = "21.4.7075529"
}
allprojects {
repositories {
mavenCentral()
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
jcenter()
jcenter() {
content {
includeModule("cn.aigestudio.wheelpicker", "WheelPicker")
}
}
}`
The text was updated successfully, but these errors were encountered: