你可以試試這個,
您AndroidManifest開始加入這一行:的xmlns:工具= 「http://schemas.android.com/tools」
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cl.datacomputer.alejandrob.example"
xmlns:tools="http://schemas.android.com/tools">
和內應用程序添加此服務標籤:
<application
android:name="android.support.multidex.MultiDexApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:screenOrientation="portrait">
<service android:name="com.google.android.gms.measurement.AppMeasurementService"
tools:replace="android:enabled"
android:enabled="false"
android:exported="false"/>
這不是一個很好的解決方案,我知道,但你可以禁用會導致內存泄漏的服務。
對不起,如果我的英語不好。
問候。
亞歷杭德羅布爾戈斯。
偉大的哈克解決方案,就像一個魅力。謝謝!! –
這沒什麼:) –