[MOD] request: Screen-Off Memo feature port to Note 4? - Galaxy Note 4 Q&A, Help & Troubleshooting

Hi
I think it would be great if the Note 4 could inherit the Screen-Off Memo feature of the Note 5...
(not sure but maybe this equals a port of the whole Air Command)
Thanks A LOT in advance
beng

I totally agree, is this a real possibility for the note 4?

Surly at some point Note 5 Rom will be ported to Note 4. or maybe Xposed module one day. We need some skilled Dev to take up this project.

That'll be super good & useful.... not to mention up the value of note 4 !

I would donate to that Dev
mydroidfren said:
That'll be super good & useful.... not to mention up the value of note 4 !
Click to expand...
Click to collapse
I would easily donate 50 Euros to dev who will port it across, maybe more depending on quality of the port.

This would not be an easy port, to be honest.
From the video's I've seen the offscreen write feature bypasses the lock without giving the user access to the system. My best guess is that it's integrated into the lock sceens on the N5. We'd have to download them and try.

Parastie said:
This would not be an easy port, to be honest.
From the video's I've seen the offscreen write feature bypasses the lock without giving the user access to the system. My best guess is that it's integrated into the lock sceens on the N5. We'd have to download them and try.
Click to expand...
Click to collapse
I have been checking the codes.
Pls note that there is a separate AirCommandService.apk file in the system/app folder in Note5. This Service is the one that possibly scans the intents when the S Pen is removed and triggers the "BlackMemo" I can find the codes for it as shown in the attachment below.
There would be lot of work to be done as there are codes for the airbutton in the framework.jar files and a few other files and the settings part of spen also needs to be ported as there are codes to check if it is enabled in settings and comparision with Note 4 files show that they are quite different. May be best is to wait for the 5.1.1 release for Note 4 and then try porting this.

shaji_ka_71 said:
I have been checking the codes.
Pls note that there is a separate AirCommandService.apk file in the system/app folder in Note5. This Service is the one that possibly scans the intents when the S Pen is removed and triggers the "BlackMemo" I can find the codes for it as shown in the attachment below.
There would be lot of work to be done as there are codes for the airbutton in the framework.jar files and a few other files and the settings part of spen also needs to be ported as there are codes to check if it is enabled in settings and comparision with Note 4 files show that they are quite different. May be best is to wait for the 5.1.1 release for Note 4 and then try porting this.
Click to expand...
Click to collapse
I'm not familiar with the 32bit vs 64bit versions of Android, but can you tell if there are calls that would require the 64bit version?
Sent from my XT1032 using Tapatalk

Parastie said:
I'm not familiar with the 32bit vs 64bit versions of Android, but can you tell if there are calls that would require the 64bit version?
Sent from my XT1032 using Tapatalk
Click to expand...
Click to collapse
I guess the 64 Bit/32 Bit would be in the Libs/Kernel. If any apks explicitly reference these 64 bit libs then, yes there might be an issue porting them. But I am not too sure if any of these core spen applications reference the 64 bit libs or not.

shaji_ka_71 said:
I guess the 64 Bit/32 Bit would be in the Libs/Kernel. If any apks explicitly reference these 64 bit libs then, yes there might be an issue porting them. But I am not too sure if any of these core spen applications reference the 64 bit libs or not.
Click to expand...
Click to collapse
From your screenshot, I think we can assume that blackmemo is an app, but its an app that is integrated into the core spen feature. I agree with you that nearly the entire spen framework would have to be ported. Depending on the lib requirements, this may or may not be possible.
Sent from my XT1032 using Tapatalk

Parastie said:
From your screenshot, I think we can assume that blackmemo is an app, but its an app that is integrated into the core spen feature. I agree with you that nearly the entire spen framework would have to be ported. Depending on the lib requirements, this may or may not be possible.
Sent from my XT1032 using Tapatalk
Click to expand...
Click to collapse
The below are the intents that the AirCommandService.apk will register and here you can see that the intent for Black_Memo is getting registered to be received. ("com.sec.android.intent.action.BLACK_MEMO")
private void registerBroadcastReceiver()
{
IntentFilter localIntentFilter = new IntentFilter();
localIntentFilter.addAction("android.intent.action.SCREEN_ON");
localIntentFilter.addAction("android.intent.action.SCREEN_OFF");
localIntentFilter.addAction("android.intent.action.CLOSE_SYSTEM_DIALOGS");
localIntentFilter.addAction("android.intent.action.USER_PRESENT");
localIntentFilter.addAction("android.intent.action.DREAMING_STARTED");
localIntentFilter.addAction("com.sec.android.automotive.drivelink.carmodechanged");
localIntentFilter.addAction("com.sec.android.intent.action.BLACK_MEMO");
localIntentFilter.setPriority(999);
this.mContext.registerReceiver(this.mBroadCastReceiver, localIntentFilter);
}
So if we even get this service file functional on note 4 , we can perhaps trigger and test the intent using terminal command (am start -a "intent details")
Let us hope some one cracks this soon

shaji_ka_71 said:
The below are the intents that the AirCommandService.apk will register and here you can see that the intent for Black_Memo is getting registered to be received. ("com.sec.android.intent.action.BLACK_MEMO")
private void registerBroadcastReceiver()
{
IntentFilter localIntentFilter = new IntentFilter();
localIntentFilter.addAction("android.intent.action.SCREEN_ON");
localIntentFilter.addAction("android.intent.action.SCREEN_OFF");
localIntentFilter.addAction("android.intent.action.CLOSE_SYSTEM_DIALOGS");
localIntentFilter.addAction("android.intent.action.USER_PRESENT");
localIntentFilter.addAction("android.intent.action.DREAMING_STARTED");
localIntentFilter.addAction("com.sec.android.automotive.drivelink.carmodechanged");
localIntentFilter.addAction("com.sec.android.intent.action.BLACK_MEMO");
localIntentFilter.setPriority(999);
this.mContext.registerReceiver(this.mBroadCastReceiver, localIntentFilter);
}
So if we even get this service file functional on note 4 , we can perhaps trigger and test the intent using terminal command (am start -a "intent details")
Let us hope some one cracks this soon
Click to expand...
Click to collapse
My worry are the lib requirements and if those could be ported. Can't try anything until I get a Note 4. I'll dig through the files later once I have one.
Sent from my XT1032 using Tapatalk

BenG7 said:
Hi
I think it would be great if the Note 4 could inherit the Screen-Off Memo feature of the Note 5...
(not sure but maybe this equals a port of the whole Air Command)
Thanks A LOT in advance
beng
Click to expand...
Click to collapse
i think it's possible unless there r some lib64 files required, i even wanted to port it to note2/tab s. need time to study the files though
oh btw, anyone know what the big green triangular like notification in edge (or note 5 also, i dono) called? i found "edge notification" only but wonder if it is referring to that triangular notification or just "a notification on the edge side"
i am talking about this one. people edge notification?

Note 3 has it w/o root
It isn't as fully featured as the Note5 as far as lock bybass but here is the thread ... http://forum.xda-developers.com/galaxy-note-3/themes-apps/app-screen-off-memo-t3196790

Sixperience N5 port by Geiti94 is on the way it the dev managed to port screen off memo... You can check rom progress in xda thread or on Sixperience Facebook page...

Xperiacle over at the Note 3 thread has made an app that supports screen off memo. Per the comments it seems to be working quite well so I'm sure that a version for the Note 4 should be quite possible in the near future. (http://forum.xda-developers.com/galaxy-note-3/themes-apps/app-screen-off-memo-t3196790)

glm0025 said:
Xperiacle over at the Note 3 thread has made an app that supports screen off memo. Per the comments it seems to be working quite well so I'm sure that a version for the Note 4 should be quite possible in the near future. (http://forum.xda-developers.com/galaxy-note-3/themes-apps/app-screen-off-memo-t3196790)
Click to expand...
Click to collapse
At the moment the app doesn't work with the stock 5.1.1 rom. Someone people have gotten it to work on 5.0.1 builds by editing their build.prop. It also doesn't work if you have a security lock.
Sent from my SM-N910C using Tapatalk

The important thing is that it is a start so it shows that a port is possible but it will require tweaking.

glm0025 said:
The important thing is that it is a start so it shows that a port is possible but it will require tweaking.
Click to expand...
Click to collapse
Follow the link. Working perfectly on my N910G.
http://www.androidauthority.com/galaxy-note-5-screen-off-memo-on-note-3-4-edge-644178/

The exynos variant of the note 4 has 64-bit capabilities, whereas the snapdragon variant doesn't. So it won' be difficult to port screen off memo and scroll capture to the exynos variant. Scroll capture feature contains 64-bit libs, but not sure about the screenoff memo feature.

Related

Don't wait for Screen Recoring in our Galaxy Note II N7100 ...

Pretty sure that most of Note II usesrs were waiting for the screen recording option that Samsung already announced ...
we were thinking that future software updates will add that option....
but that will not happen as Samsung already declared it on their official website in FAQ section that they will not add that option due to potential copyright concerns in some regions.
here is the article :
[FAQs] Smart Phone : My Galaxy Note II , GT-N7100 does not support the Screen Recording function?
Although Galaxy Note II,GT-N7100 was introduced at IFA event in 2012 with a Screen Recording function.
Samsung have decided not to include this feature in the final product due to potential copyright concerns in some regions.
As a result, Samsung does not, at this time, have a Software upgrade plan for the Screen Recording function.
Model Info
GT-N710
eng_samy said:
Pretty sure that most of Note II usesrs were waiting for the screen recording option that Samsung already announced ...
we were thinking that future software updates will add that option....
but that will not happen as Samsung already declared it on their official website in FAQ section that they will not add that option due to potential copyright concerns in some regions.
here is the article :
[FAQs] Smart Phone : My Galaxy Note II , GT-N7100 does not support the Screen Recording function?
Although Galaxy Note II,GT-N7100 was introduced at IFA event in 2012 with a Screen Recording function.
Samsung have decided not to include this feature in the final product due to potential copyright concerns in some regions.
As a result, Samsung does not, at this time, have a Software upgrade plan for the Screen Recording function.
Model Info
GT-N710
Click to expand...
Click to collapse
Ye i figured they had killed this idea, in my view it has more to do with current versions of Android than anything else. Consider how many screen recording tools are on the play store and how many of them work properly with JB... err none!
If you want to record your screen get an MHL cable and a HDMI capture card only full proof way right now to do screen capture.
Anyone else want to way in with screen recorder conspiracy theories or am I on my own on this one
I don't think people are waiting for Samsung to do it. They're waiting for someone to jack the apk somehow and leak it in the Internet so they can flash it into their phones.
MohJee said:
I don't think people are waiting for Samsung to do it. They're waiting for someone to jack the apk somehow and leak it in the Internet so they can flash it into their phones.
Click to expand...
Click to collapse
Some people have got the APK and have been looking for how to implement it, but there appears to be a host of libs and framework files required that we simply do not have.
Without those additional files we cannot use it.
The best alternative is to use Screencast, but root is required.
Lennyuk said:
Some people have got the APK and have been looking for how to implement it, but there appears to be a host of libs and framework files required that we simply do not have.
Without those additional files we cannot use it.
The best alternative is to use Screencast, but root is required.
Click to expand...
Click to collapse
I can get libs or framework files, just say which u need
EdgaBimbam said:
I can get libs or framework files, just say which u need
Click to expand...
Click to collapse
A complete dump of a rom that has it working would be the best thing.
Lennyuk said:
A complete dump of a rom that has it working would be the best thing.
Click to expand...
Click to collapse
i took that apk and odex files from this dump http://forum.xda-developers.com/showpost.php?p=31240992&postcount=34
Soooo..... Are they going to remove the screenshot feature as well? Maybe disable the microphone? Axe the camera too... prevent any files from being download to the device?
I think Sammy just fed us a steaming spoonful of BS.
Sent from my Galaxy Note 2 using Tapatalk 2
People can use it to download and pirate movies from Netflix and the like. .. so the issue of copyrights and stuff
handwritten from my note 2 (N7100)
You guys no screen cast works perfect if your rooted right.
Sent from my GT-N7100 using Tapatalk 2
pakure said:
People can use it to download and pirate movies from Netflix and the like. .. so the issue of copyrights and stuff
handwritten from my note 2 (N7100)
Click to expand...
Click to collapse
Torrents can still be downloaded to a device, much easier and better quality. You can also use the video camera feature if you're separate, but really, who uses recoding for pirating video? They can disable audio and problem solved. Our reduce it to 15fps... or a dozen other things, but they should remove or completely.
I need screen casting to help debug apps, not to pirate videos. Lots of people have legitimate uses.
Sent from my Galaxy Note 2 using Tapatalk 2
EP2008 said:
I need screen casting to help debug apps, not to pirate videos. Lots of people have legitimate uses.
Sent from my Galaxy Note 2 using Tapatalk 2
Click to expand...
Click to collapse
That might be the case, but it isn't for most... My legitimate reason is that I travel for work, so me and my wife sex Skype... So it would be kinda nice for those times she's not available, but I'm in the mood
Sent from my SPH-L900 using xda premium
ix3u said:
That might be the case, but it isn't for most... My legitimate reason is that I travel for work, so me and my wife sex Skype... So it would be kinda nice for those times she's not available, but I'm in the mood
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
Seems legit :thumbup:
Sent from my Galaxy Note 2 using Tapatalk 2
ix3u said:
That might be the case, but it isn't for most... My legitimate reason is that I travel for work, so me and my wife sex Skype... So it would be kinda nice for those times she's not available, but I'm in the mood
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
Bet that never made it onto the Samsung "Reasons people want to screen record" list..
EP2008 said:
Seems legit :thumbup:
Sent from my Galaxy Note 2 using Tapatalk 2
Click to expand...
Click to collapse
androidizen said:
Bet that never made it onto the Samsung "Reasons people want to screen record" list..
Click to expand...
Click to collapse
I know right. Definitely the ONLY reason I care about it.... I guess there are probably other reasons, but who cares? Not as important. At least in my eyes
Sent from my SPH-L900 using xda premium

Xtreamer Joyz - S3 for 299$?

Not a deal yet, but could be nice.
S3 quad, 13mp/3mp, full HD...
http://www.xtreamermobile.com/joyz/index.html
----
If I helped, please press Thanks...
DHDcfx4.2.1SR11deappified
Looks nice! Sadly not an s3 but very little info is shown about the Decker OS ROM.
Sent from my SGH-I727 using Tapatalk 2
Just got it for testing purposes (I'm a device tester for a large importer).
Fire away any questions you have and I will gladly provide answers so long as they don't break any NDAs (and there are hardly any of those to begin with)
Ambious said:
Just got it for testing purposes (I'm a device tester for a large importer).
Fire away any questions you have and I will gladly provide answers so long as they don't break any NDAs (and there are hardly any of those to begin with)
Click to expand...
Click to collapse
Is there any general information you can give us about the device and its ROM stability RAM available? Also does the back camera have flash? It looks as if it doesn't.
Sent from my SAMSUNG-SGH-I727 using Tapatalk 2
Febby said:
Is there any general information you can give us about the device and its ROM stability RAM available? Also does the back camera have flash? It looks as if it doesn't.
Sent from my SAMSUNG-SGH-I727 using Tapatalk 2
Click to expand...
Click to collapse
The ROM is a bit ugly to be honest - they colored it in the company colors (red and grey) and it's not to my taste. That said, it IS a matter of taste.
It does have some interesting design features, like tabs in the settings screen and a lot of customizable features, including even memory and IO tweaks.
That said, as with previous devices from Xtreamer - I do find the external design - specifically the capacitive hard-buttons, confusing and archaic. The menu button is on the far left, followed by the home button, the 'Back' button and the should-be-defunct 'Search' button. Recent apps is accessible by long-pressing the Home button of all things, long pressing the menu button pops up voice search, and generally speaking it's a bit out-of-touch with current smartphone design and specifically google's design guidelines.
As for stability, I had no issues so far. It's snappy and responsive, and nothing I threw at it (which wasn't much yet - just got it yesterday evening) slowed it down.
The camera DOES in fact have a LED flash.
Also, the back plastic battery cover of the device doubles as a fold screencover, which while stylish is also a bit redundant, given that it's not even a smartcover - and NOT optional (at least with the device I received).
Ambious said:
Just got it for testing purposes (I'm a device tester for a large importer).
Fire away any questions you have and I will gladly provide answers so long as they don't break any NDAs (and there are hardly any of those to begin with)
Click to expand...
Click to collapse
Hi, i have Newman n2 which seems very similar. Could you do us Newman owners a favor:
Could you install Terminal Emulator and type this into terminal:
cd /sys/bus/i2c/drivers
ls
If on the list there are: aat3635, ar1000, ov2675, ltr558 then I'm pretty sure that phone is hardware-wise exactly the same
Which android version does the joyz have and do you have access to the source files?
Many Newman owners are waiting for real custom roms but Newman has not released the source files.
Thanks
Verstuurd van mijn Newman N2 met Tapatalk
gdroos said:
Hi, i have Newman n2 which seems very similar. Could you do us Newman owners a favor:
Could you install Terminal Emulator and type this into terminal:
cd /sys/bus/i2c/drivers
ls
If on the list there are: aat3635, ar1000, ov2675, ltr558 then I'm pretty sure that phone is hardware-wise exactly the same
Click to expand...
Click to collapse
I can confirm they are indeed in there.
Which android version does the joyz have and do you have access to the source files?
Click to expand...
Click to collapse
Strangely enough the android version doesn't appear in the settings menu.
Had to check with getprop which returned 4.0.3 (which is strange given that it runs Google Now - but that's probably a port).
As for source files - I do not have those, and even if I did I probably wouldn't feel comfortable sharing them.
Ambious said:
I can confirm they are indeed in there.
Strangely enough the android version doesn't appear in the settings menu.
Had to check with getprop which returned 4.0.3 (which is strange given that it runs Google Now - but that's probably a port).
As for source files - I do not have those, and even if I did I probably wouldn't feel comfortable sharing them.
Click to expand...
Click to collapse
Ok, thanks for checking. At least we know that the hardware is the same and that we might be able to use joyz firmware. The firmware from Newman is quite buggy while the hardware is great.
Verstuurd van mijn Newman N2 met Tapatalk
Have you got any idea how far from the release it is? I have a freelander i20 and also looking forward to the Xtreamer rom.
No idea, but I assume it's a matter of a couple of weeks at most, it seems pretty ready.
Also, when it IS out, Xtreamer always publish their ROMs and files on the website, so it should be pretty easy for you guys to get what you need.
Sent from my Nexus 7 using xda app-developers app
Thanks Ambious, a question know if there are plans to upgrade to jelly bean?
No idea, honestly. I should say I don't work for Xtreamer themselves, but rather one of their partners.
Sent from my HTC One X using xda premium
Possible to show us some screenshots, like about the phone? To see which kernel version and software version it is.
dangerousp said:
Have you got any idea how far from the release it is? I have a freelander i20 and also looking forward to the Xtreamer rom.
Click to expand...
Click to collapse
According to this site it should be due May 1st: http://www.hdd-player.de/Smartphone/Xtreamer-JoyZ-4-7-Smartphone-Liefertermin-01-05-2013.html
dangerousp said:
Possible to show us some screenshots, like about the phone? To see which kernel version and software version it is.
Click to expand...
Click to collapse
Given that the software I'm using is a custom-order localized version, I won't feel comfortable releasing screenshots until it's released. As for the version, that's information I can give you freely, although bare in mind it might change by release-time.
Software version is "Xtreamer DeckOS 3.3.18"
Kernel is 3.0.15
Thanks, other question, the camera video in newman2/l20 is bad and bugs(os/software), much ghosting etc, maybe in xtreamer soft is more fine? please try make a video and comments your think
HD2MAX said:
Thanks, other question, the camera video in newman2/l20 is bad and bugs(os/software), much ghosting etc, maybe in xtreamer soft is more fine? please try make a video and comments your think
Click to expand...
Click to collapse
Yup, same with the Xtreamer. I can't tell if it's because of bad image stabilization or whatnot, but it's very blurry and very apparent (less so in daylight). Here's an example video:
Thanks you very much, damm, this camera supposetly is a "Exmor RS" (Xperia Z), what? is ridiculous many bugs, when video camera mode is switched only see the last actual focus on camera mode.. bugs everywhere...
I wonder if they'll fix these problems(newman/xtreamer etc), ghosting and main focus errors, this camera should be much better than this, I do not understand ...
I think its really sad that they havent put a dual sim option in it because thats what made me look into Xtreamer mobile in the first place
I now run the Xtreamer OS on my Freelander i20. Stable and smooth so far! It's version 3.2.18 though, so there should be an update to 3.3.18 soon.

[DONE] how many people would like a note3 4.3 port for your n5110?

note: only for note 8.0 wifi N5110
let's see how many of you are interested
edit:
some more info about the port
- working kernel with wifi
- rotation works, but magnetic sensor does not
- some spen functions may not work properly due to different hardware
- camera not working atm
- no knox
- selinux disabled (or permissive)
edit2:
released
read this http://forum.xda-developers.com/showthread.php?p=50190830
.
ykkfive said:
note: only for note 8.0 wifi N5110
let's see how many of you are interested
Click to expand...
Click to collapse
Very but for n5100 if you could
elliott0138 said:
Very but for n5100 if you could
Click to expand...
Click to collapse
sorry but unlikely atm since i dont own a 5100 and hence i cant test it myself
ykkfive said:
sorry but unlikely atm since i dont own a 5100 and hence i cant test it myself
Click to expand...
Click to collapse
Okay mate but keep informed on how your doing maybe you could port to n5100 and I and others coukd test. Would be great if you could
Count me in.
I'm totally interested
Sent from my HTCONE using Tapatalk
I'd give it a go!
+1 here... keep us posted - looks like you have a few beta testers.
+1
+1
Interested.......even more for a kit kat port
I'm in ...link??
Sent from my SGH-M919 using XDA Premium 4 mobile app
Count me in...
Woot woot!~
+1
Sent from my GT-N5110 using XDA Premium 4 mobile app
+1
Gesendet von meinem GT-I9505G mit Tapatalk
ykkfive said:
note: only for note 8.0 wifi N5110
let's see how many of you are interested
edit:
some more info about the port
- working kernel with wifi
- rotation works, but magnetic sensor does not
- some spen functions may not work properly due to different hardware
- camera not working atm
- no knox
- selinux disabled (or permissive)
Click to expand...
Click to collapse
If you can able to port Note 3 over Note 8.0 wifi, I grantee that you will be a hero in this Note 8 forum, plus I will be more than happy to $donate$!!...
I was told by several recognized developers (note 3, S4 forums) that it is near impossible to do so because of different hardware specs.
I do understand that both are different hardware specs, but consider both called "note", all we need is crazy genius developer(s) to step in and make it happen
ykkfive said:
note: only for note 8.0 wifi N5110
let's see how many of you are interested
edit:
some more info about the port
- working kernel with wifi
- rotation works, but magnetic sensor does not
- some spen functions may not work properly due to different hardware
- camera not working atm
- no knox
- selinux disabled (or permissive)
Click to expand...
Click to collapse
Defiantly yes please! Hell, i d be happy with a 10.1 2014 port! Anything with the new S note would be a godsend so i can sync back with my note 3!!!!!
Count me in!
Sent from my GT-N5110 using XDA Premium 4 mobile app
hi all
i cant release the current port since i yet to receive permission from 1 of the developers
i have to look for alternatives or to port it myself. sorry about that
attached 2 videos here in case you want a preview
EDIT: video links corrected
jazzespresso said:
If you can able to port Note 3 over Note 8.0 wifi, I grantee that you will be a hero in this Note 8 forum, plus I will be more than happy to $donate$!!...
I was told by several recognized developers (note 3, S4 forums) that it is near impossible to do so because of different hardware specs.
I do understand that both are different hardware specs, but consider both called "note", all we need is crazy genius developer(s) to step in and make it happen
Click to expand...
Click to collapse
@jazzespresso
i don wanna be a hero, i am not. but i will be glad to receive my first donation from you
actually i made a port of note 8.0 4.2.2 to note2 before, but got stuck at sensor problems. then i knew 4.3 for note2 was coming so i stopped porting it. however atm, a 100% port is yet to be achieved
thanks

CyanogenMod Forum → Device Req Samsung Galaxy Tab S2

We know there are work in progress to port CM 12 on T810 and T710 but none for T815 and T715
So those like me with T815 or T715 or ... that are looking for CM for their device can post their request in CyanogenMod Forum request page
http://forum.cyanogenmod.org/topic/116361-samsung-galaxy-tab-s2/
Yes; even without phone fuctions is ok for start. I see note 4 exynos got decent cm13 now; I hope no impossible to give it for tab s2 lte. Would be great
Hey, I'm new to this, but I want to give it a shot to try a port for the T715.
I think it should be no problem to make a build without modem support.
So my plan would be to use the source of the T710, if @CTXz allows me to use his sources.
Next I want to try to integrate the modem/ RIL sources, but don't expect too much! I'm completely new to android development and this will be my first project doing myself.
Just did some compilings and ports, but never to new unsupported devices. Maybe with some help it will be possible for me.
Greets, Phil!
Philippovitsch said:
Hey, I'm new to this, but I want to give it a shot to try a port for the T715.
I think it should be no problem to make a build without modem support.
So my plan would be to use the source of the T710, if @CTXz allows me to use his sources.
Next I want to try to integrate the modem/ RIL sources, but don't expect too much! I'm completely new to android development and this will be my first project doing myself.
Just did some compilings and ports, but never to new unsupported devices. Maybe with some help it will be possible for me.
Greets, Phil!
Click to expand...
Click to collapse
Hey, you really don't need to ask to use my sources A mention at the finished ROM would be all I need . However, if you plan to support it, I recommend joining my git group
CTXz said:
Hey, you really don't need to ask to use my sources A mention at the finished ROM would be all I need . However, if you plan to support it, I recommend joining my git group
Click to expand...
Click to collapse
Hey, ok great, thank you!
So let's try it!
A question:
What does one gain and lose by going from stock Samsung to CM12/13?
Thanks!
optionalmgrr.la said:
A question:
What does one gain and lose by going from stock Samsung to CM12/13?
Thanks!
Click to expand...
Click to collapse
That is a very tuff question to answer in just one post and depends on particular preferences. My advise is to Google: Cyanogenmod and TouchWiz.
Sent from my SM-T810 using Tapatalk
danyvw said:
That is a very tuff question to answer in just one post and depends on particular preferences. My advise is to Google: Cyanogenmod and TouchWiz.
Sent from my SM-T810 using Tapatalk
Click to expand...
Click to collapse
It seems the main issue is battery and camera (quality).
i think i messed my t817v. i rooted using odin, and cannot figure out what to do next. it tries to install but gives error message, also my tab wont charge, and when hooked into odin it keeps "adding then removed" over and over again... now i have a tablet that does not work.
any help on this would be awesome.
@CTXz
Philippovitsch said:
Hey, I'm new to this, but I want to give it a shot to try a port for the T715.
I think it should be no problem to make a build without modem support.
So my plan would be to use the source of the T710, if @CTXz allows me to use his sources.
Next I want to try to integrate the modem/ RIL sources, but don't expect too much! I'm completely new to android development and this will be my first project doing myself.
Just did some compilings and ports, but never to new unsupported devices. Maybe with some help it will be possible for me.
Greets, Phil!
Click to expand...
Click to collapse
I would love that!
I also posted a device request at the CyanogenMod Forum.
What you always lose with CM is Bluetooth aptX support for higher quality Bluetooth audio, since they have no licence. And since now there is official MM for the S2 and it - with enough free storage and 3 GM of RAM and root available - really doesn't profit any more from a "slim" ROM than earlier devices did, can anybody point me to a real advantage of CM?
For me CM was never about storage, but about control. As far as possible (for I am no programmer) I want to decide about the rights apps have and don't. It starts with being able to delete them and goes on with being able to restrict their access rights. As far as I remember such privacy guard things are much more easier to accomplish with CM.
Pegaside said:
For me CM was never about storage, but about control. As far as possible (for I am no programmer) I want to decide about the rights apps have and don't. It starts with being able to delete them and goes on with being able to restrict their access rights. As far as I remember such privacy guard things are much more easier to accomplish with CM.
Click to expand...
Click to collapse
But stock MM offers these permission settings now, so what else?
saintsimon said:
But stock MM offers these permission settings now, so what else?
Click to expand...
Click to collapse
My TAB s2 is my first Samsung device.... ( other android devices being nexus 7, xperia z2 / z3, moto g 4G ) ...... I love the tablet but I must say the draw of a supported CM ROM would be the look / feel of stock android and the way the system behaves. Whilst with a rooted device you can remove bloatware, the system itself does not change. All of my other devices have been stock or only lightly skinned....and basically stock once you swap out the launcher.... so I have come to like that. I do find touchwiz to be a little in my face and I do notice the system intrusions a little...... a personal thing of course and I am not complaining as I made the decision to buy it knowing full well what Touchwiz was... but the hardware in the tablet and the price was the draw-card (got the WiFi version here in Aus the first month on sale for $540 ... in comparison, the Nexus 9 was circa $700 and the Ipad Air 2 64gb was $730). My nexus 7 2013 runs MM with less and smoother than the TAB s2 runs LP. I could only imagine what it could do with an ASOP ROM once the bugs were fixed.
Could it be due to a defect usb-port?
optionalmgrr.la said:
A question:
What does one gain and lose by going from stock Samsung to CM12/13?
Thanks!
Click to expand...
Click to collapse
Do u know the difference between WIndows Phone/iPhone and Android, that's the kind of comparison u can use between Stock and CM.
Stock is the cute "little" thing with mostly everything that u may need ready to go.
CM is the smaller in size, much faster and with options to do almost anything u could think in a device.
aaronadams74 said:
i think i messed my t817v. i rooted using odin, and cannot figure out what to do next. it tries to install but gives error message, also my tab wont charge, and when hooked into odin it keeps "adding then removed" over and over again... now i have a tablet that does not work.
any help on this would be awesome.
Click to expand...
Click to collapse
Was this ever fixed?
Why does the SM-T815 run in 32bit mode, even under CM13?

anyone got the s10+ camera apk for use om the n9?

The app looks better.
Anyone?
I believe it's pretty much the same except for that wide angle option.
I don't think we can use it on our N9's. I'd love to use it for that color pop selfie focus thing
someone needs to port it
bober10113 said:
someone needs to port it
Click to expand...
Click to collapse
Speaking of ports I always found it funny that folks would go through hell to Port another phone's camera like gcam but won't try to poet and upgraded version of their own such as this
Seriously thats true... it's much easy too. Should we start a request to dev thread or something.
the Instagram mode would be the main reason to port for me. would the port be possible?
Do we know any dev to whom we could ask for
I mean the mods skim and monitor these threads supposedly but they probably won't tag the people they know probably know how to Port stuff
Still wondering about this one.... Like... Gcams cool but can we get a port of our own updated software? Please?
I couldn't agree with you more.. Please any mod reply to our concern here.
here it is:
https://1drv.ms/u/s!AhXVLDDj8g3AgfFsz0U2Z6mJaCyA-Q
now just need someone to port it...lol
bober10113 said:
here it is:
https://1drv.ms/u/s!AhXVLDDj8g3AgfFsz0U2Z6mJaCyA-Q
now just need someone to port it...lol
Click to expand...
Click to collapse
Not gonna lie I would try to learn how to Port an app my dang self because most devs and porters only ever want other phones software never to simply make an update for our owns available
Way to go bro!!!
Kotin89 said:
Way to go bro!!!
Click to expand...
Click to collapse
I'm gonna look into it to see what I can do if anything ?
KingVekxin said:
I'm gonna look into it to see what I can do if anything ?
Click to expand...
Click to collapse
that's the spirit!
I have not done a port in years. Always use to port things for my own amusement and development but after playing with the S10 camera I actually wouldn't mind it on our device. I will give it a try but I can't guarantee anything.
thank you soo much for the reply. hope you do it.. and thanks again for your help.
K-alz said:
I believe it's pretty much the same except for that wide angle option.
Click to expand...
Click to collapse
The Galaxy 10's camera allows you to make videos in HDR10+.
So I'd like them to port to Note 9.
First of all the S10 camera has hardware specific features. Secondly, the Samsung camera app is a system app that integrates throughout Samsung's OneUI allowing it to be used from within several Samsung applications seamlessly. Without root or the ability to first remove the stock Samsung camera, you can't install another Samsung camera whether it's ported or not, it won't be allowed to install and be given the system-wide permissions that are required for the camera to function the way the stock N9 camera does. Porting isn't the issue. It's getting around root, kernel DM-verity which will automatically prevent the phone from booting once a system app is modified and it's signature no longer matches. From my experience with this, it's simply not worth the time or effort since we have locked bootloaders and no reliable root method or ability to flash a kernel with DM-Verity disabled which would allow sytstem apps to be modified and/or replaced such as the Samsung Camera.

Categories

Resources