android-install-apk

Pass param to app when installed from Google Play

感情迁移 提交于 2019-12-03 00:11:38
I need to support the following scenario: User receives the e-mail with link to my app. If user already has the app installed the link should open the app passing some data in the intent to the launcher activity. If the app is not installed yet the e-mail link should act as campaign referrer: direct user to Google Play to install the app with referrer url that is passed to my app after installation in referrer broadcast receiver. You need to intercept the com.android.vending.INSTALL_REFERRER Intent, which is broadcast by Google Play after the app is opened for the first time after installation

Take backup of all install apk file into sdcard programmatically in Android [duplicate]

风格不统一 提交于 2019-12-02 17:47:37
This question already has an answer here: How to get the .apk file of an application programmatically 3 answers I want to take back up of my all install application in my sdcard so I write below code public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null); mainIntent.addCategory(Intent.CATEGORY_LAUNCHER); final List pkgAppsList = getPackageManager().queryIntentActivities( mainIntent, 0); for (Object object

Why does removing permission from AndroidManifest.xml not work?

萝らか妹 提交于 2019-12-01 22:44:01
问题 There is an app called bodyweight fitness on the play store without any permissions . It is available on git hub as well: https://github.com/mazurio/bodyweight-fitness-android I used the files from git hub and compiled the apk myself with Android Studio (without changing the files). When I try to install the self compiled app apk, it tells me that it will use the INTERNET though the play store app did not. There is no reason why this app should need any internet connection. Thus I removed

Unable to install app on HoneyComb 3.2 - It gives INSTALL_PARSE_FAILED_NOT_APK error

拈花ヽ惹草 提交于 2019-12-01 04:21:32
问题 Thanks for reading! A user recently reported that he is not able to install my app on his Asus Eee Pad Transformer (I assume it's got the 3.2 update). So, I tried with installing the app on a 3.2 emulator and this is my console output: [2011-08-04 14:04:06 - ] New emulator found: emulator-5554 [2011-08-04 14:04:06 - ] Waiting for HOME ('android.process.acore') to be launched... [2011-08-04 14:05:04 - ] HOME is up on device 'emulator-5554' [2011-08-04 14:05:04 - ] Uploading testapp.apk onto

Pushing Latest Android Build to Devices

帅比萌擦擦* 提交于 2019-11-30 22:13:59
Is there a way or an app that allows me to push my latest android build to all devices that have it installed? My app is not in the Google Play market yet but would like my testers to not have to manually install every build I push. Why don't you just use dropbox? Install it where your developing the application then share the folder of available apks (releases) to the testers that also install dropbox on their phones. When an update occures (you move a file to the folder) they'll get an update notification, then they can go and install it right from dropbox. I wrote an update library a while

Pushing Latest Android Build to Devices

廉价感情. 提交于 2019-11-30 17:29:06
问题 Is there a way or an app that allows me to push my latest android build to all devices that have it installed? My app is not in the Google Play market yet but would like my testers to not have to manually install every build I push. 回答1: Why don't you just use dropbox? Install it where your developing the application then share the folder of available apks (releases) to the testers that also install dropbox on their phones. When an update occures (you move a file to the folder) they'll get an

Android - What happens when a signing key expires?

北战南征 提交于 2019-11-30 14:06:38
问题 If a signing key expires, do existing apks refuse to install, or does it just mean that new apps can't be signed with that key? We are recommended to use keys that expire in 25+ years, and Google Play mandates expiry of at least 2033-10-22! However, some people may wish to renew their keys far more frequently than that for security reasons (Moore's law, cracked algorthms, etc.). If an apk's key has expired, is there any way of installing it (without relying on the developer to re-release)?

Programmatically download APK from google play store

断了今生、忘了曾经 提交于 2019-11-30 13:47:44
I am creating an android app which depends on some other android apps. So if these dependent apps are not already there on the users mobile, I would like to download them programmatically from play store. But during this process I don't want the control to go to the Play store app (i.e. no Play store app activity should be visible). Is is possible to achieve this using some service, google API? How do I go about implement this? I tried the market api and it worked but now while installation I am getting "unknown sources" pop up. Is it possible to get rid of form this ?? What is difference

“How are” Android applications (Facebook etc.) installed to an android phone? [closed]

旧街凉风 提交于 2019-11-30 12:18:26
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 years ago . I know how to install an application to an Android device e.g from Play-Store or via an .apk file. But I'd like to understand the actual process of installation. E.g. on Windows: Serial codes etc. are placed in the registry Files important to the running of software are placed

Android Install apk silently by busybox command-line

点点圈 提交于 2019-11-30 10:21:02
I want to install .apk silently in background by BusyBox command. I`ve seen some similar questions like THIS , but I still cant get working my code properly... I have: My .apk I need to install on /sdcard/download/app.apk Root BusyBox installed Code (not working): String sss = Environment.getExternalStorageDirectory() + "/download/" + "app.apk"; Process install; install = Runtime.getRuntime().exec("/system/xbin/busybox pm install " + sss); int success = install.waitFor(); If I use "install" instead of "pm install" it copies file well. P.S. Code above is executing in AsyncTask. No errors, but