reinstall

Android application ClassNotFoundException after download and install update

岁酱吖の 提交于 2019-12-24 06:29:15
问题 I have an android app with a custom Application class. public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); Utils.isThereUpdatedVersion(this); } } The isThereUpdatedVersion function asks a php page is. There is a new version of my app available and there is a button one goes to another activity with a button to download an install the new version. I added the android:name attribute to my Manifest <application android:allowBackup="true" android

Android application ClassNotFoundException after download and install update

谁说我不能喝 提交于 2019-12-24 06:29:15
问题 I have an android app with a custom Application class. public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); Utils.isThereUpdatedVersion(this); } } The isThereUpdatedVersion function asks a php page is. There is a new version of my app available and there is a button one goes to another activity with a button to download an install the new version. I added the android:name attribute to my Manifest <application android:allowBackup="true" android

Xcode 9.3 and update to High Sierra: Instruments can't open *.tracetemplate files even after full reinstall

僤鯓⒐⒋嵵緔 提交于 2019-12-23 10:27:29
问题 With the last update of Xcode to 9.3 running on High Sierra, I realized that Instruments is not working any more. When I try to open it from inside Xcode using Open Developer Tool > Instruments , I can see the template chooser dialog but as soon I pick one, a dialog appears: The document "Allocations.tracetemplate" could not be opened. Instruments cannot open files of this type. Allocations.tracetemplate could not be handled because Instruments cannot open files of this type. This happens

import _socket: “Import Error: DLL load failed”

◇◆丶佛笑我妖孽 提交于 2019-12-21 03:16:05
问题 I was attempting to install Django and pymc yesterday. After running into a lot of problems I decided to just re-install Python 2.7. I've done that but am now having problems import almost anything. I get a bunch of lines, the last of which are: File "c:\python27\lib\httplib.py", line 71, in <module> import socket File "c:\python27\lib\socket.py", line 47, in <module> import _socket ImportError: DLL load failed: The specified procedure could not be found. Whether I run python in the command

ReInstall Visual Studio 2015

回眸只為那壹抹淺笑 提交于 2019-12-13 06:11:28
问题 My Win 10 version of Visual Studio 2015 Community edition failed to load with error "cannot find one or more components .Please reinstall the application". I've tried repairing it but received nondescript errors so cancelled the repair (which also reported similar errors and eventually that 116 out 120 components had been repaired - iirc). I then tried an uninstall, but that crashed windows. On reboot, the VS 2015 uninstall options screen was displayed. Tried uninstall again but progress bar

Reinstall /Library/Python on OS X Leopard

痞子三分冷 提交于 2019-12-13 04:22:25
问题 I accidentally removed /Library/Python on OS X Leopard. How can I reinstall that? 回答1: /Library/Python contains your python site-packages, which is the local software you've installed using commands like python setup.py install . The pieces here are third-party packages, not items installed by Apple - your actual Python installation is still safe in /System/Library/etc... In other words, the default OS leaves these directories mostly blank... nothing in there is critical (just a readme and a

Completely reinstalling Ruby Rails and Gem on Mac OS X

不问归期 提交于 2019-12-11 07:23:50
问题 I've recently started teaching myself Ruby on Rails, and it's all going well except I'm looking to completely reinstall Ruby, Rails and Gem. I think I got a bit too excited at some point and deleted/modified some files or folders I shouldn't have, so I just want to get my system back to its original state so that I can reinstall the necessary Ruby, Rails and Gem bits. I've read in places that I can install something called rvm to do this, but right now I just want to keep my system as simple

Re-install MySql in mac os x 10.6.6

£可爱£侵袭症+ 提交于 2019-12-10 18:53:10
问题 I had earlier installed mysql-5.1.50-osx10.6-x86_64.dmg and then uninstalled it using the below belo command (found in stackoverflow) $ sudo rm /usr/local/mysql Password: $ sudo rm -rf /usr/local/mysql* $ sudo rm -rf /Library/StartupItems/MySQLCOM $ sudo rm -rf /Library/PreferencePanes/My* $ rm -rf ~/Library/PreferencePanes/My* $ sudo rm -rf /Library/Receipts/mysql* $ sudo rm -rf /Library/Receipts/MySQL* $ sudo vi /etc/hostconfig $ sudo rm -rf /var/db/receipts/com.mysql.mysql* $ cd /Library

WIX. How to not reinstall a feature during repair?

廉价感情. 提交于 2019-12-10 17:51:06
问题 In WIX I'd like a feature to be installed and uninstalled normally but not to be touched during repair. I was not able to find a condition which would allow me to do this. My attempts has failed: the feature is reinstalled on repair (what I do not need) or is not uninstalled. This is a sample that I tried last: <Feature Id="aFeature" Title="A Features" Level="1"> <ComponentRef Id="aComponent" /> <Condition Level="0"> <![CDATA[WixUI_InstallMode="Repair"]]> </Condition> </Feature> What is the

Update Installed Recent Inno Version but Remove Older Non-Inno Versions Before Re-install

北战南征 提交于 2019-12-10 12:24:24
问题 The scenario occurs when having to switch Installers (in this case Wise moving on). The situation of previous Inno Installers is handled by the Installer here. One inelegant way of telling whether a pre-Inno version is by absence of a reg key installed with Inno versions: Root: HKCU; Subkey: "Software\{#MyAppPublisher}\{#MyAppName}"; ... But the other more reliable way (assuming absence of above key by user CCleaner intervention or other) is interrogating the following: Software\Microsoft