Please note, one should avoid installing unknown Apps or Apps from unknown sources. They may harm the device or retrieve personal user data from the device. So, please follow the below steps only when the App’s installation file (APK) is received from trusted source. However, reliable sources, such as Google…
Tag: file
How to create 2 launcher activities (app icon) using 1 apk installer for your Android App? – Android Studio tutorial – API 32 | Android 12
In this video it shows how one can create two launcher icons for specific activities of their Android App. It creates two activities for demo purpose and connect to different layouts which can be loaded during the onCreate method. Then, in manifest file, it creates multiple activities tags as launcher…
How to convert .MOV or other video files extension to .MP4, .WMV or .MPEG file type readable by Windows Media Player using VLC?
In this page learn about how to convert media file types, such as .MOV, to a Windows Operating system readable file types, such as MP4, WMV, MPEG, etc. Usually files created in iOS are not compatible in Windows OS. This page can help to quickly translate or convert the video…
How to solve “Build was configured to prefer settings repositories over project repositories but repository ‘Google’ was added by build file ‘build.gradle'” error in Android App development?
On adding the google or maven repositories for all projects in the gradle file can given error. Adding below: allprojects { repositories { google() mavenCentral() } Gives below error: Solution: Goto Settings.gradle file: And add the lines as below if not added: google() and mavenCentral() repositories added:
Selenium
In this page you will find interesting videos and content related to automation testing using Selenium. You will be able to find end to end steps for developing and troubleshooting different features and functionalities in Selenium. The content provided comprises a comprehensive range of topics within the domain of automation…
How to drag and drop elements in selenium webdriver?
In this video we will see the drag and drop functionality using selenium werbdriver. How to automate the process of dragging one element on other element using selenium. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete…
How to access public files from the external directories, such as download or Image/ Picture folder, in your Android App? – Android 12 | API 31
This video shows the steps to enable your App to access the files outside of your App’s data folder. Using these methods one can access the files available in external public directories which can be easily accessed by all the Apps. In this video it shows two ways to get…
How to add watermark in your PDF file from your Android App?
In this video it shows the steps to add the watermark in your PDF file. It uses PdfStamper object to put the watermark (stamp) as an over content on your PDF pages. In this video it re-uses the create PDF method code from our below page: It further develops the…
How to create and read a PDF file in your Android 11 App?
This video shows the steps to create and read a PDF file in an Android 11 App. It uses iTextpdf library for reading the PDF file and PdfDocument API from android.graphics.pdf to create the PDF file. It creates and reads from the same PDF file but the concept shown in…
How to create Microsoft Word Document (.docx) File from your Android App?
This video shows the steps to develop a method to create the Word Document File in your Android App. This uses the apache poi library for the same. It takes the content of the file as an input from the user from the EditText (Plain text) widget. It then creates…