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

Поділитися
Вставка
  • Опубліковано 19 вер 2024
  • 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...

КОМЕНТАРІ • 118

  • @dreamappsstore1065
    @dreamappsstore1065 3 роки тому +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?

  • @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

  • @armandthimoty9899
    @armandthimoty9899 Рік тому +2

    can you show me code of function "isAccessibilityOn"? you skip that step on your video

  • @atmiyapatel7347
    @atmiyapatel7347 2 роки тому +2

    why don't you mention code is paid so we don't west our time downloading your app and create account

  • @Bisnis2000
    @Bisnis2000 2 роки тому

    Great Tutorial, i hope same day can do like you done... btw.. can you share your background music???

  • @aldenorjovino7009
    @aldenorjovino7009 3 роки тому +4

    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

  • @dewoancient7571
    @dewoancient7571 3 роки тому +3

    this video is very useful. I've tried it and it works. Thank you very much.

    • @halobuatsaya
      @halobuatsaya 3 роки тому +1

      Would you share the tutorial mr.

  • @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.

  • @sritikamanjrekar
    @sritikamanjrekar 3 роки тому +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 роки тому +1

      have you got the ansswer

    • @sagardeshmukh1835
      @sagardeshmukh1835 3 роки тому +1

      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 роки тому +1

      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.

  • @thebluelogic
    @thebluelogic  3 роки тому +1

    If anyone need some help, please contact on my telegram
    t.me/shubham_shirse

  • @BongJOY
    @BongJOY 3 роки тому +1

    It's not working

  • @haskell3702
    @haskell3702 2 роки тому +1

    Thank you for the video, but do you have a url to a public repository to download the code?

  • @TheFloo
    @TheFloo Рік тому +1

    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

  • @aanandkhara
    @aanandkhara 3 роки тому

    Very useful. Why not make an app and circulate. Its complicated for a common user to build

  • @shamsherbhadur3214
    @shamsherbhadur3214 3 роки тому +1

    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

  • @DeepakGonge
    @DeepakGonge 4 роки тому +1

    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.

  • @arabnology1
    @arabnology1 4 роки тому +1

    how to make the same thing but with WhatsApp groups ?

  • @historyquicks5400
    @historyquicks5400 3 роки тому +1

    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.

  • @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?

  • @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

  • @gabrieltrifa3434
    @gabrieltrifa3434 Рік тому +1

    Hi! Where can I buy the source code?

    • @thebluelogic
      @thebluelogic  Рік тому

      nutshell.geniobits.com/courses/android-automation/

  • @bigboss1408
    @bigboss1408 4 роки тому +1

    Good job

  • @mquispe
    @mquispe 4 роки тому +2

    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.

  • @mmz31
    @mmz31 3 роки тому

    Getting Error : AAPT: error: attribute android:accessibilityFeebackType not found.

  • @sailimu
    @sailimu 2 роки тому

    Could you share project link, plzz

  • @devdootcompany5879
    @devdootcompany5879 2 роки тому

    Please help on AAPT: error: attribute android:canRetriveWindowContent not found

  • @miguelrodriguez2349
    @miguelrodriguez2349 4 роки тому +1

    awesome

  • @goldmoneytips
    @goldmoneytips 3 роки тому +1

    where is code sir

  • @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.

  • @busyapp9563
    @busyapp9563 2 роки тому

    What does MySMSService extends ?

  • @unaibmusani263
    @unaibmusani263 3 роки тому +1

    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 :)

  • @asela5809
    @asela5809 2 роки тому

    @Blue Logic
    Can we use this method to viber messaging onlynwith change url of WhatsApp to Viber

  • @sanjeevbhagat978
    @sanjeevbhagat978 3 роки тому +1

    zara dhand se banao. warna mat banao.

  • @prajil_
    @prajil_ 3 роки тому

    Is this only for rooted device??

  • @butiranhikmahilahi2946
    @butiranhikmahilahi2946 3 роки тому

    How to send data to accessibility service?

  • @HaniStudio
    @HaniStudio Рік тому

    Create bulk whatsapp message sender

  • @khadarsk9099
    @khadarsk9099 2 роки тому

    Can we do this using flutter?

  • @MdSabbir-wr9bb
    @MdSabbir-wr9bb Рік тому

    Sir please make a vedio that auto dail ussd code

  • @halobuatsaya
    @halobuatsaya 3 роки тому

    I cannot login on nutshell

  • @rahul7400
    @rahul7400 3 роки тому

    Bro is this not against any google play policy?

  • @user-ew5yt1kd7g
    @user-ew5yt1kd7g 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

  • @alichohan4491
    @alichohan4491 Рік тому

    @thebluelogic
    I wan't to implement same every thing working but message not auto send its required user action. Please help me

  • @techkraftworld
    @techkraftworld Рік тому

    17:44

  • @aminedaikha2928
    @aminedaikha2928 3 роки тому

    is not working for me, any help plzzz.

  • @syukronhardianto4926
    @syukronhardianto4926 3 роки тому

    Can it work to send on multi whatsapp number, like broadcast?

  • @ajayaryan7906
    @ajayaryan7906 4 роки тому +1

    😍😍😍👍👌

  • @mikiyasseiyfu1697
    @mikiyasseiyfu1697 4 роки тому

    Description

  • @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

  • @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

  • @wasiq921
    @wasiq921 3 роки тому

    is it possible if we want to send message from other whatsapp from other phone with this app?

  • @youtubecomedy366
    @youtubecomedy366 2 роки тому

    Sir AccessibilityOn code ?

  • @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 ?

  • @MadhuKumar-hi2qs
    @MadhuKumar-hi2qs 3 роки тому +1

    New subscriber

  • @mikiyasseiyfu1697
    @mikiyasseiyfu1697 4 роки тому

    Description