# rammus
**Repository Path**: caiuskong/rammus
## Basic Information
- **Project Name**: rammus
- **Description**: No description available
- **Primary Language**: Java
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-08-13
- **Last Updated**: 2021-08-13
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Rammus 
阿里云推送Flutter插件.
> Rammus这个项目是一位网友*付费*开发的。在此特别感谢这位朋友。
> 能将其开源出来,是要感谢这位朋友的。
> 开源不易,时间有限,可能有很多功能还没有完成,需要大家共同维护,请各位朋友理解。
> 有问题可以提,但请嘴下积德,开源不意味着开源作者欠某些人的。
> 欢迎加入QQ群:892398530共同交流。
欢迎各位使用者PR。
## 麻烦先读一下官方文档
[麻烦读下推送官方文档](https://help.aliyun.com/document_detail/51056.html?spm=a2c4g.11186623.6.623.47bf59abvM9j25)
[Flutter使用Rammus实现阿里云推送](https://my.oschina.net/wupeilin/blog/3108695)
## Android上的配置
### 设置appKey,appSecret
在`AndroidManifest.xml`设置appKey,appSecret
```
```
> 也可以动态设置,具体方式看官方文档
### 初始化SDK
好吧,由于SDK的限制,用户只能在`Application`中的`onCreate`里初始化:
```
RammusPlugin.initPushService(this)
```
### 设置第三方推送通道
在`AndroidManifest.xml`设置第三方推送的相关信息
```
```
在app build.gradle文件中添加第三方推送依赖
```
implementation 'com.aliyun.ams:huawei-push:2.6.3.305'
implementation 'com.aliyun.ams:huawei-push-base:2.6.3.305'
implementation 'com.google.firebase:firebase-messaging:17.6.0'
implementation 'com.aliyun.ams:meizu-push:3.8.7.1'
implementation 'com.aliyun.ams:third_vivopush:2.9.0.1'
```
> Application在Android原生项目里。不会创建的自行百度。
## iOS上的配置
稍微有点麻烦。
### 添加一下源
在项目中的`PodFile`前面加上下面的两句话
```ruby
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/aliyun/aliyun-specs.git'
```
### 添加一下info.plist
请参考[这个链接](https://help.aliyun.com/document_detail/30072.html?spm=a2c4g.11186623.6.630.396f40b1t4SLCb)把
把`info.plist`添加到你的项目中。
到此ios配置完了。
### 关于iOS通知栏
如果你想推送通知的时候在通知栏上有显示请确保调用了下面的代码:
```dart
rammus.configureNotificationPresentationOption();
```