[MOD][XPOSED][v1.2] Snapshare - Share images and videos via Snapchat (DISCONTINUED) - Xposed Framework Modules

This thread has been discontinued. For continued development, please go to this thread by amcgavin.​
Snapshare
Share images and videos via Snapchat​
This Xposed module lets you share any image and portrait video via Snapchat, not only pictures you take with the camera from within Snapchat. When you are viewing an image and click on share, Snapshare will pop up as an option. It will load Snapchat and lets you even paint on the image as if you had just taken it with your camera inside Snapchat. Snapshare will crop your images so they fit into your display.
It uses the Xposed framework to intercept launches of Snapchat from Snapshare and do the magic. Because it uses the Xposed framework, it is device and rom independent
If you find any bugs, please report See the section Troubleshooting/Bugs on Github about which logcat filters would be helpful etc.
Confirmed to work with Snapchat 4.0.05 (2013-10-05)
Installation
Install the awesome Xposed framework on your rooted device.
Install and activate the mod, which you can download from my Bintray site. Don't forget to do a (soft) reboot.
To Do
Adding Borders to the image, instead of cropping it, to fit the display area's size. Especially if you want to share, e.g. square Instagram images, this is probably preferable.
Check that the video file to share is at most 1 MB in size, as larger files are rejected by the Snapchat server.
Clicking on the upper left X should return to the Gallery, not the Snapchat camera. Minor priority
Release Notes
1.2 Proper handling of video deletion.
1.1a Fixed version to work with newest Snapchat version 3.0.4
1.1 Support for sharing videos added.
- So far only Portrait videos are supported, as Landscape videos are shown scaled down in Portrait mode in the upper half of the screen.
- Also, if the video is too large, which can happen quickly if recorded with an external app, Snapchat will refuse to send the video. I actually don't even now if you can share any other videos than the ones originally created with Snapchat and saved before sending. Or videos saved by the Keepchat mod.
1.0 First working release. Only image sharing supported.
You can find the sources, technical details, bugs and troubleshooting discussions at my Github repository. This software is released under the GNU GPLv3.
Cheers and enjoy!

Yes.. i thank you soo much!
Edit: didn't work on my device. Note 2 running jbs jellybombed rom. I'll try to get a logcat 2morrow

Didnt work on my device either. Just loads snapchat and turns on the camera when i press share.
Working great on International S3 running CM10.1
Sent from my GT-I9300 using Tapatalk 2

pogi1100 said:
Didnt work on my device either. Just loads snapchat and turns on the camera when i press share.
Sent from my GT-I9300 using Tapatalk 2
Click to expand...
Click to collapse
Well, so far my Nexus 4 running ParanoidAndroid is the only device I could test this on, so I'd be happy if you guys could help me getting this to work on your devices/roms. A logcat would be helpful because the app prints a lot of debugging information in the background. Quote from the README on github:
README said:
If you encounter any problems or bugs with this mod, please open logcat like this
Code:
adb logcat -v time ActivityManager:I Snapshare:D "*:S"
then reproduce the error and report the relevant output (That's why I choose to display the time in logcat's output, I don't wanna have your logcat of the last few days ).
Click to expand...
Click to collapse
For a start, you could just send me the /data/xposed/debug.log file...
You are surely running the newest Snapchat 3.0.1? Which Android versions are you running?

stammler said:
Well, so far my Nexus 4 running ParanoidAndroid is the only device I could test this on, so I'd be happy if you guys could help me getting this to work on your devices/roms. A logcat would be helpful because the app prints a lot of debugging information in the background. Quote from the README on github:
For a start, you could just send me the /data/xposed/debug.log file...
You are surely running the newest Snapchat 3.0.1? Which Android versions are you running?
Click to expand...
Click to collapse
Worked perfectly for me. Running latest Snapchat 3.0.1 on my Galaxy S3. Tried from multiple Gallery apps and had no issues at all!

I've been messing around with the Snapchat API and I've found some information that might be helpful:
-the Snapchat server rejects any uploads over 1MB
-images that are too high resolution (regardless of whether or not it is greater than 1MB) will show up as black
-videos from other sources DO work as long as they are < 1MB (tested on a Galaxy Note II, uploaded with my own app, recorded at low quality settings with final size at 940k). I even grabbed a random YouTube video (a jump scare) and sent it as a snap to one of my friends for fun
In addition, I have some other questions. I will PM you with those as they are not as relevant to this thread

wchill said:
I've been messing around with the Snapchat API and I've found some information that might be helpful:
-the Snapchat server rejects any uploads over 1MB
-images that are too high resolution (regardless of whether or not it is greater than 1MB) will show up as black
-videos from other sources DO work as long as they are < 1MB (tested on a Galaxy Note II, uploaded with my own app, recorded at low quality settings with final size at 940k). I even grabbed a random YouTube video (a jump scare) and sent it as a snap to one of my friends for fun
In addition, I have some other questions. I will PM you with those as they are not as relevant to this thread
Click to expand...
Click to collapse
Thanks for that! The 1 MB limit is very helpful indeed! I might show a Toast message if the video's size is above 1 MB or something like that.
The resolution of the image is no problem, as Snapshare internally crops and scales too large images so that they fit into the DisplayMetrics.widthPixels x DisplayMetrics.heightPixels rectangle.

stammler said:
Thanks for that! The 1 MB limit is very helpful indeed! I might show a Toast message if the video's size is above 1 MB or something like that.
The resolution of the image is no problem, as Snapshare internally crops and scales too large images so that they fit into the DisplayMetrics.widthPixels x DisplayMetrics.heightPixels rectangle.
Click to expand...
Click to collapse
Ah, I just noticed the crop/scale code. I've been using inSampleSize to scale myself

Nvm forgot to enable xposed as I just upgraded my ROM. Working marvelously on Temadek's CM10.1 on International S3 :good:
Sent from my GT-I9300 using Tapatalk 2

Thanks! Working flawless with my nexus 4 on AOKP rom This is awesome!
Sent from my Nexus 4 using xda app-developers app

pogi1100 said:
Nvm forgot to enable xposed as I just upgraded my ROM. Working marvelously on Temadek's CM10.1 on International S3 :good:
Sent from my GT-I9300 using Tapatalk 2
Click to expand...
Click to collapse
And I even wrote in the Installation notice to do a soft reboot Maybe you could edit your first post so ppl scrolling from above see the solution more quickly. thanks!

wchill said:
Ah, I just noticed the crop/scale code. I've been using inSampleSize to scale myself
Click to expand...
Click to collapse
Well, inSampleSize only lets you scale by powers of 2, which in practice means (if you scale an image to display it full screen) you use it with a factor of 1 (no scaling), 2 or very seldom 4 For Snapchat, I have to provide the Bitmap to fit on the display pixel-to-pixel, otherwise it is doing strange stuff. However, in the code you find a TODO item to use inSampleSize for the initialisation of the bitmap in cases where the image is very large, to improve performance. But because I scale the bitmap down anyway, this is not essential for the mod to work, but at some point I'll probably implement this...

stammler said:
Well, inSampleSize only lets you scale by powers of 2, which in practice means (if you scale an image to display it full screen) you use it with a factor of 1 (no scaling), 2 or very seldom 4 For Snapchat, I have to provide the Bitmap to fit on the display pixel-to-pixel, otherwise it is doing strange stuff. However, in the code you find a TODO item to use inSampleSize for the initialisation of the bitmap in cases where the image is very large, to improve performance. But because I scale the bitmap down anyway, this is not essential for the mod to work, but at some point I'll probably implement this...
Click to expand...
Click to collapse
This was something I was having an issue with. I'm thinking I'll probably use inSampleSize with a scale size of 1/2 or less so that it's just above the maximum resolution and then scale it down from there

wchill said:
This was something I was having an issue with. I'm thinking I'll probably use inSampleSize with a scale size of 1/2 or less so that it's just above the maximum resolution and then scale it down from there
Click to expand...
Click to collapse
Yeah that's exactly what I meant. But you'll very rarely use a factor other than 1 or 1/2...

Saw on Reddit.
Worked great on ATT Galaxy S4 with Xposed Mod.

Thanks
Sent from my Nexus 4 using Tapatalk 4 Beta

very nice! thank you!!!

Confirmed working on stock rooted tmobile HTC one. (S-off)
Sent from my HTC One using xda app-developers app

Snapshare to iphone
Amazing mod, but something i've noticed is that any vid being sent to an ios device gets cut off at 10 secs.

phazi said:
Amazing mod, but something i've noticed is that any vid being sent to an ios device gets cut off at 10 secs.
Click to expand...
Click to collapse
10 secs is the maximum length of a video for Snapchat.
-----------------------
Copy: get 20GB free permanent cloud storage. For every person you get to sign-up earn another 5GB https://copy.com?r=m3asrR

Related

[Q] overlay text on camera feed

Hi,
I was wondering if someone knows if it would be doable to write text as an overlay to a video feed... My main goal would be to add GPS data (speed, direction, etc) to the feed.
A similar question was asked over a year ago, but never got any feedback: http://forum.xda-developers.com/showthread.php?t=758936
Maybe today's knowledge will enable us to do this?
palloquin said:
Hi,
I was wondering if someone knows if it would be doable to write text as an overlay to a video feed... My main goal would be to add GPS data (speed, direction, etc) to the feed.
A similar question was asked over a year ago, but never got any feedback: http://forum.xda-developers.com/showthread.php?t=758936
Maybe today's knowledge will enable us to do this?
Click to expand...
Click to collapse
Yes, you can.
Regarding your original post, you don't even need to record video. You just need to prepare a layout w/ a FrameLayout containing a Canvas/SurfaceImage where you will output the video from the Camera, and a TextView (or a more complex view depending on your particular needs) where you will output GPS data (or any other text).
Job done.
If you want to record it as a video, it will require more work, because you'll have to overlay the video feed with the text, then re-encode the feed. I haven't yet dealt with video recording, I made a simple (private) app which overlaps the current date and time on the captured image from the Camera. Since you're creating new images, you need to be sure your device has enough RAM to do the processing (or scale the image to be smaller and require less RAM).
That sounds rather simple (even though I have never build an Android App in my life, I have built for other platforms.)
But, this way you 'just' build an app that shows your video this way. What if I would want to change the video feed so any application (android camera app, Skype, etc..) will get this feed with the added overlay... Would THAT be doable?
Questions or Problems Should Not Be Posted in the Development Forum
Please Post in the Correct Forums
Moving to Q&A
palloquin said:
But, this way you 'just' build an app that shows your video this way. What if I would want to change the video feed so any application (android camera app, Skype, etc..) will get this feed with the added overlay... Would THAT be doable?
Click to expand...
Click to collapse
In order to accomplish that, you'd need to rewrite the (internal) code which talks to the camera. Either at kernel level, or at android API level.
So either with a custom kernel or a custom ROM. No other way.
It's 2016, is there a built in way to recording a phone's video feed with a PNG still image or animated overlay?

[Q] Checking 1 app request

Hello,
I am going to buy Nexus 10. One of my main goal is to use it with Virtual CDU app. Unfortunaltey i cannot check device if it is compatible with this app with such a high resolution display. It is very important to me and I would be very grateful if someone of you - nexus 10 users could install this app and check. You can find demo version on GooglePlay. Just search for Virtual CDU.
It would be enough to just start the app and check if it looks like on pictures in googleplay site, if there is no any problems with display in such a high resolution and if this "calculator" covers entire screen space.
Thank you in advance,
Zgr
Zgredd said:
Hello,
I am going to buy Nexus 10. One of my main goal is to use it with Virtual CDU app. Unfortunaltey i cannot check device if it is compatible with this app with such a high resolution display. It is very important to me and I would be very grateful if someone of you - nexus 10 users could install this app and check. You can find demo version on GooglePlay. Just search for Virtual CDU.
It would be enough to just start the app and check if it looks like on pictures in googleplay site, if there is no any problems with display in such a high resolution and if this "calculator" covers entire screen space.
Thank you in advance,
Zgr
Click to expand...
Click to collapse
Installed fine and looks fine.
Sent from my Nexus 10 using xda app-developers app
Thank you very much! It sounds good for me.

[App] Looking for Beta Testers for 9GAG+

Update,
the app is nearly finished and currently in public beta. You may find it here: http://www.windowsphone.com/s?appid=e4a9c785-efde-4794-8663-d562724e4fbd
Hey,
I'm looking for beta testers for yet another 9GAG client for Windows Phone (8+). I know there are already plenty of clients available but none of them satisfy my demanding Actually there's only one client by Rudy Huyn (Market Link) which is quite good but keeps crashing since the last few updates. In addition it's somehow slow - I don't like that. So, I came up with another one
The app is not finished yet and still under development.
What's working?
viewing posts
viewing comments
downloading images, saving theme into the media library
sharing posts
pan and zoom (up to 25x)
rendering of extra large images (greater than 4000x4000)
What's not working (yet)?
videos
gif animations (ironically I included the gif section already )
uploading images
posting comments
all items on the start screen (screenshot 2, bookmarks working since 1.0.0.2)
up/down-voting comments/images
What's missing
license information and credits (guys who made the wallpaper, screenshot 1-6)
search
you tell me
Known bugs (so far)
double tapping a downscaled images which aspect ratio is nearly the same as the device's screen, sometimes doesn't initiate a zoom (like screenshot 11)
when there are too many replies to a comment, the client will not fetch all of them correctly
still some concurrency problems resulting in an app crash
you tell me
I attached some screenshots of the app. If you'd like to help me, just send me a PM with your LIVE e-mail address (the one you are using for the market). At the moment I'm looking for up to 10-15 testers.
I wish I could pay you for your efforts but I can't However, I will offer each beta tester a refund for the in-app purchase to remove ads (~1.5$).
During beta stage there won't be ads and if so, all in-app purchases are free during the app is published within the beta market. There won't be a "stand alone" paid version of this app.
I appreciate any help. Thanks in advance.
Yeah, Rudy Huyn app is good, but crashing (mostly on devices with 512MB RAM).
9gag app for devices with less RAM would be good. Lookin forward.
qpkqkma said:
Yeah, Rudy Huyn app is good, but crashing (mostly on devices with 512MB RAM).
9gag app for devices with less RAM would be good. Lookin forward.
Click to expand...
Click to collapse
You're welcome to give it a try
shoputer said:
Hey,
I'm looking for beta testers for yet another 9GAG client for Windows Phone (8+). I know there are already plenty of clients available but none of them satisfy my demanding Actually there's only one client by Rudy Huyn (Market Link) which is quite good but keeps crashing since the last few updates. In addition it's somehow slow - I don't like that. So, I came up with another one
The app is not finished yet and still under development.
What's working?
viewing posts
viewing comments
downloading images, saving theme into the media library
sharing posts
pan and zoom (up to 25x)
rendering of extra large images (greater than 4000x4000)
What's not working (yet)?
videos
gif animations (ironically I included the gif section already )
uploading images
posting comments
all items on the start screen (screenshot 2)
up/down-voting comments/images
What's missing
license information and credits (guys who made the wallpaper, screenshot 1-6)
search
you tell me
Known bugs (so far)
double tapping a downscaled images which aspect ratio is nearly the same as the device's screen, sometimes doesn't initiate a zoom (like screenshot 11)
when there are too many replies to a comment, the client will not fetch all of them correctly
still some concurrency problems resulting in an app crash
you tell me
I attached some screenshots of the app. If you'd like to help me, just send me a PM with your LIVE e-mail address (the one you are using for the market). At the moment I'm looking for up to 10-15 testers.
I wish I could pay you for your efforts but I can't However, I will offer each beta tester a refund for the in-app purchase to remove ads (~1.5$).
During beta stage there won't be ads and if so, all in-app purchases are free during the app is published within the beta market. There won't be a "stand alone" paid version of this app.
I appreciate any help. Thanks in advance.
Click to expand...
Click to collapse
I can help
qpkqkma said:
Yeah, Rudy Huyn app is good, but crashing (mostly on devices with 512MB RAM).
9gag app for devices with less RAM would be good. Lookin forward.
Click to expand...
Click to collapse
it even crashes on 1gb devices
9GAG+ works perfectly so far, of course only the implemented features. I've used it a few times already and can report no crashes.. and the comment design is awesome
can you add the option to directly hum to the first post of a list, e.g. when I click trending? so far, it looks really good
th0mas96 said:
can you add the option to directly hum to the first post of a list, e.g. when I click trending? so far, it looks really good
Click to expand...
Click to collapse
You mean switching to fullscreen directly instead of showing the list first?
Yep, would be nice I think.. Maybe as an option?
beray07 said:
I can help
Click to expand...
Click to collapse
You're very welcome. Just send me a PM with your market e-mail address, so that I can grant you access to the app within the beta market.
th0mas96 said:
Yep, would be nice I think.. Maybe as an option?
Click to expand...
Click to collapse
Sounds good I'm going to finish the bookmark system this evening (currently I'm stuck at work ;(). Afterwards I will implement the settings page. If you're lucky you can use it tomorrow morning
I think you're doing good job, from screenshot I can see 2 good differences with other's app
1 comment part ,yours is cleaner
2 screenshot 6, I like it! so I can click only the post I want (everything but the stupid duck )
just sent you pm...
qandrav said:
I think you're doing good job, from screenshot I can see 2 good differences with other's app
1 comment part ,yours is cleaner
2 screenshot 6, I like it! so I can click only the post I want (everything but the stupid duck )
just sent you pm...
Click to expand...
Click to collapse
Thank you I just sent you a PM with the market link.
I just submitted an update to the market. Bookmarks are working for now Still no settings
Edit.
At the moment there are 3 testers. So, don't hesitate to drop me a few lines
I'm busy right now , can't try the "bookmark" error you described in pm, but I was thinking if you can add "resume last position" for the sections...(like the other app), bye :good:
Bookmarks work fine so far, only removing them from bookmarks is only temporary (reloading the list gets all bookmarks again)
th0mas96 said:
Bookmarks work fine so far, only removing them from bookmarks is only temporary (reloading the list gets all bookmarks again)
Click to expand...
Click to collapse
Are you sure on that? Coz actually it isn't possible. The list maps directly to a database. When you remove an item from the list, it's removed from the database automatically. I also cannot reproduce what you are saying. Is anybody else experiencing the same?
edit.
I just pushed another tiny update to the store
1.0.0.3
- submitting crash reports should work now
- added (basic) settings. choose which channel shall be displayed on the hub page and whether to start browsing channels in fullscreen or in "quick browsing mode"
- localization: en, de
shoputer said:
Are you sure on that? Coz actually it isn't possible. The list maps directly to a database. When you remove an item from the list, it's removed from the database automatically. I also cannot reproduce what you are saying. Is anybody else experiencing the same?
edit.
I just pushed another tiny update to the store
1.0.0.3
- submitting crash reports should work now
- added (basic) settings. choose which channel shall be displayed on the hub page and whether to start browsing channels in fullscreen or in "quick browsing mode"
- localization: en, de
Click to expand...
Click to collapse
I update right now!
the home is better with icons before "bookmark, settings ecc"
Maybe it's normal but when you navigate through the two pages of channels sometimes it makes some lag, but not everytime.
Are you interested about italian translation?
qandrav said:
I'm busy right now , can't try the "bookmark" error you described in pm, but I was thinking if you can add "resume last position" for the sections...(like the other app), bye :good:
Click to expand...
Click to collapse
I will definitely think about this feature. At the moment I don't have clue how to implement it without breaking user experience.
The problem is quite simple. The collection of items displayed in a list are fully virtualized. That means items are both loaded and rendered on demand - starting with the most recent post in a channel. It's more or less simple to initialize a channel from a specified point (last position the user left) but at that time I don't know anything about the ancestor items (posts). In the end the list, which is shown to you, will start at the last position you left and you won't be able slide left to view newer posts. The only solution which currently comes to my mind is to load a channel from the beginning and skipping all items until I reach the one you viewed last time. Of course I can do this but it's a damn waste of resources (CPU, memory and traffic).
As said, I will think about this one. But not now
qandrav said:
I update right now!
the home is better with icons before "bookmark, settings ecc"
Maybe it's normal but when you navigate through the two pages of channels sometimes it makes some lag, but not everytime.
Are you interested about italian translation?
Click to expand...
Click to collapse
Well, it shouldn't be normal
Just to make sure I get your point. You're talking about the list view and fullscreen view of a channel? The lag occures when you switch between those two views?
An Italian translation would be great but at the moment I need to finish the app first. Afterwards I could provide you with a list of strings
Starting to test it tommorow
ok tried a lot and no more lag , never! I think there was some bloatware running on the phone.
about the "resume last post" I'm not a dev but I understand to fix... I prefer your app over other's becuase it's faster, if I have to choose between "resume" and speed, the second one is better!!!
good job!
excuse my English with
I'm not a dev but I understand to fix
Click to expand...
Click to collapse
I wanted write
I'm not a dev but I can imagine creating "resume position" is a pain in the a**
Click to expand...
Click to collapse
As I told you in the Email, great app.
Here are some ideas to make the app better:
1. For the channels icon you can take the latest picture from tha cahnnel (you can make it refresh every time the app starts or sth. like that)
2. Resume from the last picture you saw in the channel. That means when I'm watching a channel and than go back to the menu and watch other channel and wann go back to the previous channel so that I musn't start watching from the latest picture but there will be a pop up window or sth like that so I will be able to choose if I want resume or start new session.
3. When I tap on the picture there is always some free space under tha picture (see in the attachments "screen 1.png"). It looks really crappy so you should remove it.
That's all till now I will tell you when I found sth.
Greetz
@shoputer:
like to help you with beta testing, wrote you a PM with details

[APP] PDF Reader for Android Wear (standalone PDF viewer)

Having PDF reader on a wrist is probably pointless for most people and there's none on Google Play for Wear yet but some people are asking for it and Android 5.0 makes it incredibly easy to create such app so why not? Here's first version of such app.
How to start viewing PDF on Android Wear?
Tap share from opened PDF file in Adobe Reader and select „PDF Reader“ (same red colored icon).
Alternatively browse to your PDF file in any file manager on your phone and open it in „PDF Reader“.
Within a moment, it will be transferred to Wear. (But transferring files as large as 50 MB will take few minutes.)
How to control PDF Reader on Android Wear?
You can use touch, double tap, pinch and even double touch drag („one hand zoom“) to browse your content. To move between pages, use the dedicated controls at bottom of the screen. Page indicator can be touched to enable dictation (for skiping to specific page number).
Please note that it's not really technically feasible to support reflow in this small and free app.
Technical notes:
This app is built upon Android's PdfRenderer (and PdfRendererBasic code sample). It also uses TouchImageView from https://github.com/MikeOrtiz/TouchImageView.
Download (Free, on Google Play)
As always, feedback welcome.
Moto 360 don't show next and prev buttons
khakala said:
Moto 360 don't show next and prev buttons
Click to expand...
Click to collapse
I was afraid of that. But the controls could still work, right?
I really don't know (and didn't find any answer yet) whatever I can detect the bottom gap or design the layout for both types of round devices (plus it can't be tested without real Moto 360). Maybe I will hack it just to include bigger bottom padding for Moto 360...
If you or some one else want, here's alternative version with all controls on top.
EDIT: No longer needed.
Thank's for the alternative version, now i can change pages on my moto 360. This is very useful app!
khakala said:
Thank's for the alternative version, now i can change pages on my moto 360. This is very useful app!
Click to expand...
Click to collapse
Could you or anyone else please try the attached version? In this version I detect device and have special padding for Moto 360. Does it work and are the buttons/texts fully visible?
EDIT: Resolved
Nice and yes buttons are visible and they works.
Thanks for confirming. I've just uploaded this fixed version to Play Store for everyone to enjoy.
How do you delete pdf that has been transferred to the watch?
supac said:
How do you delete pdf that has been transferred to the watch?
Click to expand...
Click to collapse
Currently there's no way for that. The one last received file is always kept on watch.
I see. Thats awesome then
Clone
Hi! I need help. I want to do the clone of this app (because I need more PDFs on my watch). But after rebuild the size of app is 3+ mb and my watch doesn't recognize it. How I can do the clone?
PS: Also, I want to change app name
hepolise said:
Hi! I need help. I want to do the clone of this app (because I need more PDFs on my watch). But after rebuild the size of app is 3+ mb and my watch doesn't recognize it. How I can do the clone?
PS: Also, I want to change app name
Click to expand...
Click to collapse
As the whole code is basically just few examples put together (in my dirty way), here's the source: https://github.com/moneytoo/PdfReaderForAndroidWear
Can you share apk when you achieve being able to store more pdfs?
hepolise said:
Hi! I need help. I want to do the clone of this app (because I need more PDFs on my watch). But after rebuild the size of app is 3+ mb and my watch doesn't recognize it. How I can do the clone?
PS: Also, I want to change app name
Click to expand...
Click to collapse
What is the maximun number of pages for each pdf?
I am conaidering buying a moto 360 if this works properly
mantiyeah said:
What is the maximun number of pages for each pdf?
I am conaidering buying a moto 360 if this works properly
Click to expand...
Click to collapse
It can display any pdf file - as long it fits your watch memory (4 GB). The only limit is for one file at any time. I would like to add some file browsing eventually but I'm not promissing anything...
moneytoo said:
It can display any pdf file - as long it fits your watch memory (4 GB). The only limit is for one file at any time. I would like to add some file browsing eventually but I'm not promissing anything...
Click to expand...
Click to collapse
Perfect.
Thank you very much for the effort that you already made.
moneytoo said:
It can display any pdf file - as long it fits your watch memory (4 GB). The only limit is for one file at any time. I would like to add some file browsing eventually but I'm not promissing anything...
Click to expand...
Click to collapse
Could you please post the file apk so that I can clone it and read multiple pdf files please?
I could make a donation if needed.
thanks
---------- Post added at 01:12 AM ---------- Previous post was at 12:34 AM ----------
hepolise said:
Hi! I need help. I want to do the clone of this app (because I need more PDFs on my watch). But after rebuild the size of app is 3+ mb and my watch doesn't recognize it. How I can do the clone?
PS: Also, I want to change app name
Click to expand...
Click to collapse
did you manage to clone it?
The current version can now handle multiple files.
moneytoo said:
The current version can now handle multiple files.
Click to expand...
Click to collapse
As I say to you already, the app is great as it is.
You just need to find more easy and faster way to skip between pages.
By the way, how can I disable the invert mode? It's problematic when you try to do one hand zoom ( double tap and drag).
eklkpj said:
You just need to find more easy and faster way to skip between pages.
Click to expand...
Click to collapse
I work on adding SeekBar.
eklkpj said:
By the way, how can I disable the invert mode?
Click to expand...
Click to collapse
Select Toggle Invert from menu (accessible via long press).
eklkpj said:
It's problematic when you try to do one hand zoom ( double tap and drag).
Click to expand...
Click to collapse
Yeah, it's problematic. I suspect an issue in TouchImageView which I use (or not, maybe just my implementation bug). I know about it and intent to investigate.

[Q] Manual Camera

Anyone can say whether the Edge is compatible with the Manual Camera app in the Play store? There is a compatibility checker which can check before you buy. It seems many Lollipop phones do not implement the full camera api.
It is
Here
Great! Thanks.
what app is this would like to give it a look
I'm looking to buy the s6 mainly cuz I liked the camera and it was running on lollipop. I was wondering if it was fully utilizing the camera2 api, since the native camera app couldn't control shutter speed. Thanks for checking this as I wanted full manual on the camera.
Dovigoldberger said:
Here
Click to expand...
Click to collapse
That's amazing. I like this phone more and more every day
Hi,
According to the person who wrote this article, it seems that the camera2 api is not fully supported at the moment :
http://spectrastudy.com/camera2-api-on-mwc-2015-devices/
The manual camera checks would then bit too enthusiastic if this is true.
Can anyone who has manual camera installed try to take a picture in RAW and post the DNG file here?
I couldn't find any S6 DNG file on the web; it would be great if someone could confirm whether it is really possible to shoot in RAW with the S6.
With a Nexus 5, the 3 following apps can shoot in RAW :
- a better camera (there is a free version with limited number of shots in case)
- camera fv-5 (paid app)
- manual camera (paid app)
vincent2167 said:
Hi,
According to the person who wrote this article, it seems that the camera2 api is not fully supported at the moment :
http://spectrastudy.com/camera2-api-on-mwc-2015-devices/
The manual camera checks would then bit too enthusiastic if this is true.
Can anyone who has manual camera installed try to take a picture in RAW and post the DNG file here?
I couldn't find any S6 DNG file on the web; it would be great if someone could confirm whether it is really possible to shoot in RAW with the S6.
With a Nexus 5, the 3 following apps can shoot in RAW :
- a better camera (there is a free version with limited number of shots in case)
- camera fv-5 (paid app)
- manual camera (paid app)
Click to expand...
Click to collapse
you can't the camera app will crash...
This app causes phone to reboot, even though the compatibility check says the phone is compatible.
Proceed with caution.
I bought Manual Camera and it just FCs every time I try to open it....I got a refund instead of waiting for a fix.
Force close here too
I had previously bought Manual Camera during using Nexus 6.
I try install the Manual Camera at S6 Edge and it won't work where my phone will auto restart once I run the Manual Camera.
Andrewtst said:
I had previously bought Manual Camera during using Nexus 6.
I try install the Manual Camera at S6 Edge and it won't work where my phone will auto restart once I run the Manual Camera.
Click to expand...
Click to collapse
Strange. Works great for me. Does warn about not supporting RAW. ISO limited to 100 (goes down to 50 on Nexus 6) but still takes great pix!
cpufrost said:
Strange. Works great for me. Does warn about not supporting RAW. ISO limited to 100 (goes down to 50 on Nexus 6) but still takes great pix!
Click to expand...
Click to collapse
You the only said working. All peoples above mention not working.
It does work it just doesn't have all the features like the Nexus devices.
Andrewtst said:
You the only said working. All peoples above mention not working.
Click to expand...
Click to collapse
Well it *was* working.
Went to use it today, rebooted phone!
Tried several times and it started working again but it doesn't seem stable, get FC on shutdown, etc.
Will remove and wait to see if they have an updated that fixes this.
Works great on my Nexus6.
50 ISO (where lighting permits) looks fantastic.
Do use FV5 a lot.
The stock Samsung app is very nice too.
The added pro mode is exactly what was needed.
norm2002 said:
Anyone can say whether the Edge is compatible with the Manual Camera app in the Play store? There is a compatibility checker which can check before you buy. It seems many Lollipop phones do not implement the full camera api.
Click to expand...
Click to collapse
Look at that: http://www.xda-developers.com/samsung-galaxy-s6-to-receive-major-camera-update/

Categories

Resources