dependecies 의존성 추가 관련 에러 (cardstackview)
미해결
[초중급편] 안드로이드 데이팅 앱 만들기(Android Kotlin)
CardStackView 구현 강의 수강 중 의존성 관련 에러로 질문드립니다. plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' } android { namespace 'com.example.myapplication' compileSdk 32 defaultConfig { applicationId "com.example.myapplication" minSdk 21 targetSdk 32 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } } dependencies { implementation 'androidx.core:core-ktx:1.7.0' implementation 'androidx.appcompat:appcompat:1.4.1' implementation 'com.google.android.material:material:1.6.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.4' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0' implementation "com.yuyakaido.android:card-stack-view:2.3.4" //implementation("com.yuyakaido.android:card-stack-view:2.3.4") //implementation group: 'com.yuyakaido.android', name: 'card-stack-view', version: '2.3.4' } 여러 방법으로 추가해봤는데 External Libraries에 추가가 안되더라구요. Invalidate Cache & restart도 해보고 IDE 재시작도 해봤는데 여전히 무반응입니다. 혹시 프로젝트를 만들 때, 특별한 설정을 해야하나요? 현재 Empty Activity로 만들어서 진행하고 있습니다.
- dependencies
- android
- 의존성
- kotlin
- firebase





