mCalendarView icon indicating copy to clipboard operation
mCalendarView copied to clipboard

implementation 'sun.bob:mcalendarview:1.0.0' not work anymore, what should i do

Open davdavcoco opened this issue 5 months ago • 0 comments

i have a lot repositories on my android project (friend project) and this is the build.gradle:

` apply plugin: 'com.android.application'

android { compileSdkVersion 28 defaultConfig { applicationId 'xxx' manifestPlaceholders = [ onesignal_app_id :xxx onesignal_google_project_number: xxx ] minSdkVersion 24 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } splits { abi { enable true reset() include 'x86', 'armeabi-v7a', 'x86_64' universalApk true } } }

dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support:cardview-v7:28.0.0' implementation 'com.android.support:design:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.squareup.okhttp3:okhttp:3.12.1' implementation 'com.github.jkwiecien:EasyImage:1.3.1' implementation 'com.android.volley:volley:1.1.1' implementation 'commons-io:commons-io:2.5' implementation 'net.sf.trove4j:trove4j:3.0.3' implementation 'com.google.code.gson:gson:2.8.2' implementation 'net.sourceforge.streamsupport:streamsupport:1.6.1' implementation 'android.arch.lifecycle:viewmodel:1.1.0' implementation 'javax.inject:javax.inject:1@jar' implementation 'com.github.bumptech.glide:glide:3.7.0' implementation 'com.squareup.retrofit2:retrofit:2.3.0' implementation 'com.google.code.gson:gson:2.8.2' implementation 'com.squareup.retrofit2:converter-gson:2.3.0' implementation 'com.squareup.okhttp3:logging-interceptor:3.12.1' implementation 'com.onesignal:OneSignal:[3.9.1, 3.99.99]' implementation 'com.machinezoo.noexception:noexception:1.3.0'

_**implementation 'com.evrencoskun.library:tableview:0.8.8'
implementation 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1'
implementation 'sun.bob:mcalendarview:1.0.0'
implementation 'com.otaliastudios:autocomplete:1.1.0'**_

testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation files('libs/dpuareu.jar')

} i can't rebuild, and debug and found few repos that return 404... mostly from maven... this is the error... image

`

davdavcoco avatar Sep 18 '24 04:09 davdavcoco