Skip to main content

Me and FirstSeed so far....

FirstSeed is more than two and half years old now. Released three games to Google Play Store. I have a team of good individuals working with me. They are doing quite good in their jobs. Running a game studio is not a joke. But, we enjoy doing it.

How much money I have made so far? 🤣 .  We are still learning many areas of game making and releasing.

How much money I have invested? $$$. Without my father's support, my wife's support and my friends' support it is not possible to run a startup without making much money.

We earlier focussed on mobile game development alone. Now, We have brought PC games too under our focus. We are building our next PC Game "Quest of Vidhuraa". Will be released by end of 2017.

And we are having a mobile game "To My Home" to be released soon. "To My Home" is a mix of everything. A thrill and exposure to the team. So many reschedules it has met for the past two years. "YET TO BE LAUNCHED"

We are yet to meet success in our games. We believe in persistence in execution and focus on delivery rather than overnight success. We are ready to go all the miles till we reach success and will continue to go further as long as we can as a team but we will not stop.

Hope we see the sunshine soon...

Bow down to the one who is boundless and inspiring me to do what I love to do...

Comments

Popular posts from this blog

Tabs at the bottom of TabActivity

Tabs at the bottom of TabActivity By default tabs in Android are displayed at the top. It is a general guideline for android developers to keep the tabs at top of the Tabs based application since lot of Android mobiles are having their home, back,search buttons or touch interface at the bottom But its purely our decision :) There are two ways to achieve this. Using RelativeLayout Using "android:layout_weight" attibute  1) Using RelativeLayout: .xml will look like the following. <?xml version="1.0" encoding="utf-8"?> <TabHost xmlns:android="http://schemas.android.com/apk/res/android"     android:id="@android:id/tabhost"     android:layout_width="fill_parent"     android:layout_height="fill_parent">     <RelativeLayout         android:layout_width="fill_parent"         android:layout_height="fill_parent">         <FrameLayout android:id="@android:id/tabconten

How to access PC's internet from Android Emulator?

PC's Internet and Android emulator If PC's Internet connection is configured with manual proxy settings, Follow the below steps. 1) You can launch your Emulator from command line with DNS server detail.  Syntax : "emulator -dns-server <DNS Server IP address> "  Example: emulator -dns-server 8.8.8.8 (8.8.8.8 is Google's Public DNS Server)    (or)   Goto Eclipse->Window->Preferences->Android->Launch and give "-dns-server " and then launch your emulator. 2) In emulator goto " Settings->Wireless & Networks->Mobile Networks-> "       2.1) Ensure that " Data roaming " is checked.       2.2) Select Access Point Names       2.3) Select an APN. (eg. Telkila )       2.4) Manually set the Proxy Server and Port details. If PC's Internet connection is configured with Automatic proxy settings, Follow above steps except step 2.4  and ensure that No proxy server detail or port detail is

Windows Workflow : Dependency Property "does not define a static dependency property with name"

If you encounter the below exception while registering a DependencyProperty "Error 103 Could not create activity of type 'xxxxxxxxxxxxxx'. System.ArgumentException: Type 'xxxxxxxxxx' does not define a static dependency property with name 'xxxxxxProperty'. Parameter name: ownerType    at System.Workflow.ComponentModel.DependencyProperty.ValidateAndRegister(String name, Type propertyType, Type ownerType, PropertyMetadata defaultMetadata, Type validatorType, Boolean isRegistered)    at System.Workflow.ComponentModel.DependencyProperty.Register(String name, Type propertyType, Type ownerType)    at xxxxx..cctor()" Fix: If you are registering Dependency Property with name 'XYZ' then the declaration should be exactly like this, public static DependencyProperty XYZProperty = DependencyProperty.Register("XYZ", typeof(bool), typeof(ApprovalWorkflow));         public bool IsRestarted         {             get { return ((bool)(Get