Тёмный

SEND WHATSAPP MESSAGES AUTOMATICALLY | MAKING APPS THAT AUTOMATE THINGS | ANDROID PROGRAMMING 

Blue Logic
Подписаться 488
Просмотров 33 тыс.
50% 1

This video will teach you how to send multiple Whatsapp messages automatically in android programmatically. You can send bulk WhatsApp messages completely free using this technique without getting banned.
It's a part of the series called "Making App That AUTOMATE THINGS".
Here are the links related to the video
Code for isAccessibilityOn : Download below mentioned app and in material section all codes are available.
APK and Source Code - To get App and source Code
bit.ly/m/conta...

Опубликовано:

 

23 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 118   
@thebluelogic
@thebluelogic 3 года назад
If anyone need some help, please contact on my telegram t.me/shubham_shirse
@pabloballesteros3571
@pabloballesteros3571 3 месяца назад
user name not found
@armandthimoty9899
@armandthimoty9899 Год назад
can you show me code of function "isAccessibilityOn"? you skip that step on your video
@dreamappsstore1065
@dreamappsstore1065 3 года назад
The Accessibility service will get stop once I will closed the app. Do you know why? How to run Accessibility service in lifetime after enabling it?
@atmiyapatel7347
@atmiyapatel7347 2 года назад
why don't you mention code is paid so we don't west our time downloading your app and create account
@sritikamanjrekar
@sritikamanjrekar 3 года назад
After running the application I'm not getting the option of my application in accessibility downloaded service what should I do about that? And clicking back and entering all fields it prompts couldn't link the app what should I do?
@sagardeshmukh1835
@sagardeshmukh1835 3 года назад
have you got the ansswer
@sagardeshmukh1835
@sagardeshmukh1835 3 года назад
facing the same problem
@sritikamanjrekar
@sritikamanjrekar 3 года назад
@@sagardeshmukh1835 yes he said to check the code again. I'd check twice from his youtube videos didn't work. Create new project copy paste GitHub it works. may something is missing out in the video that's why we both are facing the same problem. hope my solution works for you too.
@sritikamanjrekar
@sritikamanjrekar 3 года назад
Those who have the same error as me can create a new project and copy-paste code from Github it works
@thebluelogic
@thebluelogic 3 года назад
Hello guys, this problem mostly happens due small spelling and other mistakes in declaration of accessibility service in manifest. So always check twice everything is correct or not.
@aldenorjovino7009
@aldenorjovino7009 3 года назад
Good afternoon, very good your video, but I can't see all of MainActivity, could you show the MainActivity code?
@0_0-0_0.
@0_0-0_0. Год назад
// To check if service is enabled private boolean isAccessibilitySettingsOn(Context mContext) { int accessibilityEnabled = 0; final String service = getPackageName() + "/" + WhatsAppAccessibilityService.class.getCanonicalName(); try { accessibilityEnabled = Settings.Secure.getInt( mContext.getApplicationContext().getContentResolver(), android.provider.Settings.Secure.ACCESSIBILITY_ENABLED); Log.v("hemu_check", "accessibilityEnabled = " + accessibilityEnabled); } catch (Settings.SettingNotFoundException e) { Log.e("hemu_check", "Error finding setting, default accessibility to not found: " + e.getMessage()); } TextUtils.SimpleStringSplitter mStringColonSplitter = new TextUtils.SimpleStringSplitter(':'); if (accessibilityEnabled == 1) { Log.v("hemu_check", "***ACCESSIBILITY IS ENABLED*** -----------------"); String settingValue = Settings.Secure.getString( mContext.getApplicationContext().getContentResolver(), Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES); if (settingValue != null) { mStringColonSplitter.setString(settingValue); while (mStringColonSplitter.hasNext()) { String accessibilityService = mStringColonSplitter.next(); Log.v("hemu_check", "-------------- > accessibilityService :: " + accessibilityService + " " + service); if (accessibilityService.equalsIgnoreCase(service)) { Log.v("hemu_check", "We've found the correct setting - accessibility is switched on!"); return true; } } } } else { Log.v("hemu_check", "***ACCESSIBILITY IS DISABLED***"); } return false; }
@Faisal-xi4li
@Faisal-xi4li Год назад
@@0_0-0_0. you can help me with the code I will pay you
@haskell3702
@haskell3702 2 года назад
Thank you for the video, but do you have a url to a public repository to download the code?
@TheFloo
@TheFloo Год назад
I tried to get access to your app to get the code, but it seems they are down. Would it be possible to provide the code still, over another method?
@jcayournewstyle182
@jcayournewstyle182 Год назад
I also want the code, I wrote to telegram but they don't respond
@techsolutions1521
@techsolutions1521 3 года назад
I want to make a app which sends the photo from my app to a whatsapp contact without even opening the whatapp it should directly send the photo without opening the whatsapp I tried finding solution on internet but was unsuccessful ..hope you help..thanks in advance
@mdave0905
@mdave0905 3 года назад
I am getting Execution failed for task error from using the contact picker library. I researched and it said it is because the minsdk for the library might be different than my app. How do i check minsdk for the library?
@Bisnis2000
@Bisnis2000 2 года назад
Great Tutorial, i hope same day can do like you done... btw.. can you share your background music???
@arabnology1
@arabnology1 4 года назад
how to make the same thing but with WhatsApp groups ?
@shamsherbhadur3214
@shamsherbhadur3214 3 года назад
Hi thanks in advance you make great logic , I wan't to implement same every thing working but message not auto send its required user action. Please help me
@MohamedGamal-xj8dq
@MohamedGamal-xj8dq 2 года назад
i have same problem , message not auto send
@MisaelSaenz
@MisaelSaenz 3 года назад
I do not distinguish what function you used to auto validate the sending of the message, so that oneself does not press the send button in whatsapp
@thebluelogic
@thebluelogic 3 года назад
Its in the Accessibility service class.
@alichohan4491
@alichohan4491 Год назад
@thebluelogic I wan't to implement same every thing working but message not auto send its required user action. Please help me
@devdootcompany5879
@devdootcompany5879 2 года назад
Please help on AAPT: error: attribute android:canRetriveWindowContent not found
@mmz31
@mmz31 3 года назад
Getting Error : AAPT: error: attribute android:accessibilityFeebackType not found.
@aanandkhara
@aanandkhara 3 года назад
Very useful. Why not make an app and circulate. Its complicated for a common user to build
@pratyakshsrivastava2681
@pratyakshsrivastava2681 Год назад
I have successfully build this, needed to modify some code and boom it's working.
@Faisal-xi4li
@Faisal-xi4li Год назад
Can you help me with the code I will pay you
@BongJOY
@BongJOY 3 года назад
It's not working
@goldmoneytips
@goldmoneytips 3 года назад
where is code sir
@busyapp9563
@busyapp9563 2 года назад
What does MySMSService extends ?
@historyquicks5400
@historyquicks5400 3 года назад
Your Accessibility Works Good but if i have an image it wont Auto Send. What do i need to change in code to allow this
@thebluelogic
@thebluelogic 3 года назад
In last video, i have mentioned that there's some code that need to remove from accessibility service and also mobile number should be saved in contacts
@bitxngaming7682
@bitxngaming7682 Год назад
can you pls send the source code at this mail -> bitandutta6345@gmail.com.
@gabrieltrifa3434
@gabrieltrifa3434 Год назад
Hi! Where can I buy the source code?
@thebluelogic
@thebluelogic Год назад
nutshell.geniobits.com/courses/android-automation/
@DeepakGonge
@DeepakGonge 4 года назад
It is awesome app, but only issue is it sends message very slowly.
@thebluelogic
@thebluelogic 4 года назад
Yes, because i made it more general to work on most of the devices. As i showed in the tutorial you can decrease thread sleep time so that it will work as fast as you want.
@sanjeevmenon4382
@sanjeevmenon4382 2 года назад
Is there a android app on Google play store based on this video instruction? Or any developer who can help me? I need this automated whatsapp messages solution at the earliest.
@jcayournewstyle182
@jcayournewstyle182 Год назад
Hello, did you manage to solve the code?
@sailimu
@sailimu 2 года назад
Could you share project link, plzz
@khadarsk9099
@khadarsk9099 2 года назад
Can we do this using flutter?
@asela5809
@asela5809 2 года назад
@Blue Logic Can we use this method to viber messaging onlynwith change url of WhatsApp to Viber
@SadiqueKhan449
@SadiqueKhan449 2 года назад
You have to find correct url for it
@butiranhikmahilahi2946
@butiranhikmahilahi2946 3 года назад
How to send data to accessibility service?
@dewoancient7571
@dewoancient7571 3 года назад
this video is very useful. I've tried it and it works. Thank you very much.
@halobuatsaya
@halobuatsaya 3 года назад
Would you share the tutorial mr.
@prajil_
@prajil_ 3 года назад
Is this only for rooted device??
@unaibmusani263
@unaibmusani263 3 года назад
how we can done the same for WhatsApp group?
@thebluelogic
@thebluelogic 3 года назад
I'll surely make one video on that topic
@unaibmusani263
@unaibmusani263 3 года назад
Thanks@@thebluelogic. Waiting for that :)
@mquispe
@mquispe 4 года назад
Good video! I developed my program based on your video but it only works in debug mode. Would you know what the problem is? Thank you anyway.
@thebluelogic
@thebluelogic 4 года назад
That's unexpected. It should work in production too. Please share your logs, that might help to figure out the problem.
@halobuatsaya
@halobuatsaya 3 года назад
I cannot login on nutshell
@MdSabbir-wr9bb
@MdSabbir-wr9bb Год назад
Sir please make a vedio that auto dail ussd code
@syukronhardianto4926
@syukronhardianto4926 4 года назад
Can it work to send on multi whatsapp number, like broadcast?
@thebluelogic
@thebluelogic 3 года назад
Yes
@rahul7400
@rahul7400 3 года назад
Bro is this not against any google play policy?
@SadiqueKhan449
@SadiqueKhan449 2 года назад
It is
@aminedaikha2928
@aminedaikha2928 3 года назад
is not working for me, any help plzzz.
@pratyakshgaming5707
@pratyakshgaming5707 Год назад
Buy Source code from me .. its fully functional...
@خسروترکمان-خ6غ
@خسروترکمان-خ6غ 2 года назад
Hello tanks Question: Is it possible to send a photo?
@thebluelogic
@thebluelogic Год назад
Yeah, there is another video explaining that
@Faisal-xi4li
@Faisal-xi4li Год назад
@@thebluelogichey you can help me with the code I will pay you
@Faisal-xi4li
@Faisal-xi4li Год назад
⁠hey you can help me with the code I will pay you ​@@thebluelogic
@bigboii8046
@bigboii8046 3 года назад
Do you know how to get this to work with WhatsApp Business?
@thebluelogic
@thebluelogic 3 года назад
Change package name
@bigboii8046
@bigboii8046 3 года назад
@@thebluelogic I've tried that but It did not work. It opens business WhatsApp but does not send
@thebluelogic
@thebluelogic 3 года назад
You need to change package name in Accessibility service configuration too
@hairulanam9450
@hairulanam9450 4 года назад
How if i use WhatsApp Business to use this code?
@thebluelogic
@thebluelogic 4 года назад
Change the whatsapp package name with whatsapp web
@hairulanam9450
@hairulanam9450 4 года назад
@@thebluelogic yes I did, but the send button doesn't click
@bigboss1408
@bigboss1408 4 года назад
Good job
@wasiq921
@wasiq921 3 года назад
is it possible if we want to send message from other whatsapp from other phone with this app?
@thebluelogic
@thebluelogic 3 года назад
Theoretically yes
@sanjeevbhagat978
@sanjeevbhagat978 3 года назад
zara dhand se banao. warna mat banao.
@niteshgtel
@niteshgtel 3 года назад
can i send msg using api sir plj help
@thebluelogic
@thebluelogic 3 года назад
Yes
@niteshgtel
@niteshgtel 3 года назад
@@thebluelogic how sir
@thebluelogic
@thebluelogic 3 года назад
I'll make some video on it. Its complex to answer in here.
@niteshgtel
@niteshgtel 3 года назад
@@thebluelogic can u make application and send to me source sir plj
@niteshgtel
@niteshgtel 2 года назад
@@thebluelogic ?? are you creat ?
@miguelrodriguez2349
@miguelrodriguez2349 4 года назад
awesome
@HaniStudio
@HaniStudio Год назад
Create bulk whatsapp message sender
@techkraftworld
@techkraftworld Год назад
17:44
@Faisal-xi4li
@Faisal-xi4li Год назад
What is this timeline
@youtubecomedy366
@youtubecomedy366 2 года назад
Sir AccessibilityOn code ?
@0_0-0_0.
@0_0-0_0. Год назад
Same problem
@Faisal-xi4li
@Faisal-xi4li Год назад
@@0_0-0_0.hey you have the code?
@mikiyasseiyfu1697
@mikiyasseiyfu1697 4 года назад
Description
@MadhuKumar-hi2qs
@MadhuKumar-hi2qs 3 года назад
New subscriber
@ajayaryan7906
@ajayaryan7906 4 года назад
😍😍😍👍👌
@mikiyasseiyfu1697
@mikiyasseiyfu1697 4 года назад
Description
Далее
Wait for winner 🏆 😂 #shorts
00:42
Просмотров 6 млн
Building a Mobile App in 2024: The BEST Technologies
13:31
؟ Docker ليه بنستخدم 💙
18:52
Просмотров 77 тыс.
RecyclerView | Everything You Need to Know
25:07
Просмотров 136 тыс.
How to Automate Android with the Automate App
10:37
Просмотров 311 тыс.
Wait for winner 🏆 😂 #shorts
00:42
Просмотров 6 млн