vknow360
(Sunny Gupta)
October 1, 2023, 5:02pm
#27
Rogerio_Rios
(Professional Support)
October 1, 2023, 9:50pm
#28
Explain better. If I have a project with less than 5 extensions, can I not use this extension?
vknow360
(Sunny Gupta)
October 2, 2023, 1:06am
#29
Extension size is 3.4 mb. So normally there’s no need to use it in Kodular. It can be useful if following two conditions are met
you have premium account
firebase auth component is conflicting with extensions
1 Like
vknow360
(Sunny Gupta)
October 2, 2023, 1:07am
#30
Definitely you can’t use it without Premium.
Extension itself is more than 5 mb.
1 Like
vknow360
(Sunny Gupta)
October 7, 2023, 3:53am
#31
OneSignal setup tutorial:
4 Likes
Sandy1
(Sandy)
October 8, 2023, 4:43pm
#32
how to integrate this extension in kodular?
Taifun
October 8, 2023, 5:17pm
#33
Sandy1
(Sandy)
October 8, 2023, 5:35pm
#34
when i import this extension in kodular then show error and this works only in mit app inventor
Taifun
October 8, 2023, 6:00pm
#35
Sandy1:
then show error
What about revealing the error message?
Taifun
it not working for my application, i get this error
invoke: no method named `Init’ in class java.lang.Boolean
Note: You will not see another error reported for 5 seconds
vknow360
(Sunny Gupta)
October 14, 2023, 10:11am
#37
It will not work in companion.
Try in apk.
vknow360
(Sunny Gupta)
October 30, 2023, 3:59pm
#38
Alternative I’ll recommend as aix size is just 492 kb.
Not yet completely tested with Kodular but I am sure it’ll work.
Regarding OneSignal, I am waiting for updated proguard rules to minify aix size.
I use this extension but i got this error in playstore. any solution?
vknow360
(Sunny Gupta)
November 21, 2023, 3:21pm
#40
<meta-data android:name="com.google.android.gms.version" android:value="12451000"/>
Remove this line from main extension’s /files/component_build_infos.json
file using any Zip software.
How to use it with android 13? can you show me blocks?
vknow360
(Sunny Gupta)
December 5, 2023, 11:35am
#42
Do you know how to use it with android 12?
not actually, please show me blocks. thank you
vknow360
(Sunny Gupta)
December 6, 2023, 2:40am
#44
See first post at the top.
vknow360
(Sunny Gupta)
December 9, 2023, 8:43am
#45
ChangeLog Version 3
There was a minor change needed to send notif to all subs which I have done in v3.
Credits:
opened 04:05PM - 18 Nov 23 UTC
closed 04:32PM - 28 Nov 23 UTC
### How can we help?
I am unable to send push notification to Subscribed User… s from API but notifications can be sent from dashboard.
Error I am getting:
`{"id":"","errors":["All included players are not subscribed"]}
`
Code I used:
````
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
JSONObject object = new JSONObject();
object.put("app_id", "8c6cbe1c-****-****-****-c861915cbc4c");
JSONArray array = new JSONArray();
array.add("Active Users");
object.put("included_segments", array);
JSONObject object1 = new JSONObject();
object1.put("en", "Hello World!");
object.put("contents", object1);
JSONObject object2 = new JSONObject();
object2.put("en", "Hello!");
object.put("headings", object2);
System.out.println(object.toJSONString());
RequestBody body = RequestBody.create(mediaType, object.toJSONString());
Request request = (new Request.Builder()).url("https://onesignal.com/api/v1/notifications").post(body).addHeader("accept", "application/json").addHeader("Authorization", "Basic <API KEY>").addHeader("content-type", "application/json").build();
Response response = client.newCall(request).execute();
System.out.println(response.body().string());
````
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct
https://drive.google.com/drive/u/0/folders/14JIpANok8Uxvy8Ae97J38VA1CJKt3yMw
1 Like