Twitter Fabric fails to install in Android Studio due to missing dependencies

后端 未结 4 2110
梦如初夏
梦如初夏 2021-02-14 07:18

I\'m setting up a Cordova project with Fabric to enable signing in with Twitter. I just installed Fabric plug-in into Android Studio but when I sync Gradle files I get the follo

4条回答
  •  抹茶落季
    2021-02-14 07:39

    Please follow this code example to make sure your build.gradle file is similar:

        buildscript {
      repositories {
        jcenter()   // <- *add this
        maven { url 'https://maven.fabric.io/repo' }
      }
      dependencies {
        classpath 'com.android.tools.build:gradle:0.13.3'
        // The Fabric Gradle plugin uses an open ended version to
        // react quickly to Android tooling updates
        classpath 'io.fabric.tools:gradle:1.+'
      }
    }
    
    apply plugin: 'com.android.application'   // <- *make sure this is the same
    
    //Put Fabric plugin after Android plugin
    apply plugin: 'io.fabric'
    
    repositories {
        jcenter()   // <- *add this
        maven { url 'https://maven.fabric.io/repo' }
    }
    

    I had the same issue, spent half a day on this until opened twitters official documentation and came across this: https://dev.twitter.com/twitter-kit/android/integrate

    Too many answers by the Fabric team on SO and other forums that did not work. This works.

提交回复
热议问题