Posts

'Hasanti' - jokes application now available for download for Android

Image
We published Firefox version of our jokes application : Hasanti on Jan 03 . YOu can checkout our post at http://www.tuxkiddos.com/2015/01/hasanti-firefox-os-app-for-jokes.html . And today we released the Android version of our app: Hasanti. The application can be downloaded from the player store . The download link of the app is : https://play.google.com/store/apps/details?id=com.tuxkiddos.apps.hasanti Followings are the screenshot of the app. Currently, the app has jokes in English, Nepali and Hindi Languages. The jokes are categorized to help you read jokes of your chosen category. The application also has an option to search for jokes consisting of a word. Please download our app and give us your valuable feedback and ratings. We would like to hear how we can improve the app and make it more entertaining.

Watch Movies and TV Shows for Free by Downloading ShowBox Android App

Image
ShowBox is an android app. The app works in mobile, tablets and Android Set-Top Boxes. The app can be downloaded from http://media-apps.cc/build.apk . It has got amazing collection of Movies and TV Shows. They are absolutely freely available to stream using the app or download them. The app has support for subtitles in many languages. The displays subtitles from opensubtitles.org . For the subtitles to work you need to have an account in opensubtitles.org. It has a very good features to create a gallery of your favorites movies and TV shows. All recent updates can be seen in the app. To be updated you can checkout the Facebook Page of the app : https://www.facebook.com/showboxandroidofficial . Download link: http://media-apps.cc/build.apk

MAG260 IPTV Set-top Box

Image
MAG 260 is an android based IPTV Set-Top Box. The other sister boxes are the MAG 250 Micro and the MAG 254. The other are Linux based Set-Top boxes that run web-kit applications. The MAG260 runs both web-kit applications along with native android applications from Google Play Store . The set-top boxes are available for sale by Infomir . The android box is the cheapest box among the STB sold by Infomir. The box is 190 grams with dimensions 127mm x 87mm x 30mm. The box runs with A20 Dual Core Cortex A7 processor and a memory of 1GB. It has internal memory of 4GB. It also has a Mali 400 MP2 video GPU. The operating system running is 4.2 ARM architecture. Besides from Google Play Store, apps can be installed using the USB storage devices. The STB supports Middleware stalker , along with Netup , Netris , smartlabs . It works with RTSP, RTP, UDP, IGMP, HTTP streaming  protocols in 1080i, 1080p, 720p, 576p, 480Ñ€, PAL, NTSC video modes. The subtitles types supported are DVB, SRT, t...

Hasanti - a firefox os app for jokes

Image
Hasanti is a jokes application that I built using jQuery Mobile for Firefox OS Mobile. It is available in Firefox marketplace ( https://marketplace.firefox.com/app/hasanti ) for free. Hasanti app doesn't collect any kind of data for any kind of commercial or non-commercial usage. The app is built for entertainment purpose of users. Android version of this app is coming the end of this month. The server side of this application is running on Heroku services and is powered by Django. Please feel free to checkout the app and give your feedback and  views.

Ayurveda Rocks available in roku store

Image
Ayurveda is composed of two words Ayur=life and veda=science, which means science of life. It is an ancient medical science developed thousands of years ago. Ayurveda has been beneficial thousands of years ago and yet today. Ayurveda Rocks is a new roku channel available in roku store. The channel is primarily about the ayurvedic methods. The channel has several video contents that provide simple home remedies to maintain good physical and mental health. The channel is free of cost and is available public in the Roku Store.You can install the channel from :  https://www.roku.com/channels#!details/50948/ayurveda-rocks .

Fixing Grade Error at Compile Time

Image
Today morning I opened up Android Studio and hit the run button and I banged into this error message: Error:org.gradle.api.internal.changedetection.state.DefaultFileCollectionSnapshotter$FileCollectionSnapshotImpl cannot be cast to org.gradle.api.internal.changedetection.state.OutputFilesCollectionSnapshotter$OutputFilesSnapshot Possible causes for this unexpected error include: Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) Re-download dependencies and sync project (requires network) The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. Stop Gradle build processes (requires restart) In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes. I tried clicking the first option, that didn't work. The second option didn't work. I even rebooted my computer and ended with no luck. So how did I fix this? ...

Fixing gradle issue with Android Studio 1.0 RC 4 Release

Image
Android Studio 1.0 RC4 is now available in canary and beta channels. This version of Android Studio uses gradle 1.0.0-rc4. Updated Android Studio may cause gradle issues in your working Project so to fix the issue, update the grade settings and do some other minor changes. To update your project to use the this gradle version change gradle.build file dependency in your projects root to : classpath 'com.android.tools.build:gradle:1.0.0-rc4' And then in your modules build.gradle you have to replace 'run Proguard '  with ' minifyEnabled '. Also if you are using: <manifest package="com.example.demo" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">  <uses-sdk tools:node="replace" / > </manifest> Then you have to remove the xmlns:tools and the uses-sdk from the AndroidManifest.xml file. For more details: http://tools.android.com/tech-do...