A blog related to programming, technology, with tons of how-to tutorials.
Happy New Year 2013
Get link
Facebook
X
Pinterest
Email
Other Apps
Well the new year has arrived with new air, new energy, new thoughts, new enthusiasm, and some new tutorials for you all. Wishing you all. Happy New Year.
After the update in the Google Play Store, the opt-in option for Android TV has moved into the deeper pages. For this reason when you publish your app, even if it shows the Android TV devices are compatible in the Device catalog, the app actually is not available in the Android TV's play store. To fix this issue follow the following steps: First, optimize your app for Android TV. * Declare TV activity * Declare Leanback support * Declare touch screen not required * Provide home screen banner * Update the app to support remote navigation * Make sure your app's UI is compatible with the TV screen * Take screenshots of the TV app Now to opt-in for Android TV * Access the Play Console and select the app. * Go to “Release” > "Setup" > "Advanced settings" * Go to the "Release types" tab. * Once the app has been optimized for Android TV you may select the "Opt-in to Android TV." Once the app has been approved the status will appear as ...
Selenium IDE is an integrated development environment for Selenium tests. It records your interactions with websites to help you generate and maintain site automation, tests, and remove the need to manually step through repetitive tasks. Selenium IDE can be installed in Google Chrome from here . For Firefox visit this link . File upload in Selenium IDE cannot be automated simply by recording from the IDE. Because when we select the file input field, the dialog that opens up is a system window which cannot be controlled by Selenium IDE. Therefore, clicking the input file field to select a file will not work. Also the selected file path is changed to C:\fakepath\filename.extension. So to fix this issue, we need to configure the browser to support file upload and then instead of clicking the input field we set the file using ‘type’ selenium command which is shown below. First, to support file upload in Selenium IDE, configure your browser to support file upload: Visit ‘...
Original post: https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-nextcloud-on-ubuntu-20-04 Step 1 – Installing Nextcloud We will be installing Nextcloud using the Snap packaging system. This packaging system, available on Ubuntu 20.04 by default, allows organizations to ship software, along with all associated dependencies and configuration, in a self-contained unit with automatic updates. This means that instead of installing and configuring a web and database server and then configuring the Nextcloud app to run on it, we can install the snap package which handles the underlying systems automatically. To download the Nextcloud snap package and install it on the system, type: sudo snap install nextcloud Copy The Nextcloud package will be downloaded and installed on your server. You can confirm that the installation process was successful by listing the changes associated with the snap: snap changes nextcloud Copy Output I...
Comments
Post a Comment