Disable SMS Conversation on WM 6.x - JAMin, XDA Neo, S200 ROM Development

Solution changed !
Please read message nr.15 on the next page..
Old solution from me..
- Run any Registry Editor..
- Go to this key listed below
- Change dword value 1 --> 0 in SMSAvailable
HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings
SMSAvailable = 0 (dword)
Regards

whenever i do this the new message alert tone is also disabled. i don't know why but the sound tone settings is unchanged.

euro_silvertop said:
whenever i do this the new message alert tone is also disabled. i don't know why but the sound tone settings is unchanged.
Click to expand...
Click to collapse
yaya.i also face same problem .anyone noe how to solve it.pls help

ycimpir said:
- Run any Registry Editor..
- Go to this key listed below
- Change dword value 1 --> 0 in SMSAvailable
HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings
SMSAvailable = 0 (dword)
Regards
Click to expand...
Click to collapse
wow, you've discovered something that the whole forum knew from ages...

I got the same problem

If you have already done this :
"HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings\SMSAvailable
Change dword value from 1 to 0 "
you will have to turn back the SMSAvailable dword from 0 to 1 (its orgiginal alue)
then
create a folder named OEM in HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings
Then in the new named OEM folder, create a DWORD key called
SMSInboxThreadingDisabled
with a value of 1
and this works, I tried it!

FINALLY !
it really works - without disabling sms sound
thank you, I've been waiting for it for so long
ziadah said:
create a folder named OEM in HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings
Then in the new named OEM folder, create a DWORD key called
SMSInboxThreadingDisabled
with a value of 1
and this works, I tried it!
Click to expand...
Click to collapse

let me try it
yupz it workz thankz alotz!!

very very tnx

@ ziadah:
This is realy good information. We should sticky it some how.

Now thats what I call something great!

oh
i changed, but sms sound is disabled
plz help me

zoghal said:
oh
i changed, but sms sound is disabled
plz help me
Click to expand...
Click to collapse
How did you do that? DON'T use the regsetting described in the FIRST post, but try the one in post SIX (6).

The post6 and it works but the vibrate has gone when receiving new sms even though I put a check in the Sounds & Notifications?
PS:
I found the fix.
Please follow this step.
You shouldn't follow the step 1 in post 6 of this thread which is changing the value of HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settin gs\SMSAvailable into 0, it should be remained as its default which is 1.

euro_silvertop said:
whenever i do this the new message alert tone is also disabled. i don't know why but the sound tone settings is unchanged.
Click to expand...
Click to collapse
using tis cab tat i make

a2525 said:
using tis cab tat i make
Click to expand...
Click to collapse
thanks! this helped a lot.

d1srupt3r said:
.....I found the fix.
.....You shouldn't follow the step 1 in post 6 of this thread which is changing the value of HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settin gs\SMSAvailable into 0, it should be remained as its default which is 1.
Click to expand...
Click to collapse
That is exactly what it says, you have to read carefully when you fool around with your regsettings:
#6 said:
If you have already done this :
"HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settin gs\SMSAvailable Change dword value from 1 to 0 "
you will have to turn back the SMSAvailable dword from 0 to 1 (its orgiginal alue)
then.....
Click to expand...
Click to collapse

great !!!! thanks

Just delete the first message in this topic to avoid confusing users
or write there's better method (then that previously known) few posts later

alien6 said:
Just delete the first message in this topic to avoid confusing users
or write there's better method (then that previously known) few posts later
Click to expand...
Click to collapse
I agree, but it has to be done by the topic-starter...

Related

WM2005 - Replacement for spb pocket plus battery meter

UPDATE: See below for cab file -- easy install, cheers mate
Hi guys,
I LOVE the spb pocket plus battery meter along the top. I feel NAKED without it.
But -- it doesn't work with WM2005
So, here is a replacement. It shows battery and memory use at the top of the screen and works well with WM2005.
Copy to your \Windows\Startup.
You can run this first to make sure it's not a virus but for better proof please visit the page I found this on, and say thanks to Intek for making this!
http://www.pocketgear.com/software_detail.asp?id=17943
source code
Source code follows (thanks Inteks!)
Code:
// powerstatus.cpp : Defines the entry point for the application.
//
#include "Windows.h"
int WINAPI WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
// TODO: Place code here.
SYSTEM_POWER_STATUS_EX pst;
int i,cx,dx,ex,top,c;
HDC hdc = ::GetDC(NULL);
HPEN pe,pb,po,pm;
pe = CreatePen(PS_SOLID,2,RGB(50,200,50));
pm = CreatePen(PS_SOLID,2,RGB(250,150,50));
pb = CreatePen(PS_SOLID,2,RGB(80,80,80));
i=30;
top = 1;
c=0;
while(1)
{
i++;
if(i>15){
i=0;
GetSystemPowerStatusEx(&pst,true);
if (pst.ACLineStatus==1)
{
pst.BatteryLifePercent=c;
c+=25;if(c>100)c=0;
}
cx = GetSystemMetrics(SM_CXSCREEN) / 2;
dx = (int)(cx * pst.BatteryLifePercent / 100.0);
STORE_INFORMATION ss;
GetStoreInformation(&ss);
MEMORYSTATUS ms;
GlobalMemoryStatus(&ms);
float mfree;
mfree = 1.0f/(ss.dwStoreSize+ms.dwTotalPhys)*(ss.dwFreeSize+ms.dwAvailPhys) ;//+ ms.dwMemoryLoad) / 2;
ex = (int)(cx * mfree);
}
MoveToEx(hdc,0,top,NULL);
po = (HPEN)SelectObject(hdc,pe);
LineTo(hdc,dx,top);
SelectObject(hdc,pb);
LineTo(hdc,cx,top);
SelectObject(hdc,pm);
LineTo(hdc,ex +cx,top);
SelectObject(hdc,pb);
LineTo(hdc,cx*2,top);
SelectObject(hdc,po);
Sleep(100);
}
DeleteObject(pe);
DeleteObject(pm);
DeleteObject(pb);
::ReleaseDC(NULL, hdc);
return 0;
}
Here is inteks Powerstatus 1.0 as cab file. It is same file above but in cab format for easy installation.sorry earlier cab file i uploaded had setup.dll from AEBPlus
Uploaded corrected cab file. please download again. Sorry for the mess.
Thankx
:lol: :lol: missed it , not anymore
THANX guys...
PERFECT!!!!!
buzz
actually, what is it about those buttons after starting it?
THANX
buzz
buzz_lightyear said:
actually, what is it about those buttons after starting it?
Sorry buzz it was my mistake. I was messing around with AEBplus and somehow the setup.dll from that cab got mixed up with that of powerststus cab file. The button dialog you were seeing was of aebplus. also when you uninstal this cab you get the dialog telling that AEBplus uninstalled
Now I have corrected the cab file. Sorry for the mess :roll:
Click to expand...
Click to collapse
It's nice and all, but unfortunatley I see some flickering on the power/memory bars when Synchronizing, WiFi, and even in some full screen games the bars keep showing (which is somewhat cool, but they flicker oddly).
Is this a modified version of the original?
What changed?
Is it possible to make the bars just one pixel tall?
What are the increase/decrease increments? It would be nice to have it decrease/increase by one or two pixels and have a dashed line instead of a solid line don't you think?
Best regards,
Rayan
that solid line is what I like the most on it...
buzz
It's not working...
Uhm,sorry, am I missing something? Just installed Powerstatus_corrected on my Magician (T-Mobile one with original ROM), but there's nothing to see (no bars... - even after soft reset... ). Do I have to activate (start) it somehow? Where is the program installed to?
Greetings,
BGK
Re: It's not working...
BGK said:
Uhm,sorry, am I missing something? Just installed Powerstatus_corrected on my Magician (T-Mobile one with original ROM), but there's nothing to see (no bars... - even after soft reset... ). Do I have to activate (start) it somehow? Where is the program installed to?
Greetings,
BGK
Click to expand...
Click to collapse
Yes, copy the executable (or make a shortcut) and place it on the Windows/Startup folder so every time you soft reset it is automatically launched...
Greetings,
Rayan
Sorry again, which exe? Guess I'm a little bit blind today... :roll:
TIA,
BGK
Okay BGK, disregard my last post... This new version installs automatically to the Startup folder, so the only thing you need to do is either use File Explorer on your PPC to navigate to Windows/Startup and click on the Powerstatus.exe file to launch it or turn off the PDA and then soft reset...
That's it...
Rayan
Okay, I've got it. Obviousely while you where typing, I realised, that the exe was installed into /Windows/startup. As the autostartup-folder is named "Autostart" on german devices, the exe wasn't run on soft reset...
When running it manually, it works like a charm...
Anyway, thanks for the hint, Rayan.
Greetings,
BGK
Is this WM2005 only or will it work on WM2003SE?
How to uninstall it?
Tekguru said:
Is this WM2005 only or will it work on WM2003SE?
Click to expand...
Click to collapse
Yes, it runs under both OSes...
negatong said:
How to uninstall it?
Click to expand...
Click to collapse
Just take the .CAB file and copy it to your Pocket PC and then execute it from there... It will install to the Windows/Startup folder (or Autorun for German devices).
Soft reset the device by turning off then soft reset or simply navigate to the installed directory and execute it from there.
Cheers for the quick reply, will be installing shortly!
It runs on my XDA IIi running 2003se!
e_status
Hi guys,
i liked this app so much, and i was so insolent, that i rewrote a bit... ))
now those bars are shown at the bottom of the screen, coz it is not so busy there as at the top. That means not so much flickering... Of course, if you run full screen apps, it will mess with it, because it is drawing directly to screen...
Now there are four bars...
green -> main battery %
yellow -> backup batery % (this is 2 B changed to BatteryDrain l8r)
orange -> Free RAM %
red -> Free Storage memory %
i also changed the it's behaviour, while the device is cradled... now it looks more alive )))
oh yeah... i named it e_status (enhanced status??) )))))
hope. U'll like it...
buzz

[App][VGA][GREEK] Calorie Meter

Platform: Windows Mobile (Tested on 6.5.x)
Overview: Calories meter (and more!)
* Products per Category
* Alphabetical List
* Quick Information
* Detailed Information
* Displays : calories - fat - cholesterol - carbohydrate - proteins
* Displays serving information
* Contains : 1653 products
* Personal weight history
* Search function
* BMI Calculator
* BM Calculator
* Meal Calculator
* Load/Save option to keep your favorite meals
This program is in GREEK language!
VGA version is 1.1
Download
Thank you for sharing
Wowww this is Nice
Hi m8
This is nice ..it will work on wvga screens ????
Anyway thanks alot...
(Ante kai kamia elliniki prospayheia ...sinexise )
colossus
colossus_r said:
Hi m8
This is nice ..it will work on wvga screens ????
Anyway thanks alot...
(Ante kai kamia elliniki prospayheia ...sinexise )
colossus
Click to expand...
Click to collapse
Its working on WVGA but not covering the whole screen, sorry
Can you release it also in English?
janneman22 said:
Can you release it also in English?
Click to expand...
Click to collapse
If someone translate the data files, sure
For detailed information about the selected item, tap on the info in the bottom part of the screen.
Hi my friend,
Your app it's very useful and congratulations.
Thank you for sharing.
I got the following error each time I start the application:
"An error occurred on sub _main_app_start.
Out of memory Exception"
My device is Omnia II with WM 6.5.3.
I have succeeded once after reboot to get into the app but I got another error during search.
"error on sub
_main_lisr2_click.
Index out of bounds.
Index must be between 0 to ItemCount - 1 (currently 2.)
I hope that helps for debugging.
Thank you for your nice work
dande said:
Hi my friend,
Your app it's very useful and congratulations.
Thank you for sharing.
I got the following error each time I start the application:
"An error occurred on sub _main_app_start.
Out of memory Exception"
My device is Omnia II with WM 6.5.3.
I have succeeded once after reboot to get into the app but I got another error during search.
"error on sub
_main_lisr2_click.
Index out of bounds.
Index must be between 0 to ItemCount - 1 (currently 2.)
I hope that helps for debugging.
Thank you for your nice work
Click to expand...
Click to collapse
Good morning dande.
not enough memory to load the item list...
how much free memory do u have normally?
dande said:
Hi my friend,
Your app it's very useful and congratulations.
Thank you for sharing.
I got the following error each time I start the application:
"An error occurred on sub _main_app_start.
Out of memory Exception"
My device is Omnia II with WM 6.5.3.
I have succeeded once after reboot to get into the app but I got another error during search.
"error on sub
_main_lisr2_click.
Index out of bounds.
Index must be between 0 to ItemCount - 1 (currently 2.)
I hope that helps for debugging.
Thank you for your nice work
Click to expand...
Click to collapse
Dande,
Im attaching the datafile with only 100 items in it (in zip format)
1. Please extract the file "Products.csv" in your PC
2. Go to the programs subfolder \Data
3. keep a backup of the file "Products.csv"
4. and then overwrite it with the new one...
Just tell me if the program works for you
Thank you
Dimitris.
Hi Dadi68,
Sorry for my late reply but I was busy this period.
I have enough free memory when I load your program ~75MB.
I have found out the your app crash when I search "Φακές" like "φακέ".
There are two entries in products.csv with exactly the same name "Φακές" in line 94 and in line 952 so I have two identical results.
If I select one of the them I get the error:
"error on sub
_main_lisr2_click.
Index out of bounds.
Index must be between 0 to ItemCount - 1 (currently 2.)
(as there 2 entries and not one).
After that each time I start the app I get the error:
"An error occurred on sub _main_app_start.
Out of memory Exception"
till I do a soft reset and then I can work fine again.
I know I can change the second entry of "Φακές" with an additional character to differentiate the two records but I guess it's good to mention it for your debugging.
Thank you
Dande
dande said:
Hi Dadi68,
Sorry for my late reply but I was busy this period.
I have enough free memory when I load your program ~75MB.
I have found out the your app crash when I search "Φακές" like "φακέ".
There are two entries in products.csv with exactly the same name "Φακές" in line 94 and in line 952 so I have two identical results.
If I select one of the them I get the error:
"error on sub
_main_lisr2_click.
Index out of bounds.
Index must be between 0 to ItemCount - 1 (currently 2.)
(as there 2 entries and not one).
After that each time I start the app I get the error:
"An error occurred on sub _main_app_start.
Out of memory Exception"
till I do a soft reset and then I can work fine again.
I know I can change the second entry of "Φακές" with an additional character to differentiate the two records but I guess it's good to mention it for your debugging.
Thank you
Dande
Click to expand...
Click to collapse
My friend, It works great on my touch pro... I think that is a problem with the big item list...
Please try this post http://forum.xda-developers.com/showpost.php?p=6886963&postcount=10
Sorry, forgot to mention that I did what you suggested replacing products.csv but no luck.
I still get the same error:
"An error occurred on sub _main_app_start.
Out of memory Exception"
I am sure it works fine for you otherwise you would not share it with us
If you want me to test anything else I am at your disposal.
Thanks for sharing.
Dande

Anyone use live wallpaper creator script? I need help.

Anyone use the script here http://forum.xda-developers.com/showthread.php?t=739512&page=48 because I have a problem it used to work fine and create an apk file at the end but now I get some sort of error which I dont know what it is but not even sure if its an error or what. Here's a picture.
Picture's really small, is it possible you have a bigger one? Or post the code itself?
who_mike_d said:
Picture's really small, is it possible you have a bigger one? Or post the code itself?
Click to expand...
Click to collapse
Yea here's the code
"Custom LWP 2.6
Thanks : andrew121 for the app this script modifies
Thanks : olivvv59 for the added # of images
---------------------------------------------------
Insert ur images in placeimages here folder
Continue when done
Make sure the images are the same resolution
as your device for optimal results
U have up to 300 images you can use (n01.png...n300.png)
They must be labelled in that format
Press any key to continue . . .
How many images do you have ? Remember, must be <= 300 and ur value must be in
hexadecimal. So if ur using 20 images, ur input would be 14
Use www.tiny.cc/converthex if u need assistance
Enter: 74
Enter the name for this live wallpaper. This is shown when picking the lwp
Enter: android
Enter the description for this live wallpaper.
This is shown when picking the lwp
Enter: android
Enter the package name for this live wallpaper. This should be one word.
No spaces or fancy characters please.
Enter: androidlwp
Change "suvbsib" to "androidlwp" in:
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\LiveWallpaperPainting$O
utRunEngine$1.smali: Changed.
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\LiveWallpaperPainting$O
utRunEngine.smali: Changed.
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\LiveWallpaperPainting.s
mali: Changed.
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\LiveWallpaperSettings.s
mali: Changed.
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\R$array.smali: Changed.
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\R$attr.smali: Changed.
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\R$drawable.smali: Chang
ed.
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\R$string.smali: Changed
.
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\R$xml.smali: Changed.
C:\Users\Nasser\Desktop\out\smali\com\custom\lwp\suvbsib\R.smali: Changed.
stdin:"

[XPOSED] PoGo Ivy [RELEASE 2016-09-09 v1.5]

PoGo Ivy based on the work of elfinlazz & chuparCh0pper (special thanks to you guys!)
You can see your monsters iv and other stats as their nickname in the pgo app.
It doesn't actually change pokemon's nickname, only showing on app.
This does not use API, MITM or what ever red flagging action to server.
Feel free to use it.
I'm not responsible for any banned accounts or damaged devices, use at your own risk!
(Currently) not working with pgo v0.37.0, do NOT update until you are not forced to!
Features:
Can see IV, Level, localized Names and other stats in their nickname
Customizable string format(%NICK%, %NICK.#%, %LEV%, %LEV.#%, %IV%, %IV.P%, %IV.#%, %ATK%, %DEF%, %STA%)
Preview evolved CP/HP(nickname to evolving monster will show evolved CP/HP)
example: change nickname of Pikachu to Raichu and Pikachu's CP & HP values will change to evolved values
example2: change nickname of Bulbasaur to "EVO NEXT" and it shows Ivysaur stats, change to "EVO LAST" and it shows Venusaur stats
Optionally rename only favored monsters
Formats:
Nickname: %NICK% (shows the monsters name)
Nickname trimmed to # characters: %NICK.#% (eg. Bulbasaur: %NICK.5% -> Bulba)
Level: %LEV%
Level with # digits: %LEV.#% (eg. %LEV.2% -> 12.45 / %LEV.4% -> 12.4578)
IV: %IV%
IV left padded: %IV.P% (eg. 5 -> 005 / 78 -> 078)
IV with # digits: %IV.#% (eg. %IV.1% -> 89.3 / %IV.3% -> 89.361)
Attack (decimal): %ATK%
Attack (hex): %ATK.H% (eg. 15 -> F)
Defence (decimal): %DEF%
Defence (hex): %DEF.H% (eg. 15 -> F)
Stamina (decimal): %STA%
Stamina (hex): %STA.H% (eg. 15 -> F)
Candies needed to evolve: %CDY%
Fast move type: %FAST% (eg: Dragon, Normal...)
Fast move type abbreviation: %FAST.A% (eg: Dr, Ic ... Details)
Fast move typewith # digits:: %FAST.#% (eg. %FAST.3% -> Dra / %FAST.5% -> Drago)
Charge move type: %CHRG% (eg. Dragon, Normal...)
Charge move type abbreviation: %CHRG.A% (eg. Dr, Ic ... Details)
Charge move typewith # digits:: %CHRG.#% (eg. %CHRG.3% -> Dra / %CHRG.5% -> Drago)
Contribute your localized monster names
Feel free to contribute localized names for your language based on this pastebin, so i can add them in the next release.
Monster names currently implemented:
english
french
german
traditional chinese
Version History:
v1.0: Initial release
v1.1: Added formats %ATK.H%, %DEF.H%, %STA.H%
v1.2: Fix enable/disable functionality
v1.3: Fix unreadable preferences in MM (thanks to SGS5H @ xda for testing)
"Set custom format" now shows your format instead of default format
Add preview evolved monsters by manually changing nickname to "EVO NEXT" & "EVO LAST" (eg. Bulbasaur: EVO NEXT -> Ivysaur, EVO LAST -> Venusaur)
v1.4: Fix incorrect monster levels
Add feature to rename favored monsters only
Add formats %CDY%, %FAST%, %FAST.A%, %FAST.#%, %CHRG%, %CHRG.A%, %CHRG.#%
Switch to javalite protos (reduces apk size, multidex not needed anymore)
v1.5: Add missing movesets (should fix issues with %FAST... & %CHRG...)
Add traditional chinese localization (for monster names) (thanks to jerryh001 @ xda)
Download from xposed module repo:
http://repo.xposed.info/module/info.xposed.mirosz.pogoivy
Steps:
Install the module
Activate it in Xposed
Reboot
Run official pokemongo app
Enjoy
.
Can we have atk/def/sta available in hex as well as dec?
MrGodMan said:
Can we have atk/def/sta available in hex as well as dec?
Click to expand...
Click to collapse
show me an example please
mirosz said:
show me an example please
Click to expand...
Click to collapse
Instead of the atk using numbers 1 to 15 (decimal) it uses 1 to F (hexadecimal). This keeps the individual IVs as single characters for easier formatting.
eg a 15/12/5 Pokemon would show as F/C/5. This also has the advantage that you can remove the spacer character between each part.
PS, just installed app and it works good for me Thanks for keeping the app updated since elfinlazz seems to have stopped development.
mirosz said:
feel free to try my version and respond if its working for u or not, maybe we can fix it together
Click to expand...
Click to collapse
Hey, glad to see you are picking this project up. Unfortunately, the custom format still doesn't seem to do anything for me. Also, the preview text below "Set custom format" never changes to reflect the format I entered (it does change in the previous version of this module).
What's differences can you see between "ignore nicknamed pokemon" option when it's actived or not ?
Envoyé de mon SM-G935F en utilisant Tapatalk
crafty35a said:
Hey, glad to see you are picking this project up. Unfortunately, the custom format still doesn't seem to do anything for me. Also, the preview text below "Set custom format" never changes to reflect the format I entered (it does change in the previous version of this module).
Click to expand...
Click to collapse
The displayed text doesn't reflect what you have entered. Your changes are only visible in the edit field (after clicking "Set custom format")
What language and device are u using? please post the exact custom format u used.
nnrs1 said:
What's differences can you see between "ignore nicknamed pokemon" option when it's actived or not ?
Click to expand...
Click to collapse
if this option is enabled, the monsters you rename by hand on your own will not get overwritten by pogo ivy
MrGodMan said:
Instead of the atk using numbers 1 to 15 (decimal) it uses 1 to F (hexadecimal). This keeps the individual IVs as single characters for easier formatting.
eg a 15/12/5 Pokemon would show as F/C/5. This also has the advantage that you can remove the spacer character between each part.
PS, just installed app and it works good for me Thanks for keeping the app updated since elfinlazz seems to have stopped development.
Click to expand...
Click to collapse
thx, good to hear its working for u.
want upper or lower case?
mirosz said:
What language and device are u using? please post the exact custom format u used.
Click to expand...
Click to collapse
English, Nexus 5x, Pure Nexus rom. I even tried just setting the custom format to "%NICK%" but I still just get the default format in game.
mirosz said:
thx, good to hear its working for u.
want upper or lower case?
Click to expand...
Click to collapse
uppercase please
crafty35a said:
English, Nexus 5x, Pure Nexus rom. I even tried just setting the custom format to "%NICK%" but I still just get the default format in game.
Click to expand...
Click to collapse
which xposed version u using?
try to change devices language to french just to test if its language problem
edit:
ahh i think ive found the problem: https://github.com/rovo89/XposedBridge/issues/102
edit2:
try changing permissions like this using root browser:
/data/data/info.xposed.mirosz.pogoivy/shared_prefs/info.xposed.mirosz.pogoivy_preferences.xml -> 664
and
/data/data/info.xposed.mirosz.pogoivy/shared_prefs/ -> 755
mirosz said:
which xposed version u using?
try to change devices language to french just to test if its language problem
Click to expand...
Click to collapse
v86 -- French doesn't seem to help.
crafty35a said:
v86 -- French doesn't seem to help.
Click to expand...
Click to collapse
http://forum.xda-developers.com/showpost.php?p=68483222&postcount=10
^^ edit2
Doesn't seem to work. The file was already set to 664. I changed the folder to 755 and rebooted but still no luck.
crafty35a said:
Doesn't seem to work. The file was already set to 664. I changed the folder to 755 and rebooted but still no luck.
Click to expand...
Click to collapse
damn got a bootloop while testing a workaround
ok the last solution is to manually change the format in the preferences file :/
maybe there's a fix comming soon for xposed
Great Module so far. Thanks for your work!
mirosz said:
damn got a bootloop while testing a workaround
ok the last solution is to manually change the format in the preferences file :/
maybe there's a fix comming soon for xposed
Click to expand...
Click to collapse
The prefs file actually does contain my custom format, so I don't think that is the issue.
Thanks for updating this module I was wondering if the original was ever going to get updated again. I have one problem though when I disable the module within the POGO Ivy app it doesn't actually disable it for me. I can still see my IVs when I disable it.
TheJakee said:
Thanks for updating this module I was wondering if the original was ever going to get updated again. I have one problem though when I disable the module within the POGO Ivy app it doesn't actually disable it for me. I can still see my IVs when I disable it.
Click to expand...
Click to collapse
u need to restart pgo app, its not chnaged on-the-fly
mirosz said:
u need to restart pgo app, its not chnaged on-the-fly
Click to expand...
Click to collapse
I did restart it and nothing happened. Heck, I even restarted my whole phone and nothing happened. The Pokémon still had their IVs next to them.
I'm using the OnePlus 3 and everything worked fine in the old version.
TheJakee said:
I did restart it and nothing happened. Heck, I even restarted my whole phone and nothing happened. The Pokémon still had their IVs next to them.
I'm using the OnePlus 3 and everything worked fine in the old version.
Click to expand...
Click to collapse
Maybe you still have the old module active?

Could someone implement drivers for me in Androidx86 ( i pay )

Hi everyone,
i have a iota one tablet ( its this one : https://www.amazon.co.uk/iOTA-version-10-1-Laptop-Black/dp/B0751JJMWL/ref=dp_ob_title_ce )
i add also the DSDT data of the Tablet.
Latest Android X86 boots up well, perfomance is really good, wifi is working but no Sound / Screen Rotation ( only Horizontal, and i cant rotate it with a app from playstore ) and no Touchscreen.
Like i said in the Title, i pay for youre work.
florian-m19 said:
Hi everyone,
i have a iota one tablet ( its this one : https://www.amazon.co.uk/iOTA-version-10-1-Laptop-Black/dp/B0751JJMWL/ref=dp_ob_title_ce )
i add also the DSDT data of the Tablet.
Latest Android X86 boots up well, perfomance is really good, wifi is working but no Sound / Screen Rotation ( only Horizontal, and i cant rotate it with a app from playstore ) and no Touchscreen.
Like i said in the Title, i pay for youre work.
Click to expand...
Click to collapse
Money? Nah you cant pay me cause I'm in India and dont use PayPal. Duh!!
So giving out my answer for free.....(thanks for offering though)
Here is the fix. (All commands are in the quotes and Linux is case sensative, so please copy exactly.
Press Alt + F1 to go into Terminal mode. (Alt + F7 will switch back to the GUI)
Type in (Without the Quotes) "stop zygote" and press enter (This will stop the Android GUI)
Type in*(Without the Quotes) "mkdir /data/system/tslib" and press enter (This should make a directory/folder called tslib inside /data/system
Type in (Without the Quotes) "cd /data/system" and press enter (This will change the current directory to /data/system
Type in (Without the Quotes) "ls" and press enter (This will list all files and folders in the current Directory)
Check to see if your new directory, tslib is listed.
Type in (Without the Quotes) "ts_calibrate" and press enter
This should load up the calibration tool and you should have a X in the top left to press, when you do, you are moved to the top right, then bottom right, then bottom left and finally the centre of the screen.
Type in (Without the Quotes) "cd tslib" and press enter (This should move you into your new tslib directory you made earlier)
Type in (Without the Quotes) "ls" and press enter (You should see a file in there called pointercal, which was created by the calibration tool)
Finally, type in (Without the Quotes) "start zygote" and press enter (This will load up the GUI again along with your new calibration settings)
You should now have a fully working touchscreen!
I hope this helps!
at the step with type in ts_calibrate it shows : Not found
florian-m19 said:
at the step with type in ts_calibrate it shows : Not found
Click to expand...
Click to collapse
Next time please tap on quote option to notify me that you have replied ....m
Anyways
Can you send me a screenshot of the order and maybe the logs
x.ak**** said:
Next time please tap on quote option to notify me that you have replied ....m
Anyways
Can you send me a screenshot of the order and maybe the logs
Click to expand...
Click to collapse
Okay i will do it für now on im in about 2 hours at home and send you a screenshot.
See you
x.ak**** said:
Next time please tap on quote option to notify me that you have replied ....m
Anyways
Can you send me a screenshot of the order and maybe the logs
Click to expand...
Click to collapse
Is it a problem that This is a android live version?
florian-m19 said:
Is it a problem that This is a android live version?
Click to expand...
Click to collapse
give me an hour so i can test it on my Virtual Machine to determine the problem.
x.ak**** said:
give me an hour so i can test it on my Virtual Machine to determine the problem.
Click to expand...
Click to collapse
https://raspis.eu/pub/downloads/and....1.2_Baytrail-k4.12-T100TA_Jul18-2017-ISO.rar
i use this ISO ( because its the only that can rotate the Screen [ Rotation is inverted ] )
florian-m19 said:
https://raspis.eu/pub/downloads/and....1.2_Baytrail-k4.12-T100TA_Jul18-2017-ISO.rar
i use this ISO ( because its the only that can rotate the Screen [ Rotation is inverted ] )
Click to expand...
Click to collapse
if you want sound you may just simply try to go to device manager and find your driver and either reinstall or restart it
---------- Post added at 07:37 PM ---------- Previous post was at 07:09 PM ----------
florian-m19 said:
Is it a problem that This is a android live version?
Click to expand...
Click to collapse
ts_calibrate is the command, and it should be built into the OS by default, so it should be found
but still try this
type: chmod 777 /data/system/tslib
type: chmod 777 /data/system/tslib/pointercal
**********
in step 3*
**********
because sometimes there are more than one folder

Categories

Resources