[Q] Nokia Product Support Tool Error - Nokia Lumia 920

Sorry I am posting here guys but I downloaded the Nokia Care Suite 5.0, because I want to flash my Nokia Lumia 920. I downloaded all drivers for it and the Data Package Manager. But when I start the Product Support Tool For Store 5.0 I get an error like this:
Failed to create COM-class maker Calling a (z) {6BCF7DCA-7B86-453E-BC72-724E0E656B95} CLSID identifier component for due to the following error: 80040154 Class not registered (Exception HRESULT value: 0x80040154 (REGDB_E_CLASSNOTREG)).
the following location: Nokia.CareSuite.Connectivity.FuseConnectivity.LoadFuse ()
the following location: Nokia.CareSuite.Applications.ProductSupportToolForStore.ProductSupportToolForStore.RunInternal ()
the following location: Nokia.CareSuite.Applications.ProductSupportToolForStore.ProductSupportToolForStore.Run ()
the following location: Nokia.CareSuite.Applications.ProductSupportToolForStore.ProductSupportToolForStore.Main ()
What's this? And how can I fix this error?
Thanks for your help guys!

Related

[Q] Help me please !!!

hello everyone ,
I'm a new in developing application .
OK , I followed guides how to install the SDK and eclipse now when I'm trying to write application i get theses error(s)
Multiple annotations found at this line:
- The markup in the document following the root element must be well-
formed.
- error: Error parsing XML: junk after document element
"R cannot be resolved to a variable"
please help me to find out a solution !

[Q] Android Proguard ERROR: Unknown verificatification type[10]

I am trying to build an apk file for release. My application lib contains a jar (probably obfuscated) from a third party vendor of one of my company's hard-wares. When I build the apk in debug mode it is successful, but when I try to do it in release mode using "ant release" it throws the following error.
Code:
BUILD FAILED
C:\adt-bundle-windows-x86_64\sdk\tools\ant\build.xml:868: Can't read [D:\Workspace\MyProject\libs\ThirdPartyJarV3.1.jar] (Can't process class [g.class] (Unknown verification type [10] in stack map frame))
I have successfully built apks in release mode for other projects (which doesn't have this jar file.)
It seems to be an issue around proguard not being able to read this class in the jar. I have looked through ProGuard's trouble shooting manual and also on google and found no help with this particular error:
Code:
(Unknown verification type [10] in stack map frame)
I also updated proguard from V4.7 to 4.10, but it still encounters the same error.
To my little mind it seems to be a problem with the jar itself and if so how do I fix it? Any help would be appreciated. TIA!
[P.S: I'm new to android]

Invalid Android ID (aid:0)

Hi guys...
Since few weeks now, i'm facing to an unsolvable trouble that prevent me to access to google play (with the famous error "No Connexion"). I spent hard time to search why, tried some fixes found on the web... Nothing works.
This morning, i found with the Android Device-ID application that my "GSF Device-ID" is set to "null" ! Said differently, i'm pretty sure that my device (Samsung Galaxy S2) can't be recognized and identified on Play store because of this, giving me the "No Connexion" error.
Does anybody here know how i could fix this invalid ID (which is confirmed with the *#*#8255#*#* trick : aid:0 (INVALID AID!!!)
Thanks in advance for your help.
cheers
UP.
Nobody can help ? i can't believe it according to the number of gurus here
I am more and more convinced that the secret of this famous GSF ID is jealously guarded by its creators, and finally how to handle it are not or little known ... And for good reason, since this is for Google one of the only way to identify and thus tracking devices safely and reliably. Make it easily editable would be a disaster for them I guess ...
I still dare to hope that some geniuses who frequent this forum have already faced this problem and had pierced the mystery and how to handle this identifier.
I found the beginning of an answer with the sources code of an app "Android ID" :
Code:
private static final Uri URI = Uri.parse("content://com.google.android.gsf.gservices");
private static final String ID_KEY = "android_id";
String getAndroidId(Context ctx) {
String[] params = { ID_KEY };
Cursor c = ctx.getContentResolver()
.query(URI, null, null, params, null);
if (!c.moveToFirst() || c.getColumnCount() < 2)
return null;
try {
return Long.toHexString(Long.parseLong(c.getString(1)));
} catch (NumberFormatException e) {
return null;
}
}
In my case, i get a "null" for GSFID. That means no columns are found in reply to the query.
I have verified this by installing aSQLiteManager on my SGS2, and opening the gservices.db database.
My problem now is to find what are the key fields
that are supposed to be filled in order to have a GSF value returned.
Maybe some of you could provide me this information by having a look to your own configuration.
Thanks in advance.
I've got same problem
My phone is LG Optimus L5 and after I rooted my phone,I've got same problem and I couldn't connect to Google products and my AID's been null!

Problem when trying to obtain a List from a Parcel object

Hi, I'm italian so I apologize for my bad english...
I have a problem when I use the method
Code:
readList(List outVal, ClassLoader loader)
I use this in this way
Code:
parcel.readList(mylist, null)
I want to put the list that I putted into the parcel object in mylist. But when I try to access to the list I obtain a nullPointerException...
What is wrong?

How Do I Avoid JSON.parse() Parsing Errors in Quick Apps

Symptom​The data returned by the fetch request in the code is a JSON character string by default and the logic of parsing JSON objects is used.
Once the server permission verification fails, an HTML page with error code 503 may be returned, meaning the JSON parsing logic is not suitable.
Solution​Solution 1: Add try-catch to each place where JSON.parse() is executed to capture and handle errors.
Solution 2: Process JSON.parse() in the app.ux file in advance and add try-catch to the code. Record event tracing data or return the default normal data when an exception occurs.
Solution 2 is recommended and the sample code is as follows:
Code:
export function parseProxy () {
const rawParse = JSON.parse
JSON.parse = function (str, defaults) {
try {
return rawParse(str)
}
catch (err) {
console.error(`JSON parsing failure:${str}, ${err.stack}`)
return defaults
}
}
}
after adding try-catch does it parse JSON data or does it just handles the crash part?

Categories

Resources