Tag Archives: APK
Now you can upload APK’s up to 4 GB.
Yes, Google has announced that from now on you can upload APK’s up to 4GB. This is an effort to accommodate apps that require more local storage. Previously Google had made a limitation of 50MB for apps but due to the intervention of high speed 3D games and other Google has decided to increase the file size to… Read More »
Now you can upload APK’s up to 4 GB.
Yes, Google has announced that from now on you can upload APK’s up to 4GB. This is an effort to accommodate apps that require more local storage. Previously Google had made a limitation of 50MB for apps but due to the intervention of high speed 3D games and other Google has decided to increase the file size to… Read More »
Now you can upload APK's up to 4 GB.
Yes, Google has announced that from now on you can upload APK’s up to 4GB. This is an effort to accommodate apps that require more local storage. Previously Google had made a limitation of 50MB for apps but due to the intervention of high speed 3D games and other Google has decided to increase the file size to… Read More »
How to install an APK into your device or emulator through command prompt or shell.
In this post I will show you how to install an apk on to the emulator or the device through the shell or command prompt. Before experimenting with this post I assume that you have these done 1. Installed the Android SDK. 2. Added the adb path to the environment path. This is how you add the path… Read More »
How to show a sliding window from below in Android?
Hello everyone, I have already showed you how to use a SlidingViewer to create a slidingWindow. Today I will show another way to create such a window with the help of animation. Please check one of my previous posts to do this in another way. How to show a sliding window from below in Android? Check this new… Read More »
SlidingDrawer in Android, A simple example.
Sliding-Drawer in a nice and useful widget in android. Please check one of my previous posts to do this in another way. How to show a sliding window from below in Android? Check this new One using Navigation Drawer About Sliding drawer SlidingDrawer hides content out of the screen and allows the user to drag a handle to… Read More »
Steps to sign an android apk and publish it to the market
Here are the simple steps to sign an android apk and publish it to the android market if you have an android developer account. Follow these steps exactly 1. Right click your project in eclipse and Click Android tools – > export unsigned apk. Give it a name and save it in a directory. 2. Go to command… Read More »
How to change the default transition between activities?
In android the default transition between activities is to slide from left to right. But with custom animations we can change that. First create a folder inside the res/drawable folder called “anim”. Then create a file named “fade.xml” and copy this code into it. create another file named “hold.xml” in the same place hold.xml. activity_animation.xml Now the main… Read More »