NumberFormatException: Invalid revision: 24.0.0-alpha1: Invalid revision: 24.0.0-alpha1

…衆ロ難τιáo~ 提交于 2019-11-30 07:09:47

I had the same problem after SDK update. In my case the solution was to remove 24.0.0-alpha1 folder from sdk/extras/android/m2repository/com/android/support/appcompat-v7 and to delete <version>24.0.0-alpha1</version> line from sdk/extras/android/m2repository/com/android/support/appcompat-v7/maven-metadata.xml

This worked for me.

In build.gradle of Project (not module) i changed the classpath.

It now looks like this

dependencies {
    classpath 'com.android.tools.build:gradle:1.3.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

Hope it helps someone.

What i have did to work this fine is updated android studio to latest release and updated gradle.also did following changes in build.gradle

dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'
}
user3856077

Hi Actually Svetlana Kuleshova tried to mention was

try with below procedure

and comment the maven pom.xml or maven-metadata.xml

24.0.0-alpha1 -->

Try this cases if you really need 24.0.0-alpha1:

  1. Replace

    compile 'com.android.support:appcompat-v7:23.0.2'
    compile 'com.android.support:support-v4:23.2.1'
    

to

    compile 'com.android.support:appcompat-v7:24.0.0-alpha1'
    compile 'com.android.support:support-v4:24.0.0-alpha1'
  1. Launch stanalone SDK manager and load Android N, API 23, N preview, after that you need replace

    compileSdkVersion 23
    

to

    compileSdkVersion 'android-N'

Tell me if it work for you too.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!