Skip to main content

Posts

An app and a story

An app and a story I am not writing anything about coding tip here. But telling you how my app Shataka came into existence.  Few years back, I had started an app, whose idea was to find all combinations of numbers to get the required sum. Something like,  90 = 10*9      = 45*2      = 200 -110 etc. Then the app was killed because my computer was. I did not have a single line of code remaining.  That was metamorphasized into this unique app Shataka. As far as I know, in android market there are not many number games for adults. There are few me-too versions of 2048 and few apps which ask you to type what is 10 +2 etc. But in this app, the sum was to be 100, for rows and columns. And typing the numbers is clumsy and guessing 9 numbers to fill in 3 by 3 grid for this is too time consuming. So what if I provide the numbers after shuffling them? Yes. I provide 9 numbers which if arranged in an order, make a grid wi...

Shataka updated

A completely original math game "Shataka" was published in Oct' 2014. The apps age faster than us:) So the design and UI were looking quite old. Hence an update has been published on March 14th Here are the new features Were you bored with adding to 100 always? Don't worry. In the new version you can arrange numbers so that they add to 1000. And there are also levels where sum is a random 2 digit number - different number each time. Isn't it exciting? Believe in fast work? For you, there is timed mode. You have to finish a level in 50 seconds. And if you finish much earlier, the remaining time is added as a bonus in next level. Do you need a hint? I do not ask you to purchase one. You can use a hint - again one hint per level which is accumulated if unused. Does it look quite exciting? Download the game now and start playing!!!

Screen recording of your apps

You want to publish your app. And you feel the app installs may improve after you add a promo video. But you are a one-man(or woman) team. And you rarely know anything about creating a video. What do you do? Screen recording comes to your rescue. You can record your phone screen activities into a video file. All you need is simple android adb tool. Connect your phone to the laptop. Go to command prompt.  Locate the directory where adb command is present. Normally it is yoursdkdirectory/platform-tools. And give the command on c adb devices You should be able to see your phone listed there. Next you give command adb shell screenrecord /sdcard/yourfilename.mp4 Now the screen record will start.  End it by pressing ^c The recorded video will be stored in your sdcard. Copy this to your laptop and you can edit it using moviemaker software in windows The problem with above method is audio will not be recorded and you have to add it in moviemaker. There are ma...

Enabling USB debugging on your phone

Coming here after a very very long time. Today let us see how to become a developer. I am kidding. Let us talk about how to enable your device to be connected for debugging in android studio. You need to install a samsung adb driver for your laptop first of all. Or which phone your brand is. Next take your phone - go to Settings About Device Build Number - tap on this like 10 times. And your phone tells you now you are a developer.  Great isn't it. No studying needed. Do you see your phone in android studio, when you connect to through usb? No, not yet. Because there is one more step to be done. Now settings has Developer options in it. Goto   Settings Developer Options USB debugging - check on this Done !!!  Now you can debug your android app on your phone.

Indian Newspapers and magazines - new version released

I have published version 2.0 of my Indian Newspapers and magazines app for android phone to google play. I have added many more papers in regional languages and many more magazines as well. But you don't have to worry about clutter of all those papers on screen. You can select and deselect only those papers you need. As is the new tradition, the categories are displayed as action bar tabs. So you can swipe them.  And the option to save the files for offline reading is present. As some user had commented on advertisement filling lot of real estate on screen, I have tried reducing ad sizes on my part. But some papers publish their own huge ads which are not in my control.  The version does not support android 2.2 as google play has some problems with that. I took that risk as most of the users are having newer versions of android. And another omission has been ability to add news papers. I will certainly add that feature in the next bug fix release within a fortnigh...

Action bar menu items and Fragments

 How do we create menu items? You can add menu items through code. But the easier method is writing an xml file in ../res/menu folder. /res/menu/mymenu.xml <menu xmlns:android="http://schemas.android.com/apk/res/android"         >     <item         android:id="@+id/action_settings"         android:icon="@android:drawable/some_icon"         android:title="Customize"/>      <item                 android:id="@+id/action_settings"         android:icon="@android:drawable/some_icon"         android:title="Customize"/>   </menu>   Next  write the onCreateOptionsMenu() method of your fragment like this. @Override   ...

New puzzle "Shataka" published

I have published a new math puzzle "Shataka" in google play. This app has a 9 cell empty grid and 9 numbers. Your aim is to drag and drop these numbers into the grid so that each row adds to 100 and each column adds to 100. e.g. In the screen shot above middle column has 87 and 9. So to make column sum 100, you need 100-(87+9). That is 4. And we do have a 4. So drag and drop this 4 in second column. Next first row will have 4 and 28. Hence it needs a 100 -(4+28) which is 68. Drop 68 in first row and first column. So now you can see that this game is getting interesting. The screen shot is of level 1. And as you can see, 3 numbers are already given to you. So you need to solve for remaining 6 numbers. In level 2, only 2 numbers are given. In level 3, 1 number of solution is given. After 3rd level, solution is not given because by then you will not need it. :) Another helpful feature is after you complete a row or a column, its sum is shown in a popup. What are...