Dr. Parag Shukla
Dr. Parag Shukla
  • Видео 444
  • Просмотров 1 859 750
Root an Android Studio AVDs - Practical Demo on Root Android Studio Emulator with API 30
This video step by step demonstrates how to root an android studio emulator. This video is practically demonstrated on Android Emulator with API 30.
Step-1 Start Your Android Emulator
Step-2 In browser go to the URL github.com/newbit1/rootAVD
Click the Code button and then Click "Download ZIP"
Step-3 Extract the Downloaded folder move to directory rootAVD-master using cd command in command prompt
Step-4 Run the command rootAVD.bat ListAllAVDs
you will get the list of many android versions, execute correct one for your emulator
It will shutdown your emulator automatically.
Step-5 From Android Studio, Device Manager Click Cold Boot Now
Step-6 In Command Prompt write adb shell and write su command...
Просмотров: 9 316

Видео

ADB Commands - devices, push, pull and remount with practical demo
Просмотров 940Год назад
This video practically demonstrates how to push the file from computer to android emulator and how to pull the file from android emulator to computer. It also demonstrates the how to make system partition in writable mode. adb devices - will return the list of emulator running adb push source_path dest_path (Source_path - Path of Computer, Dest_path - Path of Emulator) adb pull source_path dest...
Solve ADB Error : adb is not recognized as an internal of external command - Practical Demo
Просмотров 878Год назад
Whenever you are getting an error like this 'adb' is not recognized as an internal or external command, operable program or batch file then check the following things 1. Make sure that you have installed emulators either android emulator or Genymotion emulator 2. Make sure that you are running adb.exe from full path 3. path to adb.exe is set in the environment variable. ADB Path of Android Emul...
Extract the source code from Facebook Lite Android Application - Decompile Dalvik bytecode to java
Просмотров 1,4 тыс.Год назад
How to extract the source code from Android Application APK file - Decompilation from Byte Code to Java This video step by step extracts the source code from facebook lite application. To extract the source code I have used the JADX tool and extracted the android manifest and activities, providers, receivers and service information. I used the following steps to extract the source code. Step-1 ...
Take the Cyber Security Pledge to Stay Safe Online and Get a free Certificate from Govt of India
Просмотров 645Год назад
This video demonstrates step by step how to take the Cyber Security Pledge to build the Safe Online Environment and get the official certificate from the Ministry of Electronics & Information Technology Govt of India For Learning More about Programming Subscribe to My Channel: ruclips.net/user/drparagshukla
SQL Query to Swap content of two column using Update Statement
Просмотров 896Год назад
This video practically demonstrates how to swap the content of two columns using update statement For Learning More about Programming Subscribe to My Channel: ruclips.net/user/drparagshukla
Database System Trigger to store information of logon and logoff of every user - Practical Demo
Просмотров 997Год назад
This video practically demonstrates how to create the system trigger database trigger to store information of log on and logoff of every user in the database. Write a Database System Trigger in Oracle which stores the logon and logoff information of every users in the database. Database Trigger *) Defined by the DBA *) Work for every users For Learning More about Programming Subscribe to My Cha...
Print Happy Dussehra pattern using nested for loops in Java
Просмотров 1,7 тыс.Год назад
This video practically demonstrates how to print the happy dussehra pattern using nested loop in java. #happydussehra #dussehra #nestedforloop #forloop If you want to understand how to write this type of pattern then you may refer following video. Link: ruclips.net/video/DB8mqlP8rys/видео.html If you want to build your logic then you can watch the following playlist. ruclips.net/p/PLATOxdAcWIvP...
System Trigger - Schema Trigger to get information of Log On in PLSQL Oracle - Practical Demo
Просмотров 952Год назад
This video practically demonstrates how to implement the schema trigger to get information of logon to schema in specific table. For Learning More about Programming Subscribe to My Channel: ruclips.net/user/drparagshukla
Android Java - Steps to Request, Check for Permission - Practical Demo
Просмотров 996Год назад
This video practically demonstrates step by step how to request and check for permission in android application. Step-1 Write the permission in AndroidManifest.xml Step-2 Check for the self permission. Step-3 If user has not granted the permission, then request for the permission Step-4 Override the function onRequestPermissionResult for Allow or Deny functionality For Learning More about Progr...
Instead of Trigger in PLSQL Oracle - Part-2 (Practical Demo)
Просмотров 462Год назад
Before watching this video, if you have not watch the part-1 of instead of trigger then please watch the part-1 first and then watch the part-2. Link for Part-1 of Instead of Trigger - ruclips.net/video/Doetnt5j7vk/видео.html This video practically demonstrates how to use instead of trigger in plsql to insert and update the record of the base table instead of view. Perform update into the base ...
Instead of trigger in PLSQL Oracle (Part-1) - Practical Demo
Просмотров 906Год назад
Instead of trigger in PLSQL Oracle to perform the insert or update on base table rather than on view. To solve the error of cannont modify more than one base table through a join view you can create the instead of trigger. INSTEAD OF DOING INSERT OR UPDATE ON VIEW PERFORM THE INSERT OR UPDATE ON ACTUAL BASE TABLE. Error: cannot modify more than one base table through a join view Solution: Creat...
Java - Print Happy Navratri Pattern using Nested Loops
Просмотров 1 тыс.Год назад
Print Happy Navratri Pattern in Java using Nested Loops #navratri #happynavratri #loop #programming For Learning More about Programming Subscribe to My Channel: ruclips.net/user/drparagshukla
Trigger which allows to perform DML operations only during business hours & between MONDAY TO FRIDAY
Просмотров 446Год назад
This video practically demonstrates how to develop the DML trigger in oracle which allows to perform Insert or Update or Delete only during business hours that is 9:00 AM to 5:00 PM and between MONDAY TO FRIDAY. This is the practical demonstration of DML Holiday Trigger in Oracle For Learning More about Programming Subscribe to My Channel: ruclips.net/user/drparagshukla
Android Java - Implicit Intent and Explicit Intent Practical Demo
Просмотров 2 тыс.Год назад
This video practically demonstrates how to implement the functionality of implicit and explicit intent in android java. Following implicit intent shown in this video practically Write any URL and Open Website in Browser Write any Number and open Dial Pad Write any Location and Open same in Google Map Write any Text and share same with the other apps Open another activity of your application usi...
Trigger to store information of employee into log whenever DML operation performed (Trigger Demo-3)
Просмотров 842Год назад
Trigger to store information of employee into log whenever DML operation performed (Trigger Demo-3)
DML Trigger - To set the value of one column based on another column - PLSQL Oracle (Trigger Demo-2)
Просмотров 1,3 тыс.Год назад
DML Trigger - To set the value of one column based on another column - PLSQL Oracle (Trigger Demo-2)
DML Trigger - To raise error when user enter salary less than 2000 - PLSQL Oracle (Trigger Demo-1)
Просмотров 1,5 тыс.Год назад
DML Trigger - To raise error when user enter salary less than 2000 - PLSQL Oracle (Trigger Demo-1)
Java - Overloading of main function - Practical Demo
Просмотров 127Год назад
Java - Overloading of main function - Practical Demo
Java - Print Happy Engineer Day in using Nested Loops - Practical Demo
Просмотров 370Год назад
Java - Print Happy Engineer Day in using Nested Loops - Practical Demo
PLSQL user define function to convert the date into desired format (UDF Demo-9)
Просмотров 288Год назад
PLSQL user define function to convert the date into desired format (UDF Demo-9)
Print Happy Programmer Day using Nested Loops in C - Practical Demo
Просмотров 1,6 тыс.Год назад
Print Happy Programmer Day using Nested Loops in C - Practical Demo
PLSQL user defined function to check whether given string is lower or not (UDF Demo-8)
Просмотров 214Год назад
PLSQL user defined function to check whether given string is lower or not (UDF Demo-8)
PLSQL user defined function to find given no is manager or not (UDF Demo-7)
Просмотров 318Год назад
PLSQL user defined function to find given no is manager or not (UDF Demo-7)
PLSQL user defined function to validate the password using Regular Expression (UDF Demo-6)
Просмотров 673Год назад
PLSQL user defined function to validate the password using Regular Expression (UDF Demo-6)
PLSQL user defined function to validate the email address using regular expression (Udf Demo-5)
Просмотров 732Год назад
PLSQL user defined function to validate the email address using regular expression (Udf Demo-5)
PLSQL User defined function to find maximum salary of employee based on given deptno (UDF Demo-4)
Просмотров 710Год назад
PLSQL User defined function to find maximum salary of employee based on given deptno (UDF Demo-4)
PLSQL function to draw line based on given character and length (User defined function demo-3)
Просмотров 599Год назад
PLSQL function to draw line based on given character and length (User defined function demo-3)
PLSQL Package with procedure and function - Practical Demo (Oracle)
Просмотров 8 тыс.Год назад
PLSQL Package with procedure and function - Practical Demo (Oracle)
PLSQL function to find factorial of given no (User defined function Demo-2)
Просмотров 2,7 тыс.Год назад
PLSQL function to find factorial of given no (User defined function Demo-2)

Комментарии

  • @rommyshabby3959
    @rommyshabby3959 2 дня назад

    Your the best teacher

  • @s.harishkumar3087
    @s.harishkumar3087 5 дней назад

    Well explained Sir.🎉

  • @RongalaZinardhan-lq4it
    @RongalaZinardhan-lq4it 9 дней назад

    Thank u Sir For this videos Very Usefull to me It is Helps to My Project

  • @its.skywalker
    @its.skywalker 9 дней назад

    It's really easy if you do not have a D drive, you can use an USB(D) pen drive. I did the same and it worked.

  • @talhatariq6964
    @talhatariq6964 13 дней назад

    really helpful

  • @vsbadboy8847
    @vsbadboy8847 16 дней назад

    Thankyou sir 🎉

  • @user-do8mv9ow6d
    @user-do8mv9ow6d 20 дней назад

    For-each loop

  • @code_bava
    @code_bava 21 день назад

    'nasm' is not recognized as an internal or external command, operable program or batch file

  • @florencelingaynemusic
    @florencelingaynemusic 23 дня назад

    Boom I did it thank you sir!

  • @TonyStark-qi3xp
    @TonyStark-qi3xp 26 дней назад

    bro youre goated

  • @SiddharthGouthaman-tf6nu
    @SiddharthGouthaman-tf6nu 26 дней назад

    thanks for clear explanation sir.

  • @michaelwest7125
    @michaelwest7125 Месяц назад

    im alittle confused on the 3rd way: anonymous object ... is the anonymous now C1 or does it just destroy all the new object that was created before it ?? help me please

  • @lokanathsenapati1595
    @lokanathsenapati1595 Месяц назад

    awesome

  • @jeanmorales257
    @jeanmorales257 Месяц назад

    I had been trying to root an avd for several days, with your information I finally was able to do it, thanks so much, doctor!

  • @user-pb5cr3yc7w
    @user-pb5cr3yc7w Месяц назад

    srt? i said the same thing... thats his little trick ;) you GOTTA watch to the end!

  • @ganeralo6542
    @ganeralo6542 Месяц назад

    1|generic_x86_arm:/data/data $ su /system/bin/sh: su: inaccessible or not found ( whats the solution)

  • @adityabhattacharyya600
    @adityabhattacharyya600 Месяц назад

    How to delete 1 lakh records at a once?

  • @VictorPinto-mc7ow
    @VictorPinto-mc7ow Месяц назад

    Thank you Sir, greatings from Colombia

  • @user-vm4hv7wv1k
    @user-vm4hv7wv1k Месяц назад

    clear explanation

  • @user-vm4hv7wv1k
    @user-vm4hv7wv1k Месяц назад

    Very clear explanation Thank you Mr. Parag

  • @kyleacampbell
    @kyleacampbell Месяц назад

    For someone using an earlier version of JDK, what data type should I be using for the listener. var is not an option

  • @okayanimation-jt9xf
    @okayanimation-jt9xf Месяц назад

    thanks sir watching from nepal

  • @GhulamAbbas-dg7tx
    @GhulamAbbas-dg7tx Месяц назад

    Good explanation ❤

  • @hptalha
    @hptalha 2 месяца назад

    THANK YOU SO MUCH 🥰

  • @nerometallica8677
    @nerometallica8677 2 месяца назад

    Thanks a lot, straight to the point and very easy to understand

  • @1kvolt1978
    @1kvolt1978 2 месяца назад

    This is so bad... No checks for memory allocations, unnecessary allocations of "name"s, no checks for opened file, no memory release and as a cherry on top usage of unsafe scanf()... No wonder modern programs are such a shitcode. People learn to shitcode from the beginning of their education.

  • @mateenmoshood1360
    @mateenmoshood1360 2 месяца назад

    i got a lot of unresolved references, how do I fix this?

  • @amad9130
    @amad9130 2 месяца назад

    Thanks dr. Very useful

  • @NikolayPetrov-my9zf
    @NikolayPetrov-my9zf 2 месяца назад

    Very good explanation and nice voice, thank you very much!

  • @mdtausifahmed6205
    @mdtausifahmed6205 2 месяца назад

    very nicely explained

  • @mbellaesther7833
    @mbellaesther7833 2 месяца назад

    @Dr. Parag Shukla please can i get the resourse file

  • @mbellaesther7833
    @mbellaesther7833 2 месяца назад

    @Dr. parag shukla hi sir can you send me the alphabet and the audio files?

  • @mbellaesther7833
    @mbellaesther7833 2 месяца назад

    please how do i get the sounds and images

  • @mohsinnadaf6800
    @mohsinnadaf6800 2 месяца назад

    Teaching is very fast

  • @kishoresrinivas2104
    @kishoresrinivas2104 3 месяца назад

    Thank very much short video u covered lot of topics

  • @DigitalPaintingRecords
    @DigitalPaintingRecords 3 месяца назад

    C:\Program Files\CodeBlocks\MinGW\bin>gcc -o 123.exe 123.obj -nostartfiles 123.obj:123.asm:(.text+0x6): undefined reference to `_printf' collect2.exe: error: ld returned 1 exit status

  • @jaksaniloukya6692
    @jaksaniloukya6692 3 месяца назад

    i am getting an error while writing in .kt

  • @Islamickothon663
    @Islamickothon663 3 месяца назад

    Next part link please

  • @rashedkhan8416
    @rashedkhan8416 3 месяца назад

    Thank you so much Sir.

  • @emmaprofemx
    @emmaprofemx 3 месяца назад

    Excellent , I was search a way for get only MOTH from a date. Thank you!!!

  • @swopanborma4604
    @swopanborma4604 3 месяца назад

    When I click an Alphabet than it went to another activity. In this new activity I need next and previous button for next or previous Alphabet. And for last Alphabet the next button will disabled and first Alphabet the previous button will disabled. How i can do that,,,,

  • @dularakavindu1743
    @dularakavindu1743 3 месяца назад

    Thank you so much ❤

  • @RachamalliVijayaDurga
    @RachamalliVijayaDurga 3 месяца назад

    The way of explantion is really superb sir, Could you please make on strings , Array programs as well sir.

  • @InsaneParrot
    @InsaneParrot 3 месяца назад

    i dont have d drive

  • @mohammedhajomar4400
    @mohammedhajomar4400 3 месяца назад

    real thanks... at first I thought that I should not download the 32 bit version and I downloaded the 64 bit version and I got a bunch of errors. Then I deleted everything and followed the steps and downloaded the 32 bit version and everything is working properly. thanks again

  • @ebnoukhadijetou8721
    @ebnoukhadijetou8721 3 месяца назад

    ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️

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

    My pl sql code procedure to update compile but not excute

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

    Sit source code deben please

  • @user-gv1wv1bx2d
    @user-gv1wv1bx2d 4 месяца назад

    Thankyou sir 😊

  • @user-gv1wv1bx2d
    @user-gv1wv1bx2d 4 месяца назад

    thankyou