Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build error :app:checkDebugDuplicateClasses #380

Open
batuhanbag opened this issue Dec 15, 2022 · 4 comments
Open

Build error :app:checkDebugDuplicateClasses #380

batuhanbag opened this issue Dec 15, 2022 · 4 comments

Comments

@batuhanbag
Copy link

batuhanbag commented Dec 15, 2022

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"

}
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' }
}

}`

@superandrew213
Copy link
Contributor

@batuhanbag did you get this to work?

@batuhanbag
Copy link
Author

no I didn't, I find another way that I want to do without react-native-processing

@enganasalsaadi
Copy link

i solved

implementation(project(':react-native-video-processing')) { exclude group: 'com.yqritc' }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants
@superandrew213 @batuhanbag @enganasalsaadi and others