尝试使用Appsee SDK构建项目时,出现错误:

Appsee couldn't locate an Android Manifest file.


奇怪的是,它运行了一段时间后,这个问题突然出现了。我尝试在macOS Finder中修复文件权限,并尝试清除缓存和重建。

dependencies {
    //implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.appsee:appsee-android:+'
    implementation('io.fabric.sdk.android:fabric:1.3.10@aar') {
        transitive = true;
    }
}

apply plugin: 'com.appsee.appsee-plugin'


在我的清单中:

    <meta-data android:name="com.appsee.ApiKey" android:value="my-key" />
</application>

最佳答案

您应该通过[email protected]与Appsee的支持联系。

同时,您可能需要在注释中加入apply plugin: 'com.appsee.appsee-plugin'行。 Appsee SDK仍然可以使用。

10-08 15:32