Class 'MyApplication' 从未使用过

Class 'MyApplication' is never used

在我的 build.gradle 文件中使用此代码成功将 Flurry SDK 集成到库中后。

    compile 'com.flurry.android:analytics:6.8.0'

我创建了 java Class 以将我的 API 密钥集成到我的代码中,并且由于我 运行 我的应用程序是在外部设备上运行的,所以我想有些数据需要显示在我的 flurry 帐户上,但现在已经四天了,没有任何变化,我的仪表板上只显示零 ...

此外,我的 java 文件中有这条消息

Class 'MyApplication' is never used

Ps:我是 android 工作室的新手

您必须在清单文件中指定 MyApplication。否则不会使用它:

<application
    android:name=".MyApplication"
    ....

是 class,不是 activity。所以你应该把它写成:

<application
    android:name=".MyApplication" //you should write like this
    android:allowBackup="true"
</application>