File tree Expand file tree Collapse file tree
example/android/app/src/main/java/com/klaviyoreactnativesdkexample Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,12 +2,9 @@ name: CI
22
33on :
44 pull_request :
5- branches :
6- - master
7- - rel/*
85
96permissions :
10- contents : write
7+ contents : read
118
129jobs :
1310 lint :
Original file line number Diff line number Diff line change 11package com.klaviyoreactnativesdkexample
22
33import android.content.Intent
4- import android.net.Uri
54import android.os.Bundle
6- import android.util.Log
75import com.facebook.react.ReactActivity
86import com.facebook.react.ReactActivityDelegate
97import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
@@ -24,7 +22,6 @@ class MainActivity : ReactActivity() {
2422 override fun createReactActivityDelegate (): ReactActivityDelegate = DefaultReactActivityDelegate (this , mainComponentName, fabricEnabled)
2523
2624 override fun onCreate (savedInstanceState : Bundle ? ) {
27- Log .v(" KlaviyoSampleApp" , " MainActivity.onCreate()" )
2825 super .onCreate(savedInstanceState)
2926
3027 // Android Installation Step 5a: Depending on the state of your application when the notification is tapped,
@@ -34,8 +31,6 @@ class MainActivity : ReactActivity() {
3431 }
3532
3633 override fun onNewIntent (intent : Intent ? ) {
37- Log .v(" KlaviyoSampleApp" , " MainActivity.onNewIntent()" )
38- Log .v(" KlaviyoSampleApp" , " Launch Intent: " + intent.toString())
3934 super .onNewIntent(intent)
4035
4136 // Android Installation Step 5: Call handlePush when a push notification is tapped
You can’t perform that action at this time.
0 commit comments