1
我正嘗試從Google Firebase推送我的應用程序通知。然而,在我的AndroidManifest.xml文件,這個問題似乎是在Firebase - 無法解析符號'MyFirebaseMessagingService'
<service
android:name=".MapsActivity">
我得到,因爲同一個名字的錯誤出現在
<activity
android:name=".MapsActivity"
android:label="@string/title_activity_maps">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
從教程,它應該像
android:name=".MyFirebaseMessagingService">
,但我改變了它,因爲在我的MainActivity.java類是
public class MapsActivity extends AppCompatActivity
AndroidManifest.xml中
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/google_maps_key" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_stat_ic_notification" />
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/colorAccent" />
<activity
android:name=".MapsActivity"
android:label="@string/title_activity_maps">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".MapsActivity">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service
android:name=".MapsActivity">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
</application>
</manifest>
的build.gradle
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.google.android.gms:play-services:9.8.0'
}
apply plugin: 'com.google.gms.google-services'
你們是否有任何想法如何解決這個問題?
如果您使用設備來測試您的應用程序,請告訴我他們的模型請 –
@MerlíEscarpenterPérezsony xperia z2 – Key
好的,你能告訴我你的依賴關係嗎(構建和應用程序)? –