Asking for a X10MP - Sony Ericsson XPERIA X10 Mini

Well, it seems that it's not appropriate here, but it worths the try
I received a message from D4rKn3sSyS yesterday asking me to try a gesture module to work on your X10MPs. I replied to him that I don't have the hardware and I cannot do that blindly.
But it seems that you X10MP guys are desperately want dual/multi/gesture module (I saw this this morning).
Another reason for this post is that I've just discovered some of our X8s also have Cypress digitizer.
So maybe a X10MP from you guys could help both community, X8 and X10MP. I'm still a student (not really a high school/bachelor) I cannot afford to buy another phone.
And also, it'll be much easier for me to develop modules (OC, UV, MDDI,...) and support for X10MPs.
Thanks in advance.
Regards.

doixanh said:
Well, it seems that it's not appropriate here, but it worths the try
I received a message from D4rKn3sSyS yesterday asking me to try a gesture module to work on your X10MPs. I replied to him that I don't have the hardware and I cannot do that blindly.
But it seems that you X10MP guys are desperately want dual/multi/gesture module (I saw this this morning).
Another reason for this post is that I've just discovered some of our X8s also have Cypress digitizer.
So maybe a X10MP from you guys could help both community, X8 and X10MP. I'm still a student (not really a high school/bachelor) I cannot afford to buy another phone.
And also, it'll be much easier for me to develop modules and support for X10MPs.
Thanks in advance.
Regards.
Click to expand...
Click to collapse
i wish i could help out but same applies to me just student
but anyway I can help with testing. Also I managed to partially unload the kernel driver of the touch driver. but I fail to insert my own driver as I couldn't unload the serio platform driver (just reboots if I do)

doixanh said:
Well, it seems that it's not appropriate here, but it worths the try
I received a message from D4rKn3sSyS yesterday asking me to try a gesture module to work on your X10MPs. I replied to him that I don't have the hardware and I cannot do that blindly.
But it seems that you X10MP guys are desperately want dual/multi/gesture module (I saw this this morning).
Another reason for this post is that I've just discovered some of our X8s also have Cypress digitizer.
So maybe a X10MP from you guys could help both community, X8 and X10MP. I'm still a student (not really a high school/bachelor) I cannot afford to buy another phone.
And also, it'll be much easier for me to develop modules (OC, UV, MDDI,...) and support for X10MPs.
Thanks in advance.
Regards.
Click to expand...
Click to collapse
Same here, student!

Do you have paypal? I'll gladly pitch in a contribution. A new X10 mini costs only 175$

[email protected] said:
Do you have paypal? I'll gladly pitch in a contribution. A new X10 mini costs only 175$
Click to expand...
Click to collapse
Yeah, if we all donate, we can buy a X10 mini pro to doixanh
BTW:
SOMEBODY CAN TAKE A PHOTO OF HIM/HER X10 MINI PRO DIGITIZER?

D4rKn3sSyS said:
Yeah, if we all donate, we can buy a X10 mini pro to doixanh
BTW:
SOMEBODY CAN TAKE A PHOTO OF HIM/HER X10 MINI PRO DIGITALIZER?
Click to expand...
Click to collapse
sorry to be a noob wats digitialzer ??

blooddrinkindevil said:
sorry to be a noob wats digitialzer ??
Click to expand...
Click to collapse
Im sorry, its not digitalizer, its digitizer . See here blooddrinkindevil -> Link
Find a photo maybe useful
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}

Are you sure that this is for mini pro? Because I see that it's Synaptics T1021A, much like Mini and not Cypress as you said....

Its a cypress cy8ctma300 digitizer
Sent from my U20i using XDA Premium App

Connected via serio uart. With rs5522 protocol (if i remember right)
Sent from my U20i using XDA Premium App

doixanh: how is it going with money for your x10 MP?

Yeah, please update us, how it's going everything

I got nothing now. Perhaps I will not have x10mp. Anyway it's ok.
If it's cy8ctma300 then I believe it supports MT. slade87 where did you get that info?

because i compiled the kernel with the kernel config, also we have cy8ctma300 firmware file and a loader on mini pro. and also I compiled module to unload the kernel driver which cleary shows its a cy8ctma300 (and this exact driver cy8ctma300_ser.c in drivers/input/touchscreen/).
my module just wasn't able to unload serio_driver like on the mini, i was able to unload the platform driver but unable to unload the serio driver (look in the .c file you'll know what i mean).
EDIT:
when i unloaded the platform driver with my module touchscreen stopped working btw

Code:
static int __init cy8ctma300_ser_init(void)
{
int rc;
struct serio_driver * otherDriver;
struct device_driver * other;
other = driver_find (CY8CTMA300_SER_DEV, & platform_bus_type);
if (other)
{
put_driver(other);
otherDriver = to_serio_driver (other);
serio_unregister_driver (otherDriver);
platform_driver_unregister(&cy8ctma300_pf_drv);
}
rc = platform_driver_register(&cy8ctma300_pf_drv);
if (rc) {
printk(KERN_ERR "%s: Unsuccessfull pf drv reg\n", __func__);
return rc;
}
rc = serio_register_driver(&cy8ctma300_ser_drv);
if (rc)
printk(KERN_ERR "%s: Unsuccessfull ser drv reg\n", __func__);
return rc;
}
static void __exit cy8ctma300_ser_exit(void)
{
DBG(printk(KERN_INFO "%s: enter\n", __func__));
serio_unregister_driver(&cy8ctma300_ser_drv);
platform_driver_unregister(&cy8ctma300_pf_drv);
}
module_init(cy8ctma300_ser_init);
module_exit(cy8ctma300_ser_exit);
here is my unload code which does not yet work properly. hope you can find the issue.

Related

[ROM]Newest Original 2.1 SE ROM! 2.1.1.C.0.0

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Download:
Flashtool: http://www.multiupload.com/VKNI6Q6ET5
Recovery: http://www.multiupload.com/LVS0H1CLCG
Recovery Instructions:
-download the file
-unpack the zip file
-the folder copy into your SD/xrecovery/backup folder
-reboot telephone the recovery
-backup/restore
-backup
-selected the new folder
-when install is finish reboot your phone
Instructions install with FlashTool:
Is necessary first to prepare the to it truth firmware.
Completion: We download it the desired firmwaret, if *.sin extension we are putting it in into an empty portfolio
Let us start it the flashtool.exét it from within though the advanced> *,ftf the formation of a file
we grant the portfolio here into what we put the firmware
1; header let us fill it in according to the meaning we say it so
2;a folder list part we rearrange it the firmware content into a part the help year of the arrow
3; press ok
it like this prepared .ftf fájl from a basis the firmware puts it into a portfolio the program ,like this immediately flashelhesh.
if the downloaded firmware .ftf extension we imitate it then the firmware into a portfolio.
Press the FLASH button that let us select it in the pop-up window the flashed desired firmware.
Select, that ok.
Let us make the telephone CONNECTED the computer afterwards ,after the little animation starts ,some,how is frazzled joined the telephone we push it the back up button and we insert it 431 cable.
If we did it well then in the better upper pole of the telephone little green led secular one.
A flashes is started.
Disconnected the telephone, and on.
review
cn u say wht is new on this rom??? please
Infos the refreshing
-10-20%-al faster system (I justify it)
-Nagyobb inner memory 156mb (I justify it)
-Repaired system stability (time is needed for this...)
-Google android the correction of a gap integrated (this was the refreshing his capital reason)
-15%-os uptime improvement (i don't know yet)
-Repairing the Timescape-ben (I was useful never)
-Laggolások his correction (in truth better than the ones until now)
-Repairing the camera in a program. (I do not see a difference)
Google translate?
Legközelebb próbálj meg csak angolt használni, mert így lesz még sírás belőle itt. Amúgy azért kapsz egy thanks-et
--
Try using only english here, because someone will not understand your writing fully
thanks I will give it a try
Ohh sorry my bad English xd
Thanks for share it, any link to download the E15a version, this is only for E15i
Thanks
EDIT: thanks u! i'll download
what is the point of posting this here?
rafcamora91 said:
what is the point of posting this here?
Click to expand...
Click to collapse
So customROM users who dont give a phuck about SE would find out about it.
rafcamora91 said:
what is the point of posting this here?
Click to expand...
Click to collapse
As soon as you see it he made sense since it is spent.
Anyway Detuchs/German region dared because of that yet only is refreshed and i'm not sure that everybody wants to wait until his own region being refreshed. Who does not like it does not download it and does not have to write it here neither. That's it.
luisjoseb said:
Thanks for share it, any link to download the E15a version, this is only for E15i
Thanks
Click to expand...
Click to collapse
E15a not EU.
E15a not freshed now.
hurikan23 said:
E15a not EU.
E15a not freshed now.
Click to expand...
Click to collapse
Thanks, I flash the 2.1.1.A.0.6 firmware to E15a and then restore the 2.1.1.C.0.0 with xRecovery and my phone works and no 3G problems.
Does it has xrecovery in it or not? Or it just like the original ROM without Root?
Sent from my X8 using XDA Premium App
Done.. Nice ...perfect...
Xperia X8 2.1.1.C.0.0
EDIT: Ignore.
This is no good messed up my phone have to do everything all over again root and install xrecovery
Sent from my E15i using Tapatalk
it faster than old stock..if you add module ax8_smartass its go even faster..
kueh9 said:
it faster than old stock..if you add module ax8_smartass its go even faster..
Click to expand...
Click to collapse
excuse me, smartass is for saving battery at the cost of performance, it will lags your phone!
zhuhang: smartass speeds up your phone when performance is needed and slows down when not needed. u should try it out
is this rom available from seus or not yet? i'm just curious becasue my phone is under repair at the moment.
elérhető már ez a rom a seuson keresztül? csak mert a telóm szervizben van.

Wp7 Tango Build 8773 - It's just information

Hi All !!
I'm testing Tango
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Much time spent on optimizations adding some entries in the registry , changing files, modules and so on ...
The whole XIP has a different structure (ROM is very fast)
Additionally, when connected with the Zune we will see a picture of Toshiba
And many more other things has been fixed
At a time when people release roms, 7740 , 8107 etc ... which differed only, graphics and XAP applications. I was thinking over how to solve various problems with the ROM.
I talk with some people at XDA about the USB driver so that we listen to music on headphones
What I failed to fix it?
I could not cope with Caller ID (0 pops up all the time)
Youtube worked only one . Once I managed to do, but something has been damaged the, I tried to do it again but to no avail.
All the time I tried fix many problems!
I wish you successful work
Greetings to all!
If you appreciate my work, click it ​
cool 7.5
hi where did you get the rom as would love to try it.
does the camera work????
cheers
we all will be very grateful, if you finish your build and share it with us!
i switched back to wm6.5 because of GPS and G-sensor issues because of the lack of drivers.
keep up the good work!
we expect you to show us your work, thanks WojtasXda.
I'm expecting news hourly
?????
Any news mate?
could you post the rom so we could try it as well.
update on how its going please.......
seem it would be the great project!
hope the sms problem could be fix,it's the biggest problem for me
ryo2456 said:
hope the sms problem could be fix,it's the biggest problem for me
Click to expand...
Click to collapse
yes, for me too! it's the reason why i changed back to wm6.5
would be great, if it could be fixed!
Hi all ...
Lately, I have very little time,I miss it for themselves, outside the project "WP7 for TG01" I still have others that are waiting for me ..
Please be patient ... work in progress!
Hi all ...
Lately, I have very little time,I miss it for themselves, outside the project "WP7 for TG01" I still have others that are waiting for me ..
Please be patient ... work in progress!
Click to expand...
Click to collapse
Thanks you for you working on TG01 again.
We can wait for your work, hope to see your work soon
Add oil!
Do you have already any news that you can share with us?
Now what new information and progress?
Please wait a more moment
I think the youtube problem is the video playback problem, because I cannot play any video on my TG01.
HI Again...
I'm sorry everyone , but I can not finish the project (Nandroid, WP7.8, etc.) My device was damaged long ago. All projects was in an advanced stage of development (create oemavatar, fix sms error, add mp4 driver with wince7, Starting writing gsensor driver, Create LK to android)
if I had the TG01, I will start work
This time, I'm sorry ... :crying:
WojtasXda said:
HI Again...
I'm sorry everyone , but I can not finish the project (Nandroid, WP7.8, etc.) My device was damaged long ago. All projects was in an advanced stage of development (create oemavatar, fix sms error, add mp4 driver with wince7, Starting writing gsensor driver, Create LK to android)
if I had the TG01, I will start work
This time, I'm sorry ... :crying:
Click to expand...
Click to collapse
How to fix the Sms problem?
Sent from my A1 using xda premium
WojtasXda said:
HI Again...
I'm sorry everyone , but I can not finish the project (Nandroid, WP7.8, etc.) My device was damaged long ago. All projects was in an advanced stage of development (create oemavatar, fix sms error, add mp4 driver with wince7, Starting writing gsensor driver, Create LK to android)
if I had the TG01, I will start work
This time, I'm sorry ... :crying:
Click to expand...
Click to collapse
My tg Is alive using riff box. Try it else I shall give u details u can bring back in form.

[Q] Does anybody know the original name of this android tablet ?

Hy everybody,
Does anybody recognize a F20 cpu based model for this cheap tablet ?
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Thanks in advance
Rom1nux
Here is the box
Thanks a lot in advance for your help
Rom1nux
if my eyes do not deceive me, the name is on the box,
and google search seems to return exactly the same device
Hello p107r0,
I can found few commercial link about it, other link on french page is writed by me, and "official seem" supplier "MMS support" got nothing on the website (only spec)
This tablet is a "commercial announcement support" offert to client or employed...The polaroid reference MIDCF43 is a "local" reference and i think this tab is derived from a well know tablet.
If you know something about this...let me know ?
If you know what is the "sun3i" exactly is, i want to know ?
The more near i found is name "bmorn v7pro" but i cannot post link here...
I want to be sure before doing something wrong
Thanks in advance
Rom1nux
sorry, not much help from me, unable to find anything more, strangely enough most pages is in french, there's an enquiry form on on of the pages: here, if all else fails, maybe try asking there?
Thanks p107r0 for your try
If anybodyelse got information about this device, please, let me known
Rom1nux
I've seen this tablet on e-bay, size is appealing but there are definite downsides to it, it is 480x272 pixels, has wifi b/g, I believe a resistive screen, 1000 mAh battery which does not sound so hot, Android 2.3 (and that's probably the end of it), 2gb interanl, probably 256mb etc. Just found out that "reported" battery life is 160 minutes, not good as usually real life results are less. This is another example of branding cheap electronics with a recognized name, a horrible process designed to lure the buyer into a false sense of security. I'd steer clear, if you want a 4.3" device, go get an Archos (and I really would not recommend that either)
Hello zharkov,
In my country this product is giving everywhere to customer or employed, like a pen or usb key with the trade mark on it....so thanks for your opinion, but i only want to know the base code name of this device.
For information
sun3i are F20 based
sun4i are A10 based
If someone else got information about the name of this tab, let me know
Thanks in advance
Hello,
If you want some interesting information about this device :
http://forum.frandroid.com/topic/102352-polaroid-43-pc-tablet-midcf43-low-cost/
For information, the serial port seem to be is expoded...
Rom1nux
Hello All,
Big thanks to matzpx8709, tell me the existance of PMT43 device known as TOUCHLET 4.3 too.
Thanks to all other help me
Rom1nux
Hello Everybody,
You can find interesting information about this device and more generally for the allwinner F20 here : http://www.sysfwlab.com
I try to port uboot for sun3i (actually work only on sun4i(A10) or sun5i)
Please let me known if you know other clone or device where F20 is used
Regards
Rom1nux
There is a both french and english topic where two people are working on reverse-engeneering the mechanics of this tablet. They have regrouped some technical information in this thread, in addition to the previous link : http://forum.frandroid.com/topic/102352-polaroid-43-pc-tablet-midcf43-low-cost/
I do hope this will allow to offer a more optimized ROM for this economic device, as the default ROM misses the Google Play and does feel slow and a bit buggy.
Hi, how can i root this device? I tried with many apps, but no success, help me plese. Thank you

Unlocking Bootloader Restrictions

I'm helping a friend of mine with his X10 Mini Pro. I know that specs-wise the phone is almost similar to the X8.
So I have a question. Besides from the SIM Unlock Certificate, is there anything that could prevent me from unlocking the bootloader? I'm asking because the X8 has the known date problem (11w29+).
As the guides are shared for both phones, I'm not completely sure if the restriction applies to both. From what I've seen this isn't the case, but no idiot proof: X8 = YES - X10 Mini = NO.
Fortun said:
I'm helping a friend of mine with his X10 Mini Pro. I know that specs-wise the phone is almost similar to the X8.
So I have a question. Besides from the SIM Unlock Certificate, is there anything that could prevent me from unlocking the bootloader? I'm asking because the X8 has the known date problem (11w29+).
As the guides are shared for both phones, I'm not completely sure if the restriction applies to both. From what I've seen this isn't the case, but no idiot proof: X8 = YES - X10 Mini = NO.
Click to expand...
Click to collapse
I'm not completely sure if the date-restrictions apply to the x10mini/pro as well, but the underlying hardware is roughly the same for all 2010 family Xperia phones, so if they changed something in there on the X8, chances are they were changed in all the other Xperias too.
Since it's your friends's phone, i wouldn't risk it, since you'll end up with a hard-brick if it goes wrong.
Fortun said:
I'm helping a friend of mine with his X10 Mini Pro. I know that specs-wise the phone is almost similar to the X8.
So I have a question. Besides from the SIM Unlock Certificate, is there anything that could prevent me from unlocking the bootloader? I'm asking because the X8 has the known date problem (11w29+).
As the guides are shared for both phones, I'm not completely sure if the restriction applies to both. From what I've seen this isn't the case, but no idiot proof: X8 = YES - X10 Mini = NO.
Click to expand...
Click to collapse
+1
I open up a new thread for this. Sorry I didnt read it first, same question here.
They didnt actually warn us in BL unlocking threads if it is safe or not. Sigh.
EDIT1: I Fiddled abit in this phone, IDK if this is the confirmatory that were looking for, this is what i found:
BTW-Im on stock rom and stock kernel so i have this service mode or something like that
1. Enter *#*#7378423#*#* in the dialer then call
2. Go to Service info
3. Go to Configuration
4. At the lower most entry, there is something that says:
-Rooting Status:
Bootloader unlock allowed: Yes
Is this the answer that we need? or it is all in MFC date? my X10MP is 12w17.
EDIT2: I guess, I did answer my question, the confirmatory is this http://unlockbootloader.sonymobile.com/
The supporting details is EDIT1, thanks for nothing
hixvolnutt said:
EDIT2: I guess, I did answer my question, the confirmatory is this http://unlockbootloader.sonymobile.com/
The supporting details is EDIT1, thanks for nothing
Click to expand...
Click to collapse
I wouldn't be so sure about that. The X10 Mini does not appear in the list of supported devices in that page.
Fortun said:
I wouldn't be so sure about that. The X10 Mini does not appear in the list of supported devices in that page.
Click to expand...
Click to collapse
Look carefully my friend, I took the trouble doing this for you. You might want to look at my uploaded pic.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
[/URL][/IMG]
hixvolnutt said:
Look carefully my friend, I took the trouble doing this for you. You might want to look at my uploaded pic.
[/URL][/IMG]
Click to expand...
Click to collapse
Those are the 2011 Mini and Mini Pro, not the X10 Mini and X10 Mini Pro from 2010
SmG67 said:
Those are the 2011 Mini and Mini Pro, not the X10 Mini and X10 Mini Pro from 2010
Click to expand...
Click to collapse
I see, thanks for clearing that to me. Anyways, I have 12w17 X10MP so best of luck for me.
hixvolnutt said:
I see, thanks for clearing that to me. Anyways, I have 12w17 X10MP so best of luck for me.
Click to expand...
Click to collapse
According to your signature you don't have an X10MP...

[CLOSED] Xiaomi Watch BootLoader unlocked!

Hello guys, I successfully unlocked bootloader.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
booting video: https://drive.google.com/file/d/1u3eiiieVVk-NvYVHZnkYZLlXuCitfvX0/view?usp=sharing (two watches,my and my friend's)
I'll test the usability of Magisk and EdXposed in a few days. (and maybe TWRP)
Today I just come to share the joy, but unfortunately I will not open the unlock method until this person leaves the admin and apologizes to me.
In the afternoon, I produce a video of the results and share this joy in a Mi Watch group of Telegram that I joined from XDA, but one of the admin named Aytac (Telegram ID: 1007077001) stigmatized me for cheating and muted me forever, which infuriated me.
Since he says he has the ability to do it, let him tell the community how to unlock BootLoader.
I said you'll pay for it. Now it's time for me to keep my promise.
More images
**Not development ver! This is my Mi Watch Permium!**
Unfortunately, I broke the hardware when I was dismantling it, and now it's on its way back for repair.
I have written the tree for twrp of the device, and I will test it after the device returns.
Did you have to open the watch to unlock it? or was this possible via software method?
karl0ss said:
Did you have to open the watch to unlock it? or was this possible via software method?
Click to expand...
Click to collapse
Sure, Xiaomi has reserved a software method, but it needs their internal signature, which is impossible to get.
mlgmxyysd said:
Sure, Xiaomi has reserved a software method, but it needs their internal signature, which is impossible to get.
Click to expand...
Click to collapse
Not sure I get your response, You said you broke it while dismanteling it, so the device needs to be opened up to be able to unlock it?
karl0ss said:
Not sure I get your response, You said you broke it while dismanteling it, so the device needs to be opened up to be able to unlock it?
Click to expand...
Click to collapse
yes
Lets share the method then hey?
karl0ss said:
View attachment 5344073
View attachment 5344075
Lets share the method then hey?
Click to expand...
Click to collapse
Ha ha, I don't need your useless apologies for being late anymore. Anyway, the loss is yours. I will only share the resources that can be used after unlocking. By the way, tell him, take his dev device and play it himself. Good luck.
It's his choice to mute me few days ago, even ban me today. It's my choice to refuse to release the unlocking method.
Sorry I can't understand.
What exactly is the link between XDA and this Aytac?
If you have discovered something and want to share it with the community (which would be grateful for it) this is probably the right place but if your goal is just some sort of revenge this post becomes useless and its title is definitely misleading.
jripper said:
Sorry I can't understand.
What exactly is the link between XDA and this Aytac?
If you have discovered something and want to share it with the community (which would be grateful for it) this is probably the right place but if your goal is just some sort of revenge this post becomes useless and its title is definitely misleading.
Click to expand...
Click to collapse
Because this group is an XDA community group
XXXXXX
Mod Edit: Link removed
MOD ACTION:
Thread closed and link removed.
@mlgmxyysd
Please check your PM inbox some time later.

Categories

Resources