Android :: How To Install App Programmatically?
May 24, 2010
I was hoping to write a service on Android that would list all applications installed as per previous post.Then, It would decide to update automatically some apps and install others. Is there any class on the SDK that has this kind of functionality? That is, can I call some API or code to install an application on the phone? Can I force some updates as well?
View 3 Replies
Jan 27, 2010
How can I programmatically install an apk file ?
I've foud that the PackageManager.installPackage(...) method was used to do that, but is no longer supported (http://developer.android.com/ sdk/api_diff/4/changes/android.content.pm.PackageManager.html)
View 3 Replies
View Related
Jul 22, 2010
Let's say I have 2 files on Desktop: (Note that I have another file than .apk application.)
.apk file
.zip file (wich contains a large of data that .apk must unizp and do some work with it).
I want to plug an Android device and programmatically copy these both files to Android.
The application must be visible to user and the .zip file must be "visible" to the application, wich will unzip it and do some work with it.
With PalmOS, I use HotSync API. With WinMobile I use ActiveSync (rapi) API. How to do it on Android?
View 1 Replies
View Related
Jun 27, 2010
Is there any way to determine programmatically the time at which an Android application was installed? I don't see anything in PackageInfo, etc.
--EDIT--
To clarify, App A is installed at Time X. At some later time, Time Y, App B is installed. Is there any way App B can know when App A was installed? The link http://stackoverflow.com/questions/2831333/how-to-get-app-install-time-from-android/2920310#2920310 indicates that reading the modify time on the source dir of the App is sufficient. Is this really correct? Why?
View 3 Replies
View Related
Jul 29, 2010
I'm sure that you all have already known AppBrain's Fast Web Installer which is able to programmatically install free applications in android market to the device.
How could it be possible ?
View 2 Replies
View Related
Sep 5, 2013
I have made a little application pushed in /system/app with adb qui connect to a server and sometime download apk for updating/installing apk on the device.
My application is a kind of "updater". I alreay can : install new apk
But I can't update an apk which is already installed in /system/app/
I don't know why, but the update is in /data/app/my-update-1.apk
The application use the new version but, if i reboot the device (a Tao3530 tsunami board), the apk in /data/app/ is deleted and the old /system/app/original.apk version used.
How could i update an /system/app apk ? (without using ADb of course). If i need to use SU command (to push from download folder to /system/app, how could i root the board ?*
View 1 Replies
View Related
Oct 27, 2009
Followed the instructions in http://developer.android.com/sdk/adding-components.html for adding 2.0 as components to an existing 1.6 SDK, from within Eclipse.
It didn't work. Not by a long shot. Instead, it got partway through and then said that C:android-sdk-windows-1.6_r1 tempDocPackage.new01 couldn't be copied because of a lock, and similarly for PlatformPackage.new01.
It said to shut down running programs, but the only program running was Eclipse, which was needed to do the upgrade.
The cancel button was disabled, and the close box didn't work. Shutting down Eclipse killed it, but left C:android-sdk-windows-1.6_r1 in a corrupted state. Restarting Eclipse showed the Android projects with errors, no SDK, and a disabled Android SDK and AVD Manager (which means no ability to rerun the install).
Shutting down Eclipse, renaming the corrupted SDK directory, unzipping 1.6 again into C:, and restarting Eclipse made it as if nothing had ever happened, which is good. But it is not possible to complete the install from Eclipse, which is bad.
The dialog says:
CODE:..............
View 1 Replies
View Related
Aug 4, 2010
When I run my application on a physical phone from within Eclipse, my Google MapView works perfectly. If export the app to an apk file and install it to the same phone from the command line with adb then the MapView comes up but shows only the Google logo and grid - no map tiles appear. I'm using a debug application key and a GMaps API key generated with that debug key. I've verified that this happens on both the Droid and N1 phones. The logcat looks identical in both the working and non-working cases - no obvious error messages.
View 2 Replies
View Related
Sep 1, 2010
Yes we have threads about this already but we still have not gotten an answer AND I think it's about time somebody at least explain what does this number actually MEAN. I'm getting frustrated with the lack of transparency on this.
My apps used to be around 56% active installs
VERY soon after I updated the apps to allow install to SDCARD (preferExternal), then the active install count started dropping like a rock. Now it's around 39% today for my main app.
My opinion is there is a bug in the SDCARD install feature somewhere that is not counting those installs. We know there already is a bug with home screen icons if you install to sdcard you will get a blank icon until the Home app restarts.
View 1 Replies
View Related
Nov 17, 2009
Anybody knows the install command to install an apk in system/app directory .
View 2 Replies
View Related
Jul 22, 2009
I was wondering if there is a way of enabling the GPS programmatically through an application without going to the menu Settings > Security & location > Enable GPS satellites. Please let me know if there is a way, I've seen this asked a million times in this group but there are never any replies.
View 2 Replies
View Related
Nov 21, 2010
i'm currently setting the alarm via the following.. //set the alarm alarm.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), pendingintent); i don't seem to see an AlarmManager method that allows me to get the time of that set alarm... Is there a way to do it from somewhere else in my app?
View 1 Replies
View Related
Feb 3, 2009
Given a widget and a int that references a style (defined in my res/ values/style.xml), what is the 'correct' way to programmatically apply the style to the widget?
Up until now I've been hacking this by...
CODE:..................
View 5 Replies
View Related
Apr 14, 2010
Also wondering if anyone knows how to print to a PDF programmatically in Android.
View 2 Replies
View Related
Jul 11, 2010
So I read the xml tricks 2 from developer.android.com, and it worked for me. But I need to programmatically include 1 xml into another. addview returns
07-12 01:01:18.429: ERROR/AndroidRuntime(267): java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first. 07-12 01:01:18.429: ERROR/AndroidRuntime(267): at android.view.ViewGroup.addViewInner(ViewGroup.java:1970)
((ViewGroup) placeHolderProductList).addView(productList, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT)) ;
View 4 Replies
View Related
Oct 4, 2010
I red in these discussion groups that you cannot programmatically turn on/off the GPS : Mark Murphy was exhaustive, as always. But i found a 3rd party App, in the market, that creates a widget capable of switching the GPS on/off. How did they do it? Are they using a different SDK ?
View 5 Replies
View Related
Sep 5, 2010
On Sun, Sep 5, 2010 at 12:55 PM, Vipul <vipulpancha...@gmail.com> wrote: > I want to get the name of device programmatically. > Suppose anyone has set the device name as "My New Phone"> I want to get that.
View 3 Replies
View Related
Aug 7, 2009
i have a requirement to place 2 overlapping image view inside a web view.the upper image view can be moved using trackball and the lower image view is static.now i want to capture the whole screen programmatically and save it as an image.i have referred this link but unable to get the solution.
View 2 Replies
View Related
Apr 18, 2010
I am trying to set speakerphone on in a call programmatically using audiomanager.setSpeakerphoneOn(true) in a service but it seems it is not working and I don't know why. Should I do something else?
View 1 Replies
View Related
May 30, 2010
I am trying to improve the layout for my game. The problem is that while I can create a good layout for one android phone, it doesn't work for another, ie the trackball for MyTouch is on the right side (landscape mode), but for the MyCliq, the DPad is on the left side. Is there a way to programmatically set the layout based on which phone it is?
View 2 Replies
View Related
Aug 17, 2010
I am trying to retrieve the current API Version of the device my Application is Running. Is there a way i can get that and Store it on a String. This needs to Work on 1.5 Version and Up.
View 2 Replies
View Related
Nov 1, 2010
I'm trying to create table row and place 3 elements: EditText - EditText - ImageButton as following:................
View 2 Replies
View Related
Jun 15, 2009
Can we change the apn settings programmatically?
View 2 Replies
View Related
Mar 31, 2009
I would like to dynamically build a view that would display a certain number of 'rows'. Here is a piece of code I wrote, but it is not working:
CODE:..............
View 2 Replies
View Related
Sep 11, 2010
In an Android application I am writing, the styling for my various TextView elements is defined in an xml resource. I would like enable the user to change certain styles such as android:typeface using a PreferenceActivity. Is there a way to modify a style resource programmatically such that all associated widgets will update correctly? If not, must I manually select all widgets by id and change their styling?
View 1 Replies
View Related
Jun 26, 2009
I'm currently writing an app in Android that works with the GPS, at the moment I'm able to work out whether the GPS is enabled, my problem is that I want to enable the GPS on app startup if it is disabled, how can I do this programmaticaly?
View 4 Replies
View Related
Feb 26, 2009
I would like to enable Security & Location settings programmatically. Can any one please suggest me how to do this?
View 2 Replies
View Related
Aug 11, 2010
Is it possible to enable usb debugging (under settings/applications/development) programatically from within my app? I was looking at Permission.WRITE_SETTINGS and http://developer.android.com/reference/android/provider/Settings.System.html but couldn't find anything appropriate.
View 1 Replies
View Related
Sep 7, 2010
i am trying to open lock in my app i think pressing menu key by code will do that but i dont know how to do this. so can anybody guide me for that.
View 4 Replies
View Related
Jul 28, 2009
i want to trigger the onKeyDown listener programmatically but don't know which method i should call? Does anyone know?
View 3 Replies
View Related