Firebase依赖项,firebase-crash:10.0.1'

时间:2017-01-11 10:25:18

标签: android firebase firebase-crash-reporting

如果有人对此有任何解释,请帮助我理解。

问题是:

如果在依赖关系中我使用了这个,

compile 'com.google.firebase:firebase-crash:10.0.1'  

然后在布局中看不到下面的代码。

  <android.support.v4.view.PagerTabStrip
                android:id="@+id/pager_header"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="top"
                android:background="@color/colorAccent"
                android:paddingBottom="@dimen/_7dp"
                android:paddingTop="@dimen/_7dp"
                android:textAppearance="@style/MyCustomTabTextAppearance"
                android:textColor="@color/colorWhite" />

但是,如果我降级火力基地,就像这样,

 compile 'com.google.firebase:firebase-crash:9.4.0'

然后下面的代码可见。

<android.support.v4.view.PagerTabStrip
                    android:id="@+id/pager_header"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_gravity="top"
                    android:background="@color/colorAccent"
                    android:paddingBottom="@dimen/_7dp"
                    android:paddingTop="@dimen/_7dp"
                    android:textAppearance="@style/MyCustomTabTextAppearance"
                    android:textColor="@color/colorWhite" />

这是我的应用依赖项。

   dependencies {
        compile fileTree(include: ['*.jar'], dir: 'libs')
        testCompile 'junit:junit:4.12'
        compile 'com.android.support:appcompat-v7:23.3.0'
        compile 'com.android.support:design:23.3.0'
        compile 'com.android.support:recyclerview-v7:23.3.0'
        compile 'com.android.support:cardview-v7:23.3.0'
        compile 'com.squareup.okhttp3:okhttp:3.2.0'
        compile 'com.nineoldandroids:library:2.4.0'
        compile 'com.android.support:palette-v7:23.3.0'
        compile 'io.github.kexanie.library:MathView:0.0.6'
        compile 'jp.wasabeef:blurry:2.0.2'
        compile 'com.mcxiaoke.volley:library-aar:1.0.0'
        compile('com.crashlytics.sdk.android:crashlytics:2.5.7@aar') {
            transitive = true;
        }
        compile 'com.google.firebase:firebase-crash:10.0.1'
    }
    apply plugin: 'com.google.gms.google-services'

这是我的Project的依赖项。

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.2'
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.3.1'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
        classpath 'com.google.gms:google-services:3.0.0'
        classpath 'com.google.firebase:firebase-plugins:1.0.4'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

1 个答案:

答案 0 :(得分:0)

我找到了解决这个问题的方法。

在我们的MainActivity中,像这样初始化PagerTabStrip。

PagerTabStrip pagerTabStrip = (PagerTabStrip) findViewById(R.id.pager_header);

((ViewPager.LayoutParams) pagerTabStrip.getLayoutParams()).isDecor = true;

要记住的一件事是它不会对Studio中的布局预览产生影响。但是,如果您运行,那么您将能够在设备中看到正确的输出。