Kotlin / anko-example

A small application built with Anko DSL

Home Page:https://github.com/JetBrains/anko

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't build a sample project.

dmitvitalii opened this issue · comments

Android Studio 2.2.3, java-8 OpenJDK, Fedora 24. Just downloaded and opened project.

Error:(41, 13) Failed to resolve: org.jetbrains.anko:anko-sdk15:0.9.1

Same problem with me

Version 0.9.1 is not available at jcenter (only previous release is), I solved this by adding maven { url 'https://dl.bintray.com/jetbrains/anko' } to allprojects repositories in root build.gralde, like so:


allprojects {
    repositories {
        jcenter()
        maven { url 'https://dl.bintray.com/jetbrains/anko' }
    }
}

+1 @NeverwinterMoon Thank you for the help!

commented

@NekroMancer Thank you for your help !

Helped me alot thanks ;D

The actual problem Kotlin/anko#313 is resolved so I think the issue may be closed.