Alex Black

Results 51 comments of Alex Black

I'm hitting an issue trying to use `dts-gen`, has anyone else seen this? Thanks! ``` ./node_modules/.bin/dts-gen -m facebook-nodejs-business-sdk -d types -o Warning: Could not retrieve version/homepage information: HTTP Error 301:...

I think I'm seeing the same issue: ``` java.lang.Exception: Failed to copy logo from file:///storage/emulated/0/Android/data/com.dropbox.android/files/u257401473/scratch/B2DI%20Logo.jpg, failType: IO_ERROR, mimeType: null at com.aadhk.woinvoice.util.LogoUtils$3.onLoadingFailed(ProGuard:152) at com.nostra13.universalimageloader.core.LoadAndDisplayImageTask$2.run(ProGuard:350) at android.os.Handler.handleCallback(Handler.java:739) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:145) at...

I wonder if this might solve it: ``` Uri uri = Uri.parse(fileURI); File pdf = new File(uri.getPath()); ``` From: http://stackoverflow.com/questions/19772856/getting-file-from-sdcard-with-uri

I can reproduce this on an LG Nexus 5 running Android 4.4.4. It happens when I use "Choose a file", see attached. ![screenshot 2015-10-11 11 19 15](https://cloud.githubusercontent.com/assets/148930/10418231/f6790282-7009-11e5-975f-9e460f5fde99.png)

I found a work around. The original URI is this one: `file:///storage/emulated/0/Android/data/com.dropbox.android/files/u13228039/scratch/Photos/2013-Feb%20Hannah/D71_0252.jpg` It failed to load using UniversalImageLoader, with FileNotFoundException. BitmapFactory.decodeFile loads it just fine. If I then use https://github.com/iPaulPro/aFileChooser/blob/master/aFileChooser/src/com/ipaulpro/afilechooser/utils/FileUtils.java#L257...

I filed this as a separate issue, it looks like UIL doesn't support encoded URIs. https://github.com/nostra13/Android-Universal-Image-Loader/issues/1105

I can reproduce what looks like the same issue on an LG Nexus 5 running Android 4.4.4. It happens when I choose "Downloads" to pick an image. See attached. Stack...

I've also seen another variant with another code: ``` Non-fatal Exception: java.lang.Exception: android.database.sqlite.SQLiteConstraintException: columns className, objectId are not unique (code 19) at com.aadhk.woinvoice.util.ParseInit$2.then(ProGuard) at com.aadhk.woinvoice.util.ParseInit$2.then(ProGuard) at bolts.Task$15.run(ProGuard) at bolts.BoltsExecutors$ImmediateExecutor.execute(ProGuard) at...

Hi @wangmengyan95 unfortunately I don't really know how to repro this, but it might go away once https://github.com/ParsePlatform/Parse-SDK-Android/issues/203 is resolved. Basically when the ParseInstallation fails to save (it looks like...