Hello @TIMAI2 , do all the above examples must have to display a permanent service notification. Or we can also send push notifications like fcm or one signal without display permanent service notification.
Yes, if you use the CreateProcess method, then a permanent notification needs to be displayed
Taifun
Is there a way to bypass this?
A simple way is just to not ask for post notification permission
Taifun
I guess this approach will not work on latest android devices.
Then the device wont be able to display push notifications. There is no other better option as of now, you may consider just updating the Itoo notification Id (123321
) using π MelonNotification β’ Various styled notifications + Itoo thereby reusing the notification.
Yes, correct
My answer was more about how to not display the persistent notification... this can be helpful if you use itoo without need to display any notifications as in the battery check example
Taifun
Hi, can I relate 4th example with what I said in last two comments of this post. I wish to download all emails and put it within a .txt file. Then I want to send selected emails to selected people using any keywords in the email - #18 by S.V_Arul_Shiju
@TIMAI2 then can you explain to me what all of the values mean in the list inside the ExecuteInternalScript
block?
Which example are you referring to, and what is not explained in the guide?
Actually I am not asking about the guide, I wanted to know what does each value in the list here actually mean:
This simply sets the connection values for the redis server to be used.
When using your own redis server you provide the url and the password (this is setup in the redis server, see the guide)
When using the MIT redis server you again provide the url (as indicated in the guide) and the token (found in the designer)
The number 6381
is the port that the redis server is assigned to, the code number 2 is for cloudDB
Hi, i have some problems with the procedure about the exemple number 4. I tried to do what did you say, but:
- i don't know which is the number that i have to write after /formResponse?entry.
Could you help me? - if i try to launch the apk on the phone and to press a button linked to the blocks about notification a notification arrives to me with a very long message with letters and numbers that i didn't catch... i'm sorry for my bad english
Learn how to use google forms prefilled links here:
Now updated to work with the latest itoo and melonNotifcation extensions. See the Summary post (#9) for more details.
I was going to use the firebase ona and was wondering if its safe, like, since rules are read and edit true, can't anyone view and edit it? And also is the api key in appinventor safe for production? Isn't it still viewable somewere in the source code of the apk?
If you have secure rules and firebase authentication for users in place, then there should be no issue with the API key or firebase url.
but isn't
"itoo": {
".read": true,
".write": true
?? if yes then everyone can see and edi that right? and if not then how do i make it view and edit it?
You can always use the user signin idtoken and set the itoo rules accordingly. The examples here, as stated are the very basics for what is required. You can expand on them and secure as required.
I worked up a method here
for the google sheets example, to send notifications to individual devices, based upon the uuid of the user. It is a basic example, but the same approach could possibly be applied to other methods in this topic.