Unable to download project
See original GitHub issueUnable to add to android project. Followed README but keep running into this issue during gradle sync. Any suggestions? LOG
Failed to resolve: com.github.kizitonwose:CalendarView:1.0.0
build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.4.20'
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
def nav_version = "2.3.0"
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
build.gradle (app)
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-parcelize'
apply plugin: "androidx.navigation.safeargs.kotlin"
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.surreal.interactive.sikhLife"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Properties properties = new Properties()
if (rootProject.file("local.properties").exists()) {
properties.load(rootProject.file("local.properties").newDataInputStream())
}
// Inject the Maps API key into the manifest
manifestPlaceholders = [ mapsApiKey : properties.getProperty("MAPS_API_KEY", "") ]
}
buildFeatures {
dataBinding = true
viewBinding true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
}
ext {
googlePlayVersion = "17.0.0"
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.1'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation "androidx.viewpager2:viewpager2:1.0.0"
implementation "com.google.android.gms:play-services-maps:$googlePlayVersion"
implementation "com.google.android.gms:play-services-location:$googlePlayVersion"
implementation 'com.google.android.libraries.places:places:2.4.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'com.google.code.gson:gson:2.8.6'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1'
implementation 'com.github.kizitonwose:CalendarView:1.0.0'
implementation 'com.jakewharton.timber:timber:4.7.1'
implementation 'com.github.applikeysolutions:cosmocalendar:1.0.4'
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Unable to install Microsoft project from company portal on ...
Unable to install Microsoft project from company portal on windows 10. The process is stuck in downloading for 2 days in company portal....
Read more >Fix: Microsoft Project won't install - Windows Report
Fix: Microsoft Project won't install · Download DriverFix (verified download file). · Click Start Scan to find all problematic drivers. · Click ...
Read more >Unable to download shared project - Mendix Forum
Hi Charles Glennon,. sounds like you are trying to open the app with a different account. please verify the app is being opened...
Read more >I can't save my project. What should I do? - Splice Help Center
I can't save my project. What should I do? · Close the app from your background processes and launch it again. · Update...
Read more >"Failed to download the project from the server" when opening ...
Solution: · Create a new text file on the desktop. · Rename file extension TXT to UDL. · Double-click the file. A dialog...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
For me, solution was to add
maven { url "https://jitpack.io" }
inside settings.gradle fileTry moving the
maven { url "https://jitpack.io" }
from the buildscript repositories section into the allprojects repositories section.