Posts

Showing posts from December, 2014

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