Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
P
PushPlatformDemo
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pengjunjing
PushPlatformDemo
Commits
1762b430
Commit
1762b430
authored
Jun 09, 2021
by
pengjunjign
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合入打包的分支
parent
1bade55d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
13 deletions
+5
-13
proguard-rules.pro
app/proguard-rules.pro
+3
-0
MyApplication.kt
...src/main/java/com/laihua/pushtestproject/MyApplication.kt
+2
-13
No files found.
app/proguard-rules.pro
View file @
1762b430
...
...
@@ -31,3 +31,6 @@
app/src/main/java/com/laihua/pushtestproject/MyApplication.kt
View file @
1762b430
package
com.laihua.pushtestproject
import
android.app.Application
import
android.content.Intent
import
android.net.Uri
import
android.util.Log
import
com.laihua.push.PushManager
import
com.laihua.push.platform.InitParam
import
com.laihua.push.utils.LogUtils
...
...
@@ -14,17 +11,9 @@ import com.laihua.push.utils.LogUtils
* Description:
*/
class
MyApplication
:
Application
()
{
private
val
TAG
=
"MyApplication"
override
fun
onCreate
()
{
super
.
onCreate
()
val
intent
=
Intent
(
this
,
MainActivity
::
class
.
java
)
intent
.
setData
(
Uri
.
parse
(
"vpushscheme://com.vivo.push.notifysdk/detail?"
))
intent
.
putExtra
(
"key1"
,
"xxx"
)
val
toUri
=
intent
.
toUri
(
Intent
.
URI_INTENT_SCHEME
)
Log
.
i
(
TAG
,
"onCreate: $toUri"
)
PushManager
.
instance
.
initContext
(
this
)
//vivo的配置信息直接在manifest配置,华为的配置信息在agconnect-services.json文件
val
autoInitPushSdk
=
PushManager
.
instance
.
autoInitPushSdk
(
...
...
@@ -32,7 +21,7 @@ class MyApplication : Application() {
InitParam
(
"220c8dc643ce4a709b116a0aa26e6bf4"
,
"0305238c1c6949c38caa1fdd8070b4aa"
),
InitParam
(
"2882303761519924093"
,
"5121992433093"
),
InitParam
(
"141361"
,
"f3e78d580c7d46c295263b3dde94ca72"
),
{
platform
,
it
->
{
LogUtils
.
i
(
"推送SDK初始化成功:$it"
)
PushManager
.
instance
.
addTopic
(
"test_topic"
)
PushManager
.
instance
.
setAlias
(
"test_alias"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment