투케이2K

1. (TWOK/ERROR) [Android] 라이브러리 빌드 에러 - debugCompileClasspath , Bad Gateway 502 본문

투케이2K 에러관리

1. (TWOK/ERROR) [Android] 라이브러리 빌드 에러 - debugCompileClasspath , Bad Gateway 502

투케이2K 2022. 4. 8. 17:36

[환경 설정 및 설명]

프로그램 : AndroidStudio

설 명 : 안드로이드 라이브러리 빌드 시 debugCompileClasspath , Bad Gateway 502 에러 발생

 

[에러 원인]

1. 기존 라이브러리 빌드 시 jcenter() 참고 했지만 더 이상 지원 안되는 이슈 발생

 

[해결 방법]

1. 라이브러리 빌드 시 mavenCentral() 참고 및 repositories 위치 및 구조 변경 실시

buildscript {
    repositories {
        // [의존성 라이브러리 설치 위해 추가 실시]
        google()
        mavenCentral()
        jcenter()
        maven {   url "https://maven.google.com"  }
        maven {   url "https://www.jitpack.io"  }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.2'

        // [파이어베이스 크래시 리틱스 오류 보고]
        classpath 'com.google.gms:google-services:4.0.1'
        classpath 'com.google.firebase:firebase-crashlytics-gradle:2.1.1'
    }
}





repositories {
    // [의존성 라이브러리 설치 위해 추가 실시]
    google()
    mavenCentral()
    jcenter()
    maven {   url "https://maven.google.com"  }
    maven {   url "https://www.jitpack.io"  }

    // [주석 처리 실시]
    /*
    maven {
        url "http://dl.bintray.com/journeyapps/maven"
    }
    */
}





allprojects {
    repositories {
        // [의존성 라이브러리 설치 위해 추가 실시]
        google()
        mavenCentral()
        jcenter()
        maven {   url "https://maven.google.com"  }
        maven {   url "https://www.jitpack.io"  }
    }
}
 
 

 

 

 

 

반응형
Comments