android、flutter离线推送插件,支持oppo、vivo、小米、华为

项目说明

项目地址:https://github.com/haomiao33/ym_flutter_push

起因

目前github上面搜索发现没有合适的flutter和android 推送原生插件,所以自己参考和借鉴了(https://github.com/taoweiji/MixPush)项目,这个mixpush太老了,我这边更新了不少,去除了不需要的部分,更新了最新的jar和aar。

大家有什么问题可以提issues。

可以搭配配套的im系统:https://github.com/haomiao33/minim

功能

复制代码
1、支持vivo、oppo、华为、小米
2、目前支持获取到regId
3、支持服务端发送推送打开应用首页和子页面(可以附加不同的schema或者intent参数)

集成方法

1、库不需要修改,直接使用项目下的example

2、修改example下如下地方

复制代码
a、在android目录下的gradle.properties 各个值即可:


    EXAMPLE_APPLICATION_ID=com.xiaogongqiu.app
    EXAMPLE_VIVO_APP_ID=XX
    EXAMPLE_VIVO_APP_KEY=XX
    EXAMPLE_MI_APP_ID=XX
    EXAMPLE_MI_APP_KEY=XX
    EXAMPLE_OPPO_APP_KEY=XX
    EXAMPLE_OPPO_APP_SECRET=XX
    EXAMPLE_MEIZU_APP_ID=XX
    EXAMPLE_MEIZU_APP_KEY=XX

b、修改android app目录下build.gradle android.jks是自己的apk签名,改成自己的就行:
     signingConfigs {
        release {
            keyAlias 'key0'
            keyPassword "xxxx"
            storePassword "xxxx"
            storeFile file('android.jks')
        }
    }

c、替换改android app 目录下华为推送配置文件 arconnect-services.json 文件,替换成自己的。

d、修改app/src/AndroidManifest.xml 包名改成自己的(这个是属于小米的部分配置):
     <permission
        android:name="com.xiaogongqiu.app.permission.MIPUSH_RECEIVE"
        android:protectionLevel="signature" />
    <uses-permission android:name="com.xiaogongqiu.app.permission.MIPUSH_RECEIVE" />

e、 这个属于定义打开的activity的 scheme,可以自己定义,不过小米、vivi、oppo、华为有的使用时intent参数有的是使用scheme。
   <intent-filter>
            <action android:name="android.intent.action.VIEW"/>
            <category android:name="android.intent.category.DEFAULT"/>
            <category android:name="android.intent.category.BROWSABLE"/>
            <data
                android:scheme="ymappscheme"
                android:host="com.xiaogongqiu.app"
                android:path="/message"
                />
        </intent-filter>
相关推荐
huibin1478523692 小时前
热缓解学习记录
android·学习
Fungleo1069973 小时前
Flutter/Android Release 包连不上网?AndroidManifest INTERNET 权限排查实录
flutter
小田的博客5 小时前
SAP MM 供应商银行主数据更新报错!message R1228!
android·java·服务器
GitLqr6 小时前
Flutter 实战:为你的 App 增加桌面快捷方式 (Quick Actions)
flutter·app·全栈
一笑的小酒馆6 小时前
Android智能猫砂盆视频加载慢卡顿问题分析
android
FungLeo7 小时前
Flutter 把第三方 UI 库渐进迁回 Material 3:组件映射总表 + 四批次替换实战
flutter·ui
只会cv的小前端8 小时前
七巧低代码服务端脚本使用方法
android·低代码·rxjava
8 小时前
Android 自定义 View 实战:从零打造工业级全向摇杆控件(OmniJoystickView)
android·kotlin·自定义view·摇杆控件
雨白8 小时前
深入理解 Kotlin 协程 (十一):以逸待劳,探秘 select 多路复用与并发安全策略
android·kotlin
hunterandroid10 小时前
[Android 从零到一] Android 深度链接与 App Links:从 URI Scheme 到可验证的应用跳转
android