将推送代码接入主工程

This commit is contained in:
wangcongtao
2020-07-31 13:22:26 +08:00
parent 5a2d3183c2
commit e16fff638c
73 changed files with 5754 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.module.push">
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<application>
<activity
android:name=".activity.PushMessageActivity"
android:theme="@style/ModulePushMessageTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
</manifest>