找不到插件 Fabric Android Studio 导入 com.crashlytics & io.fabric
Posted
技术标签:
【中文标题】找不到插件 Fabric Android Studio 导入 com.crashlytics & io.fabric【英文标题】:plugin Fabric Android Studio not found import com.crashlytics & io.fabric 【发布时间】:2016-09-16 17:03:05 【问题描述】:在我的新项目中,我想从 Fabric.io 集成 Crashlytics
我已经在其他项目上毫无问题地安装了 Fabric,这里有一个带有教程的项目:https://fabric.io/kits/android/crashlytics/install
在另一个项目中,我使用了集成到 Android Studio 中的插件 Fabric(图片)
问题来了:
import android.app.Application;
import com.crashlytics.android.Crashlytics;
import io.fabric.sdk.android.Fabric;
public class UILApplication extends Application
@Override
public void onCreate()
super.onCreate();
Fabric.with(this, new Crashlytics()); // Fabric not found
Error:(6, 31) error: package com.crashlytics.android does not exist
Error:(7, 29) error: package io.fabric.sdk.android does not exist
Error:(20, 31) error: cannot find symbol class Crashlytics
Error:(20, 9) error: cannot find symbol variable Fabric
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
:app:compileDebugJavaWithJavac FAILED
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.
我的 build.gradle(项目):
task wrapper(type: Wrapper)
gradleVersion = '2.12'
build.gradle(模块:app):
buildscript
repositories
mavenCentral()
maven url "http://oss.sonatype.org/content/repositories/snapshots/"
// maven url 'https://maven.fabric.io/public' THIS LINE FORGOTTEN
dependencies
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.google.gms:google-services:3.0.0'
//classpath 'io.fabric.tools:gradle:1.+'
apply plugin: "com.android.application"
//apply plugin: 'io.fabric'
repositories
mavenCentral()
maven url "http://oss.sonatype.org/content/repositories/snapshots/"
// maven url 'https://maven.fabric.io/public'
android
compileSdkVersion = 24
buildToolsVersion = "23.0.3"
defaultConfig
applicationId "agemos.testkalman1"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
dependencies
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.android.support:design:24.2.0'
compile ('com.mapbox.mapboxsdk:mapbox-android-sdk:4.2.0-SNAPSHOT@aar')
transitive=true
// // Crashlytics Fabric io
// compile('com.crashlytics.sdk.android:crashlytics:2.6.3@aar')
// transitive = true;
//
我已将 compileSdkVersion 23 更改为 24,但没有任何变化,有人遇到过这个问题吗?
提前感谢您的帮助:)
我忘记了一行
现在可以了!不便之处敬请见谅^^'
【问题讨论】:
发布您的根目录和应用级别的 gradle 文件。您一定没有正确执行步骤 类路径 'com.android.tools.build:gradle:2.1.2' 和 Gradle 版本 2.14 请发布您在教程中遵循的构建 gradle 文件 【参考方案1】:来自 Fabric 的 Mike。
您似乎在 build.gradle 中注释掉了 Fabric 的所有初始化?如果您取消注释下面的行,那应该可以。
classpath 'io.fabric.tools:gradle:1.+'
apply plugin: 'io.fabric'
maven url 'https://maven.fabric.io/public'
// Crashlytics Fabric io
compile('com.crashlytics.sdk.android:crashlytics:2.6.3@aar')
transitive = true;
完整的 build.gradle 将有 all of the following changes:
buildscript
repositories
maven url 'https://maven.fabric.io/public'
dependencies
// The Fabric Gradle plugin uses an open ended version to react
// quickly to Android tooling updates
classpath 'io.fabric.tools:gradle:1.+'
apply plugin: 'io.fabric'
repositories
maven url 'https://maven.fabric.io/public'
compile('com.crashlytics.sdk.android:crashlytics:2.6.3@aar')
transitive = true;
【讨论】:
这已经过时了!您能否根据最近的发展更新您的答案? 这不是我目前正在做的事情,所以我会听从当前的专家来编辑答案。【参考方案2】:清除并重建并重新启动 Android Studio 的工作
build.gradle 项目
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript
repositories
google()
jcenter()
buildscript
repositories
jcenter()
mavenCentral()
maven url 'https://maven.fabric.io/public'
dependencies
classpath 'io.fabric.tools:gradle:1.+'
dependencies
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'io.fabric.tools:gradle:1.+'
// 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 模块
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android
compileSdkVersion 26
defaultConfig
applicationId "com.holostik.ozoneoverseas"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
android
defaultConfig
multiDexEnabled true
dependencies
// TODO FCM
// implementation 'com.google.firebase:firebase-messaging:11.0.4'
//compile 'com.google.firebase:firebase-messaging:11.0.4'
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
exclude group: 'com.android.support', module: 'support-annotations'
)
// compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:appcompat-v7:26.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'me.dm7.barcodescanner:zxing:1.9.7'
compile 'com.android.support:cardview-v7:26.0.1'
compile 'com.android.support:design:26.0.1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'de.hdodenhof:circleimageview:1.3.0'
compile 'com.android.volley:volley:1.0.0'
// compile 'com.google.android.gms:play-services-location:7.8.0' // TODO Previous working
// compile 'com.google.android.gms:play-services-location:9.0.0'
compile 'com.google.android.gms:play-services-location:11.0.4'
// compile "com.google.android.gms:play-services-gcm:9.2.0"
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.android.volley:volley:1.0.0'
compile 'com.theartofdev.edmodo:android-image-cropper:2.3.+'
//TODO camera Crop dependency working
// compile files('libs/ksoap2-android-assembly-2.5.7-jar-with-dependencies.jar')
// implementation 'com.google.firebase:firebase-messaging:11.0.4'
// compile 'com.google.android.gms:play-services:11.4.0'
compile 'com.google.android.gms:play-services:11.0.4'
// compile 'com.facebook.android:facebook-android-sdk:4.8.0' // Works here
compile 'com.facebook.android:facebook-android-sdk:4.13.1' // Works here
compile('com.crashlytics.sdk.android:crashlytics:2.9.0@aar')
transitive = true;
compile('com.crashlytics.sdk.android:crashlytics-ndk:2.0.2@aar')
transitive = true;
repositories
maven url 'https://maven.fabric.io/public'
allprojects
repositories
jcenter()
maven
url "https://maven.google.com"
/*buildscript
repositories
maven url 'https://maven.fabric.io/public'
// ...
dependencies
// ...
classpath 'com.google.gms:google-services:3.1.1' // google-services plugin
classpath 'io.fabric.tools:gradle:1.+'
allprojects
// ...
repositories
// ...
maven
url "https://maven.google.com" // Google's Maven repository
*/
// TODO FCM
//apply plugin: 'com.google.gms.google-services' // TODO FCM add auto in Bottom When Google Service Add uncomment this
//dependencies
// implementation fileTree(dir: 'libs', include: ['*.jar'])
// implementation 'com.android.support:appcompat-v7:26.1.0'
// implementation 'com.android.support.constraint:constraint-layout:1.0.2'
// testImplementation 'junit:junit:4.12'
// androidTestImplementation 'com.android.support.test:runner:1.0.1'
// androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
//
crashlytics
enableNdk true
androidNdkOut 'src/main/obj'
androidNdkLibsOut 'src/main/libs'
manifest.xml
<meta-data
android:name="io.fabric.ApiKey"
android:value="1864e6d3e59158a5206d2d073e7e14c7ad811cbd" />
飞溅活动
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
Fabric.with(this, new Crashlytics(), new CrashlyticsNdk());
【讨论】:
以上是关于找不到插件 Fabric Android Studio 导入 com.crashlytics & io.fabric的主要内容,如果未能解决你的问题,请参考以下文章
错误:找不到fabric.aar (io.fabric.sdk.android:fabric:1.3.17)
Twitter 如何在 Android Studio 中使用 Fabric 插件获取用户个人资料图片