Android AIDL Explained in Detail with Practical in 15 Mins

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024
  • A course on AIDL, enrol in case you are interested.
    www.udemy.com/...
    aospguru.com/ Android AIDL Explained in Detail with Practical
    #AIDL
    #Theory
    AIDL Theory Part 1
    In this lecture, you will learn AIDL in detail.
    #Practical
    AIDL Lab Part 1 - Create Server App
    In this first part of the tutorial, we will create an AIDL server. The server app hosts a Bound Service and contains the logic to return random colours to its client.
    AIDL Lab Part 2 - Create Client App
    In this second part of the tutorial, we will create an AIDL client. The server app hosts a Bound Service and contains the logic to return random colours to its client. The client app calls the service and changes the button's colour within the Main activity.
    Github Link
    Download the project from
    github.com/tol...
    github.com/tol...
    For structured courses on aosp, please use the below links. Good Luck.
    Android Mobile OS Development
    ---------------------------------------------------
    www.udemy.com/...
    Android Automotive Development
    -----------------------------------------------------
    www.udemy.com/...
    Android Deep Analysis - Startup and Window Management
    -----------------------------------------------------------------
    www.udemy.com/...

Комментарии • 57

  • @sumithpattar4335
    @sumithpattar4335 2 года назад +7

    One of the best and clearly explained AIDL concept video 👍🙂

  • @aamirhoda7363
    @aamirhoda7363 Год назад +1

    Just today for the 1st time I heard about AIDL in my life & came here searching for it.
    This video was just simply AMAZING!! 🤩🤩🤩🤩
    This video explained AIDL very clearly, & made it look so simple.
    THANK YOU very much for such a wonderful explanation.

  • @pratikchawke
    @pratikchawke 2 года назад +2

    Perfectly Explained ! Superb 👍

  • @akhilkrishnan615
    @akhilkrishnan615 Год назад +7

    Clearly explained. Nice video, bro! 👍
    However, in the AIDL Server manifest file, we need to include android:process=":remote" attribute inside service tag for the latest Android version; otherwise, the service won't get bound in the client app. I lost a few hours trying to find that fix. Hopefully, this helps.

    • @ebycloudins
      @ebycloudins Год назад

      I am facing the same issue. Tried adding the process=":remote" still binding is not working

    • @Subratsss
      @Subratsss Год назад

      @@ebycloudins @Akhil Not able to Bind. Any Solution?

    • @rishankyashu1121
      @rishankyashu1121 Год назад +5

      ​@@ebycloudins Add this line in your client app manifest file:

    • @aosp_android_tollcafe
      @aosp_android_tollcafe  Год назад +2

      @Akhil Krishnan​ @rishank yashu , Thanks Guys. Will update Github.

    • @Isagiyochi395
      @Isagiyochi395 Год назад

      @@aosp_android_tollcafe can you please update this soon 🙏

  • @rugvedinamdar
    @rugvedinamdar 2 года назад +2

    Very well expalined ! Keep uo the awesome work.👍

  • @suniljaiswal9150
    @suniljaiswal9150 2 года назад +2

    Great Explanation...superb

  • @JJSS90
    @JJSS90 Год назад

    Well done brother, you did what documentation is not able to do easily. Keep it up👍

  • @noobgamer1615
    @noobgamer1615 Год назад +2

    really good explanation

  • @hosseinmirzazadeh290
    @hosseinmirzazadeh290 Год назад +1

    Thank you soooooo soooooo much for the great explanation 👍🏻❤

  • @henrytan5707
    @henrytan5707 2 года назад +2

    Very good, at least I have managed to understand it.

    • @oliveryt7168
      @oliveryt7168 2 года назад

      I am not a pro, nor a beginner in coding, but this isnt the easiest topic... rather abstract and has many dependencies that arent easy to understand... A little struggle is totally okay..

  • @oliveryt7168
    @oliveryt7168 2 года назад +1

    Very helpful!!

  • @SvScibi
    @SvScibi 4 месяца назад

    Very nicely explained

  • @luciodarcon
    @luciodarcon Год назад

    Very good man. Ty

  • @fghinty7623
    @fghinty7623 2 года назад +1

    Amazing. Thank you so much

  • @bisnisakhirat9945
    @bisnisakhirat9945 2 года назад +2

    Hi this is really interesting, could AIDL open possibility for an app have addons/extension/plugins from 3rd party developer? just like wordpress, everybody able to create addons, and when user install the addons, our parent app will have additional feature and UI?

    • @aosp_android_tollcafe
      @aosp_android_tollcafe  2 года назад +1

      AIDL is only android internal communication between different Android Process with in the OS. afaik it does not support external sources. But there are other ways to achieve these kind functionality at the app level.

  • @bjccmeh
    @bjccmeh 2 года назад +1

    Thanks for this! Can you fix your playlists? I think they are not managed accordingly per topic. Anyways, keep up the good work!

    • @aosp_android_tollcafe
      @aosp_android_tollcafe  2 года назад

      Thanks, Bro. Glad that it helped. I will organize the contents of the channel soon.

  • @lotaviods
    @lotaviods Год назад

    If i have two clients pointing to the same server, will server be just one process or will be one for each client?

  • @bhushan5302
    @bhushan5302 Год назад

    great , thanks

  • @pratyush1
    @pratyush1 Год назад

    Please Help!!! How to rename AIDL directory in client app. Refactoring is performing the renaming operation throughout the project.

  • @shubhamkumargupta3478
    @shubhamkumargupta3478 6 месяцев назад

    Awesome

  • @joemamauwu
    @joemamauwu 11 месяцев назад

    would prefer the entire ide to be seen because some parts are cut out

  • @equaliser19
    @equaliser19 Год назад

    thanks bro

  • @viveknishad8280
    @viveknishad8280 Год назад

    Hi in my case when I try to create AIDL file but stub class is not generate .

  • @Isagiyochi395
    @Isagiyochi395 Год назад +1

    For some reason my client can’t seem to find the intent from my server. I did the service and the client main activity in kotlin but used the android open source to help. I’m pretty sure that my client connects to my server and I can run the client but when I click the button it doesn’t change color. I check the Logcat and it says can’t find intent. Please help me I am so confused I have been stuck for a week on this problem

    • @aosp_android_tollcafe
      @aosp_android_tollcafe  Год назад

      Could you please check the update from Akhil Krishnan below. May be its the same issue.
      1. We need to include android:process=":remote" attribute inside service tag for the latest Android version; otherwise, the service won't get bound in the client app. I lost a few hours trying to find that fix. Hopefully, this helps.
      2. Add this line in your client app manifest file:

    • @Isagiyochi395
      @Isagiyochi395 Год назад

      @@aosp_android_tollcafe for step 1 when I include the android:process=“:remote” where am I adding that…the way I call the intent in kotlin is (in my client Main activity):
      Val intent = Intent(“AIDLCOLORSERVICE”)
      Intent.setPackage(“com.example.aidlserver”)
      I will add step 2 to my intent but where do I add step one?

    • @Isagiyochi395
      @Isagiyochi395 Год назад

      @@aosp_android_tollcafe when I add
      It says element queries isn’t allowed here and and when I try to run it it gives an error

    • @Isagiyochi395
      @Isagiyochi395 Год назад

      @@aosp_android_tollcafe one more thing it says my server keeps stopping when I run the app on the client. I think this is for sure the issue

    • @bmax-intel
      @bmax-intel 2 месяца назад

      Also make sure your server app has package name in manifest

  • @oluwasegunilori5564
    @oluwasegunilori5564 2 года назад +1

    Must the server app be running before communication from the client app

  • @oocoou
    @oocoou Год назад

    hello ,i have some problem in use the aidl, when i in client use the service, the service object is null

  • @Subratsss
    @Subratsss Год назад +2

    Not able to bind. Any modification in code

    • @mustafaylmaz3370
      @mustafaylmaz3370 Год назад +1

      Same here. I've been trying for a few days
      Edit:
      It is about targetSdk. targetSdk must be 28. I tried 32 and 33 it didn't work but it work with 28. Anyone knows how can we use this in 32 or 33 targetSdk?

  • @yhm2046
    @yhm2046 Год назад

    I can't rename the package name is 8:55, I try many times but it still is clinet not change to service, my android studio is Android Studio Electric Eel | 2022.1.1 Patch 1, please help me!

  • @GauravKhare89
    @GauravKhare89 2 года назад +1

    In my case the java (generated) never shows up

    • @aosp_android_tollcafe
      @aosp_android_tollcafe  2 года назад

      Make sure to use Android view in Project Pane. May be you are using Project view which does not show it. 👍

  • @marcinziajkowski3870
    @marcinziajkowski3870 2 года назад +2

    Very good tutorial.
    Java is so fu**ed up.

  • @WSteve-hu6cn
    @WSteve-hu6cn 8 месяцев назад

    chetta .. ! natil evideya...?

  • @jawad1257
    @jawad1257 2 года назад +1

    Code link not working.

  • @prasannakumaranisetti2350
    @prasannakumaranisetti2350 Год назад

    I am not able to install the apk. someone please help.