Want to create exceptions for intranet via provisioningdoc - Windows Mobile Development and Hacking General

Hello,
i am loking for a way to set up the URL exception for the intranet addresses via a provisioningdoc.
But i have to say that i realy do not know how. :?
Reading through the M$ manual was no big help...
Isegrim

Ok, i found a way to do it.
Ise

Care to Share?

Ups, sorry. I thought that i had... copy and past is so hard to do... :wink:
Code:
<wap-provisioningdoc>
<characteristic type="CM_Mappings">
<characteristic type="16777216">
<parm name="Pattern" value="*://192.168.10.15"/>
<parm name="Network" value="{A1182988-0D73-439E-87AD-2A5B369F808B}"/>
</characteristic>
</characteristic>
<wap-provisioningdoc>
This code SnipIt adds the IP 192.168.10.15 to the url exceptions list.
These exceptions should be numbered from 16777216 to 16842751.
Link:
http://msdn.microsoft.com/library/d.../html/wce51howConnectionManagerURLMapping.asp
Ise

Thanks a bunch

Related

.......................

.......................
reserved for future use
more reserved for future use
Sounds good, I'll try it out when it's ready. I use Sashimi whenever I reinstall my phone now. Thanks for all your work!
Oh man the waiting is killing me!!!! Waiting for this and SASHIMI v7.0...
Tutorial looks awesome...I've been looking for something like this..Sweet!
Thanks!
download available now!
This is very good, thank you. However, it would be much better if you include gprs/mms account settings in your next release.
pilgrim011 said:
This is very good, thank you. However, it would be much better if you include gprs/mms account settings in your next release.
Click to expand...
Click to collapse
Thanks.
Any additional CSPs that you would want added for provisioning, please provide links to the CSP XML code along with information about the various variables in the XML and I will add them to future release.
Unfortunately, I'm not familar with xml... Thanks anyway, this is good tool.
pilgrim011 said:
Unfortunately, I'm not familar with xml... Thanks anyway, this is good tool.
Click to expand...
Click to collapse
Well I'm not sure that gprs/mms settings are something that there is a standardized CSP for. If there is, and anyone has info on it, let me know.
OK, upon your request from here...
http://forum.xda-developers.com/showthread.php?p=2508908#post2508908
...I'll go on in this thread (have not been aware there are 2 different threads with the same name in 2 different branches of the forum...)
Regarding the VPN and GPRS and some more settings (I even found some SIP settings) as XML provisioning files:
The MS reference is here:
http://msdn.microsoft.com/en-us/library/ms889539.aspx
Samples for some important ones go here:
GPRS:
http://www.blackberryforums.com/handheld-forum/91310-windows-mobile-gprs-provisioning.html
Code:
<wap-provisioningdoc>
<characteristic type="CM_GPRSEntries">
<characteristic type="O2">
<parm name="DestId" value="{436EF144-B4FB-4863-A041-8F905A62C572}" />
<parm name="UserName" value="APNusername" />
<parm name="Password" value="APNpassword" />
<parm name="SwCompression" value="1" />
<parm name="IpHeaderCompression" value="0" />
<parm name="SpecificNameServers" value="1" />
<parm name="DnsAddr" value="PrimaryDNS" />
<parm name="AltDnsAddr" value="AlternateDNS" />
<parm name="Domain" value="" />
<characteristic type="DevSpecificCellular">
<parm name="GPRSInfoValid" value="1" />
<parm name="GPRSInfoAccessPointName" value="AccessPointName" />
<parm name="BearerInfoValid" value="1" />
<parm name="GPRSInfoProtocolType" value="2" />
<parm name="GPRSInfoL2ProtocolType" value="PPP" />
<parm name="GPRSInfoAddress" value="" />
<parm name="GPRSInfoDataCompression" value="1" />
<parm name="GPRSInfoHeaderCompression" value="1" />
<parm name="GPRSInfoParameters" value="" />
</characteristic>
</characteristic>
</characteristic>
<characteristic type="Registry">
<characteristic type="HKCU\ControlPanel\PhoneExtendFunction" translation="filesystem">
<parm name="GPRSAuthenticationMethod" datatype="integer" value="1" />
</characteristic>
</characteristic>
</wap-provisioningdoc>
VPN:
http://msdn.microsoft.com/en-us/library/aa455980.aspx
Code:
<wap-provisioningdoc>
<characteristic type="CM_VPNEntries">
<characteristic type="MYVPN">
<parm name="SrcId" value="{436EF144-B4FB-4863-A041-8F905A62C572}"/>
<parm name="DestId" value="{A1182988-0D73-439e-87AD-2A5B369F808B}"/>
<parm name="Phone" value="vpn.customer.com"/>
<parm name="UserName" value="user123"/>
<parm name="Password" value="test"/>
<parm name="Domain" value="mydomain"/>
<!-- Determins the type of authentication e.g. IPSec vs PPTP -->
<parm name="Type" value="1"/>
<!-- Determins the type IPSec encryption, either pre shared key or cert based -->
<parm name="IPSecAuth" value="1"/>
<!-- pre shared key can be 256 chars long, but must be ASCII -->
<parm name="PresharedKey" value="1234567890"/>
<parm name="Enabled" value="1" />
</characteristic>
</characteristic>
<!-- Exceptions to route these ips via VPN and not the standard connection:-->
<characteristic type="CM_Mappings">
<characteristic type="16777216">
<parm name="Pattern" value="*://192.168.10.15"/>
<parm name="Network" value="{A1182988-0D73-439E-87AD-2A5B369F808B}"/>
</characteristic>
</characteristic>
</wap-provisioningdoc>
SIP:
http://forum.xda-developers.com/showthread.php?t=299950
Code:
<wap-provisioningdoc>
<characteristic type="VoIP">
<parm name="SIPSettings"
value="<provision key='1232ab01' name='_sip_provider_name_'>
<provider name='_sip_provider_name_' />
<user account='_account_' password='_password_'
uri='sip:[email protected]_host.com_'
allowedauth='digest'/>
<sipsrv addr='_sip_proxy.com_' protocol='UDP' role='proxy'>
<session party='First' type='pc2pc' />
<session party='First' type='pc2ph' />
</sipsrv>
<sipsrv addr='_sip_registrar.com_' protocol='UDP' role='registrar'/>
</provision>" />
</characteristic>
</wap-provisioningdoc>
asango said:
OK, upon your request from here...
http://forum.xda-developers.com/showthread.php?p=2508908#post2508908
...I'll go on in this thread (have not been aware there are 2 different threads with the same name in 2 different branches of the forum...)
Regarding the VPN and GPRS and some more settings (I even found some SIP settings) as XML provisioning files:
The MS reference is here:
http://msdn.microsoft.com/en-us/library/ms889539.aspx
Samples for some important ones go here:
GPRS:
http://www.blackberryforums.com/handheld-forum/91310-windows-mobile-gprs-provisioning.html
...
Click to expand...
Click to collapse
Doesn't the HTC Network Wizard control GPRS settings? I thought that was the major point of that tool.
I would think that users would rather use the HTC tool, which is already pre-loaded with settings for all major carriers, rather than enter them in manually in Makisu...
I'm from Serbia, and I have to enter this settings manually, because HTC didn't support carriers from such a small country... And I do think there are many members of xda-devs which have a similar problem with gprs/mms settings.
pilgrim011 said:
I'm from Serbia, and I have to enter this settings manually, because HTC didn't support carriers from such a small country... And I do think there are many members of xda-devs which have a similar problem with gprs/mms settings.
Click to expand...
Click to collapse
Ok, so there may be a need.
Could you tell me which variables of the XML settings file are the ones that generally need to be changed/entered? In most CSP/XML files usually only a few of the many variables actually need changing in 99% of the circumstances.
bengalih said:
Doesn't the HTC Network Wizard control GPRS settings? I thought that was the major point of that tool.
I would think that users would rather use the HTC tool, which is already pre-loaded with settings for all major carriers, rather than enter them in manually in Makisu...
Click to expand...
Click to collapse
May be, but I think not for the VPN settings.
And even if it would, the point is that it must always be configured manually and interactively after a hard reset.
I don't think that the HTC Wizard is generating n XML file that can be used for an automated install.
asango said:
May be, but I think not for the VPN settings.
And even if it would, the point is that it must always be configured manually and interactively after a hard reset.
I don't think that the HTC Wizard is generating n XML file that can be used for an automated install.
Click to expand...
Click to collapse
Actually, the HTC Network wizard is just pulling out the XML file you choose from its provisioning.zip file. So you could just pull out the one you need from the zip and use that. Then you have the same thing that Makisu give you...an XML file.
Makisu doesn't really "automate" anything other than the process of creating the XML file from user input. The alternative is creating the XML file from scratch. Many people are intimidated by XML...or at least it is more error prone. With Makisu you just are asked the questions, and it fills out the XML file for you.
However most people won't find themsleves using Makisu like they use other programs for phone setup (SASHIMI, UC, etc) because once you use Makisu to create the XML file once, you may never need to use it again...
Bengalih, first off great set of programs. The only question i have so far with Makisu is it able to copy some of the setting for the email account? I know for my email to be able to send out i have to have the following checked under the settings box:
outgoing server requires auth; use the same user name and password for sending email; requires SSL for Incoming and Outgoing email. Your program is great and a real time saver when i need to do a hard reset....i was wondering is there any way it can do this or maybe on a future update. Thanks
elosogrande7076 said:
Bengalih, first off great set of programs. The only question i have so far with Makisu is it able to copy some of the setting for the email account? I know for my email to be able to send out i have to have the following checked under the settings box:
outgoing server requires auth; use the same user name and password for sending email; requires SSL for Incoming and Outgoing email. Your program is great and a real time saver when i need to do a hard reset....i was wondering is there any way it can do this or maybe on a future update. Thanks
Click to expand...
Click to collapse
Are you setting up a POP or IMAP account?
I believe based on the current settings, Makisu will do what you are asking for POP3 accounts, but not IMAP (i.e. SSL and outgoing auth).
I will try to add these additional options for toggling on and off in the next version.
bengalih said:
Are you setting up a POP or IMAP account?
I believe based on the current settings, Makisu will do what you are asking for POP3 accounts, but not IMAP (i.e. SSL and outgoing auth).
I will try to add these additional options for toggling on and off in the next version.
Click to expand...
Click to collapse
oh really...yea its imap that im using....i guess i can try to use the pop3 but if u can make it work for the imap that would be awesome....thanks either way

mapcruncher yum conversion

hi all, anyone use microsoft mapcruncher to calibrate scanned maps? It seems that all information about calibration point are saved in a file .yum but I don't understand how the x and y point are saved. I would like to convert this file in a "standard" format like .map or .gmi, someone know if exists a tool to do that?
thanks
more info:
in the yum file this is the render area:
<RenderRegion>
<LatLon lat="1" lon="0" />
<LatLon lat="0" lon="0" />
<LatLon lat="0" lon="0.707142857142857" />
<LatLon lat="1" lon="0.707142857142857" />
</RenderRegion>
the value 0.707142857142857 is the height/width.
I think that the calibration point are declared like this:
<PositionAssociation pinId="1" associationName="p02">
<SourcePosition>
<LatLonZoom zoom="11">
<LatLon lat="0.30902099609375" lon="0.069183349609375" />
</LatLonZoom>
</SourcePosition>
<GlobalPosition>
<LatLonZoom zoom="16">
<LatLon lat="46.0798842712826" lon="10.1245450973511" />
</LatLonZoom>
</GlobalPosition>
</PositionAssociation>
the point seem the 0.30902099609375% and the 0.069183349609375% but this value 0.707142857142857?
thanks

[SOLUTION] Titanium Backup not enough space 4.4.2 TW

Hi all!
I've updated from 4.3 to 4.4.2 Samsung Rom (tw). My case NB8.
Titanium Backup has stopped working. Shows the error "not enough space" when backing up to external sd card. Also, it shows that extsdcard is not writeable.
Here's the solution for i9505 to get it working, of course you need root to do that. It may work for other apps too and other phone models such i9500:
Edit file platform.xml in system/etc/permissions (make a backup first).
Search for this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
</permission>
Add this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
[COLOR="Green"][B]<group gid="media_rw" />[/B][/COLOR]
</permission>
Save changes and reboot.
Regards.
cybdani said:
Hi all!
I've updated from 4.3 to 4.4.2 Samsung Rom (tw). My case NB8.
Titanium Backup has stopped working. Shows the error "not enough space" when backing up to external sd card. Also, it shows that extsdcard is not writeable.
Here's the solution for i9505 to get it working, of course you need root to do that. It may work for other apps too and other phone models such i9500:
Edit file platform.xml in system/etc/permissions (make a backup first).
Search for this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
</permission>
Add this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
[COLOR="Green"][B]<group gid="media_rw" />[/B][/COLOR]
</permission>
Save changes and reboot.
Regards.
Click to expand...
Click to collapse
Lifesaver, cheers! Now if only there was a way for TB to restore all your apps without you having to click Install and Done on each one, this will take all day!
nrps1 said:
Lifesaver, cheers! Now if only there was a way for TB to restore all your apps without you having to click Install and Done on each one, this will take all day!
Click to expand...
Click to collapse
The pro version does not ask to install afaik. It installs all apps automaticly
Gesendet von meinem GT-I9505 mit Tapatalk
benni2903 said:
The pro version does not ask to install afaik. It installs all apps automaticly
Gesendet von meinem GT-I9505 mit Tapatalk
Click to expand...
Click to collapse
It looks to me like the ROM security itself, whenever I install anything it prompts for me to accept permissions etc, does this still apply?
If you are using the batch restore(?)(restore all backups + data) then it will not ask for every single app. TB just installs everything in the background
Gesendet von meinem GT-I9505 mit Tapatalk
benni2903 said:
If you are using the batch restore(?)(restore all backups + data) then it will not ask for every single app. TB just installs everything in the background
Gesendet von meinem GT-I9505 mit Tapatalk
Click to expand...
Click to collapse
Yes, you are right benni2903.
I hope that this thread can help to users that are upgrading to TW 4.4.2. I've spent over half an hour to find out where the problem was.
Regards
benni2903 said:
If you are using the batch restore(?)(restore all backups + data) then it will not ask for every single app. TB just installs everything in the background
Gesendet von meinem GT-I9505 mit Tapatalk
Click to expand...
Click to collapse
Strange, that is exactly what I chose and it was indeed asking for each one it needed to download (I assume). Oh well, I just flashed firmware and signed in on 1st boot and Google handled the rest instead!
nrps1 said:
Strange, that is exactly what I chose and it was indeed asking for each one it needed to download (I assume). Oh well, I just flashed firmware and signed in on 1st boot and Google handled the rest instead!
Click to expand...
Click to collapse
I don't configure my google account after a firm upgrade (if I deleted all data) until I've restored all apps using titanium. I install the free version from my external sd.
cybdani said:
Hi all!
I've updated from 4.3 to 4.4.2 Samsung Rom (tw). My case NB8.
Titanium Backup has stopped working. Shows the error "not enough space" when backing up to external sd card. Also, it shows that extsdcard is not writeable.
Here's the solution for i9505 to get it working, of course you need root to do that. It may work for other apps too and other phone models such i9500:
Edit file platform.xml in system/etc/permissions (make a backup first).
Search for this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
</permission>
Add this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
[COLOR="Green"][B]<group gid="media_rw" />[/B][/COLOR]
</permission>
Save changes and reboot.
Regards.
Click to expand...
Click to collapse
Many many thanks for sharing this!
It really did the trick!
I was about to rip my hair off, didn't know whether to ask the kernel developer or the titanium support first.
Also TB doesn't need internet connection ob startup for license check. Now I can also use TB again offline with full functionality
You saved my day
P.S. I'll hit the thanks buttons tomorrow,i spend all my thanks today for @ktoonsez awesome kernel
thank you! this saved me from pulling my hair out when i flashed a new rom!
cybdani said:
Hi all!
I've updated from 4.3 to 4.4.2 Samsung Rom (tw). My case NB8.
Titanium Backup has stopped working. Shows the error "not enough space" when backing up to external sd card. Also, it shows that extsdcard is not writeable.
Here's the solution for i9505 to get it working, of course you need root to do that. It may work for other apps too and other phone models such i9500:
Edit file platform.xml in system/etc/permissions (make a backup first).
Search for this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
</permission>
Add this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
[COLOR="Green"][B]<group gid="media_rw" />[/B][/COLOR]
</permission>
Save changes and reboot.
Regards.
Click to expand...
Click to collapse
Hi there - tried doing this fix using ES File Explorer - initially it wouldn't save so I coped the file out of original file path to internal SD to test and was able to save - tried pasting new file in and got error that the file system was read only (which was likely my original problem as suspected). How to I get around this, or change the file path location to writeable to simply save the original platform.xml?
Thanks,
~snowin
Disregard - I failed to see the little button where I could change permissions on the permissions folder Thanks for looking
---------- Post added at 06:08 PM ---------- Previous post was at 05:22 PM ----------
OK - so after re-booting my internal SD card seems to be "lost". A bunch of apps FC including titanium. I can access my external SD card using ES @ /storage/extsdcard but the /sdcard/ & storage/emulated are all blanks. Can someone point me in the right direction? I'm running ezkat 2.0 ROM for Note ii
snowin said:
Hi there - tried doing this fix using ES File Explorer - initially it wouldn't save so I coped the file out of original file path to internal SD to test and was able to save - tried pasting new file in and got error that the file system was read only (which was likely my original problem as suspected). How to I get around this, or change the file path location to writeable to simply save the original platform.xml?
Thanks,
~snowin
Disregard - I failed to see the little button where I could change permissions on the permissions folder Thanks for looking
---------- Post added at 06:08 PM ---------- Previous post was at 05:22 PM ----------
OK - so after re-booting my internal SD card seems to be "lost". A bunch of apps FC including titanium. I can access my external SD card using ES @ /storage/extsdcard but the /sdcard/ & storage/emulated are all blanks. Can someone point me in the right direction? I'm running ezkat 2.0 ROM for Note ii
Click to expand...
Click to collapse
Before to edit file, you need to mount system as RW. Then you can edit and save file. Root Explorer is better than es file explorer.
cybdani said:
Hi all!
I've updated from 4.3 to 4.4.2 Samsung Rom (tw). My case NB8.
Titanium Backup has stopped working. Shows the error "not enough space" when backing up to external sd card. Also, it shows that extsdcard is not writeable.
Here's the solution for i9505 to get it working, of course you need root to do that. It may work for other apps too and other phone models such i9500:
Edit file platform.xml in system/etc/permissions (make a backup first).
Search for this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
</permission>
Add this:
Code:
<permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
<group gid="sdcard_r" />
<group gid="sdcard_rw" />
[COLOR="Green"][B]<group gid="media_rw" />[/B][/COLOR]
</permission>
Save changes and reboot.
Regards.
Click to expand...
Click to collapse
Hey thanks so much for the solution! Fixed my Umi Zero right up (now I can start tweaking , but I'm curious, how does this fix work? Thanks!

Compile Error

I'm attempting to build omni rom from source on my mac for my galaxy note 2 N7100 and ran into the following error:
Code:
make: *** No rule to make target `vendor/samsung/smdk4412-common/proprietary/system/lib/libExynosHWCService.so', needed by `/Volumes/android/omnirom/out/target/product/n7100/system/lib/libExynosHWCService.so'. Stop.
I ran through all the steps again to make sure I didn't miss anything, but no luck.
Any ideas? Thanks
FYI, I created an omnirom.xml inside the local_manifests folder, here are the contents:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote name="omnirom"
review="gerrit.omnirom.org"
fetch="https://github.com/omnirom" />
<project path="device/samsung/n7100" name="android_device_samsung_n7100" remote="omnirom" revision="android-4.4"/>
<project path="device/samsung/smdk4412-common" name="android_device_samsung_smdk4412-common" remote="omnirom" revision="android-4.4"/>
<project path="hardware/samsung" name="android_hardware_samsung" remote="omnirom" revision="android-4.4"/>
<project path="kernel/samsung/smdk4412" name="android_kernel_samsung_smdk4412" remote="omnirom" revision="android-4.4"/>
</manifest>
EDIT: I went through the process again and came across the following error from extract-files.sh:
Code:
remote object '/system/lib/libExynosHWCService.so' does not exist
I currently have omni-4.4.2-20140428-n7100-NIGHTLY.zip installed.
Try adding the Donkey Coyote vendor repo to your local manifest.
https://github.com/DonkeyCoyote/proprietary_vendor_samsung/tree/android-4.4
PonsAsinorem said:
Try adding the Donkey Coyote vendor repo to your local manifest.
https://github.com/DonkeyCoyote/proprietary_vendor_samsung/tree/android-4.4
Click to expand...
Click to collapse
Hi, I'm a bit new to this so trying to figure out how to add this repo. Would you mind giving an example? Thanks
Also, I searched the repo and the file libExynosHWCService.so doesn't exist so I'm not sure it would help me.
cjhmdm said:
Hi, I'm a bit new to this so trying to figure out how to add this repo. Would you mind giving an example? Thanks
Also, I searched the repo and the file libExynosHWCService.so doesn't exist so I'm not sure it would help me.
Click to expand...
Click to collapse
Can you find the file '/system/lib/libExynosHWCService.so' on your phone ? The script uses "adb pull ..." to retrieve these proprietary files from your handset, so it first needs to exist on your device (it will) and secondly adb needs to be functional. (for what it's worth, you'll also find that file in the nightly zip but you don't want it).
To start with can you do simple things like:
adb devices
adb shell
Is your path setup correctly and pointing to the SDK ?
There are instructions for "configuring USB access" over at the android developers site.
http://source.android.com/source/initializing.html
I have this configured on my machine, but I honestly can't remember if I did this manually or if it was done automagically during the initial repo setup.
FrodgE said:
Can you find the file '/system/lib/libExynosHWCService.so' on your phone ? The script uses "adb pull ..." to retrieve these proprietary files from your handset, so it first needs to exist on your device (it will) and secondly adb needs to be functional. (for what it's worth, you'll also find that file in the nightly zip but you don't want it).
To start with can you do simple things like:
adb devices
adb shell
Is your path setup correctly and pointing to the SDK ?
There are instructions for "configuring USB access" over at the android developers site.
http://source.android.com/source/initializing.html
I have this configured on my machine, but I honestly can't remember if I did this manually or if it was done automagically during the initial repo setup.
Click to expand...
Click to collapse
Hello, thanks for taking the time to reply. My build environment is setup and configured correctly. All of my paths are correct, etc.
In searching my device, which is running omni-4.4.2-20140428-n7100-NIGHTLY.zip, the file libExynosHWCService.so doesn't exist, nor does the 'binary' version exist in the rom zip file.
cjhmdm said:
Hello, thanks for taking the time to reply. My build environment is setup and configured correctly. All of my paths are correct, etc.
In searching my device, which is running omni-4.4.2-20140428-n7100-NIGHTLY.zip, the file libExynosHWCService.so doesn't exist, nor does the 'binary' version exist in the rom zip file.
Click to expand...
Click to collapse
Just add DonkeyCoyote repo as mentioned above and build.
BTW, omnirom remote is already configured by default, you don't need to do it in local manifest.
UtkarshGupta said:
Just add DonkeyCoyote repo as mentioned above and build.
BTW, omnirom remote is already configured by default, you don't need to do it in local manifest.
Click to expand...
Click to collapse
Could you provide an example of how I can add that repo? I'm trying to figure out to add it but haven't had much success so far.
Thanks in advance
Code:
<remote fetch="https://github.com/DonkeyCoyote" name="donkey" />
<project name="proprietary_vendor_samsung" path="vendor/samsung" remote="donkey" revision="android-4.4" />
chasmodo said:
Code:
<remote fetch="https://github.com/DonkeyCoyote" name="donkey" />
<project name="proprietary_vendor_samsung" path="vendor/samsung" remote="donkey" revision="android-4.4" />
Click to expand...
Click to collapse
cjhmdm said:
I'm attempting to build omni rom from source on my mac for my galaxy note 2 N7100 and ran into the following error:
Code:
make: *** No rule to make target `vendor/samsung/smdk4412-common/proprietary/system/lib/libExynosHWCService.so', needed by `/Volumes/android/omnirom/out/target/product/n7100/system/lib/libExynosHWCService.so'. Stop.
I ran through all the steps again to make sure I didn't miss anything, but no luck.
Any ideas? Thanks
FYI, I created an omnirom.xml inside the local_manifests folder, here are the contents:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote name="omnirom"
review="gerrit.omnirom.org"
fetch="https://github.com/omnirom" />
<project path="device/samsung/n7100" name="android_device_samsung_n7100" remote="omnirom" revision="android-4.4"/>
<project path="device/samsung/smdk4412-common" name="android_device_samsung_smdk4412-common" remote="omnirom" revision="android-4.4"/>
<project path="hardware/samsung" name="android_hardware_samsung" remote="omnirom" revision="android-4.4"/>
<project path="kernel/samsung/smdk4412" name="android_kernel_samsung_smdk4412" remote="omnirom" revision="android-4.4"/>
</manifest>
EDIT: I went through the process again and came across the following error from extract-files.sh:
Code:
remote object '/system/lib/libExynosHWCService.so' does not exist
I currently have omni-4.4.2-20140428-n7100-NIGHTLY.zip installed.
Click to expand...
Click to collapse
Hello, I'm trying to build a LineageOS rom for Meizu PRO5 which has a similar chipset as Samsung Galaxy S6/Note5, I also encounter a similar error with libExynosHWCService, which says:
Code:
make: *** No rule to make target /home/user/los/system/out/target/product/m86/obj/SHARED_LIBRARIES/libExynosHWCService_intermediates/export_includes', needed by 'home/user/system/out/target/product/m86/obj/SHARED_LIBRARIES/libsurfaceflinger_intermediates/import_includes'. Stop.
Can you please advise and help? I both have these libraries in the vendor folders for both /lib and /lib64 and currently stuck here. Thanks in advance!

Help get UI nav sounds.

Hi there!
I`m running an androidtv rom and i`d like to get the ui navigation sounds for Nexus player.
Thx so much.
well, I did some digging and found audio "ogg" files
"pano_blip_alt, pano_click, pano_error" under ui in media/audio folder under system...but when copied over to my rom nothing changes, so what file do I need to change to load them in my rom?
Thx!
Does anyone have any idea where to look?
You need to update audio_assets.xml in framework-res.apk to this:
Code:
<?xml version="1.0" encoding="utf-8"?>
<audio_assets version="1.0">
<group name="touch_sounds">
<asset id="FX_KEY_CLICK" file="pano_click.ogg" />
<asset id="FX_FOCUS_NAVIGATION_UP" file="pano_blip_alt.ogg" />
<asset id="FX_FOCUS_NAVIGATION_DOWN" file="pano_blip_alt.ogg" />
<asset id="FX_FOCUS_NAVIGATION_LEFT" file="pano_blip_alt.ogg" />
<asset id="FX_FOCUS_NAVIGATION_RIGHT" file="pano_blip_alt.ogg" />
<asset id="FX_KEYPRESS_STANDARD" file="KeypressStandard.ogg" />
<asset id="FX_KEYPRESS_SPACEBAR" file="KeypressSpacebar.ogg" />
<asset id="FX_KEYPRESS_DELETE" file="KeypressDelete.ogg" />
<asset id="FX_KEYPRESS_RETURN" file="KeypressReturn.ogg" />
<asset id="FX_KEYPRESS_INVALID" file="pano_error.ogg" />
</group>
</audio_assets>
Thx man....you are my savior.....love you!!!
update:
I used "Advanced_ApkTool_v4.2.0_By_BDFreak_2.2.1_2" to unpack...made the changes with notepad++, repacked and signed...flashed a zip file with twrp...but it get locked in bootloop...until i reflash the original file back in...glad i thought to make a backup...so now it`s back to normal...what gives?
When using apktool, you'll want to build with the -c option to carry over the signature from the original apk. Also, I'd use the -s option on decode so that it keeps the classes.dex intact. (No need to recompile those if you're just changing a resource.)
Thx so much...I don`t see where to enable those options....are they available on windows?
I just figured we`re talking about 2 different tools ...are you talking about this one?

Categories

Resources