"Program type already present" after updating all of my google lib - build.gradle

When I updated all of my google lib I get the error: Program type already present: android.support.v4.os.ResultReceiver$MyResultReceiver, but I don't want to update to androidx, is there another solution?
Thanks in advance for your help.

Related

get ERROR:File google-services.json is missing. The Google Services Plugin cannot function without it' but it is not missing

I have already include google-services.json file in my app but it still give me error. Error:Execution failed for task ':app:processDebugGoogleServices'.
:app:processDebugGoogleServices
File google-services.json is missing. The Google Services Plugin cannot function without it.
I did all the steps according to the guide and add the file to the right place.
what can I do?
please help me:(

Updating GeoLite2 CSV files

Since 1.1.2020 one need to register with MaxMind to get access to the GeoLight2 databases.
I have just sucessfully installed the geoipupdate procedure and can update the GeoLite2 databases.
But I would need the CSV-versions - as those are the used by most of the tools I use.
I have tried to enter the ID's given in my account for the CSV-files, but this resulted in the following error message:
error retrieving updates: error retrieving filename: unexpected HTTP status code: 404 Not Found: Database edition not found
My question:
What is the simplest way to get the CSV-files automatically downloaded?
date=20200107 works.
I guess they update every week\7 days
You can add a crontab every week to download the last update.
See here instructions for direct download:
Take the URL from Maxmind's site.
Replace /geoip_download_by_token with /geoip_download
Replace token=XXXX with license_key=YOUR_LICENSE_KEY. You will need to replace the YOUR_LICENSE_KEY placeholder with an active license key associated with your MaxMind account.
https://dev.maxmind.com/geoip/geoipupdate/#Direct_Downloads
CSV-files are not supported!
As documented here.

Issue with removing a library from Google Apps Script

I deleted a version of a library, and now I'm getting the error "Library with identifier XXXXX is missing (perhaps it was deleted?)". I am also unable to remove the reference to the library. My code now won't run due to the aforementioned error. How can I resolve this?
I figured out how to accomplish this.
1. I need to be owner of the project that has the reference I'm trying to remove
2. Backup the code
3. In Script editor, open the project that has the reference I'm trying to remove
4. Select File - Delete Project
5. Close Script Editor
6. Create a new project, and import the previous code
7. Select Resources - Library to re-add the reference to the library

Octave error : no such file

I'm running Octave 4.0.1 on windows 7 and I'm having this weird issue.
I created a functioning script which is saved under C:/User/Documents/Octave. This script also reads some files in a subfolder of this same location.
The problem is : my script correctly runs TWICE then I have the error "no such file" saying the software did not find my script (the same one I just ran). The only "solution" I have is restarting the whole software but then it still goes nuts on the third run.
In addition to that, my coworker tried it on an ubuntu machine and it seemed to work fine. Do somebody see an explanation?
Thanks
Here is the script :
data = [];
figure();
for i=1:200
filename = strcat('C:/Users/Utilisateur/Documents/Octave/data/DAQ_data_decoded_', num2str(1800+i))
d=lvm_import(filename);
data=[data d.Segment1.data(:,2)];
end;
data=reshape(data,6600,1);
hist(data);
The function lvm_import is a function I found on the web to extract data from a Labview data file. (d.Segment1.data(:,2) is a 33x1 array)
And the error message :
>> daqDataHist
error: no such file, 'C:\Users\Utilisateur\Documents\Octave\daqDataHist.m'
So I still don't really know what was going on but by adding fclose all at the end of the script I got rid of any error and can run the file as many times as I want. It was probably something going wrong with opening and closing the .lvm files and it "jammed" at some point.
Thanks anyway :)

Why does the search function of my CHM file report "No topics found"?

I created a CHM help file using MadCap Flare. When I search for a term that I know is present in my text, the search function always reports "no topics found."
How can I fix the search function?
In my case the problem was fixed by registering itcc.dll on the machine where Flare is installed (the machine building the CHM.)
C:\> regsvr32 itcc.dll
The file is included with MadCap Flare as well as the Microsoft HTML Help Workshop.
I have also found an article indicating that the language setting of the help file can affect the search function.
Here is the Getting Started Guide. Chapter 4 has a section about Search, which might prove useful.