Jump to content
AVIC411.com

mdpauley

Members
  • Content Count

    13
  • Joined

  • Last visited

Posts posted by mdpauley

  1. A while ago I was looking at an image for the 6000 and started looking at the .apks and I was wondering if anyone had isolated the app that launches CarPlay before I start digging through it again.

     

    My end goal is to install the app on a tablet if possible.

     

    Thanks in advance

  2. Can someone who has successfully modified their NEX comment on the functionality, looks and overall thoughts on the new maps? How well does it work? Glad you did it? I have the nex 5000 and am considering trying this.

    I have a 6000 and to me the maps seem faster. You can also get 3D buildings which is a 8000 series feature.

  3. As the title says I am trying to update my maps but I'm a little nervous that I am going to mess it all up. I have downloaded everything I think I need from http://www.gpspower.net/igo-maps/340262-here-2015-q3-canada-usa.html. I am setting up the folders to run MapCreator.pl and that is where I need validation that everything is right.

     

    Would someone mind just taking a look and letting me know if that looks right please.

     

    Also, what is the suggested way to backup my current map data so I can restore if needed?

     

    Thanks a million!

     

    1.png

     

    2.png

     

    3.png

     

    4.png

  4. I got caught with work yesterday so it won't be till tonight or tomorrow I can test any changes.

     

    No, I offered to replace one of the system applications from list to own, for example, to simple file explorer application, so we can be able to copy files to/from device to/from sd/usb flash.

    Just as an example: can we replace IGO_UC.apk with simple file explorer application? Is it will be started when we pressing navi button?

     

    It's almost that simple. The menu calls the appname (or activity) for the assigned application, so we should just have toreplace the package name or activity in the .xml file.

    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" android:sharedUserId="com.navngo" android:sharedUserLabel="@string/shared_user_label" package="com.navngo.igo.javaclient">
        <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
        <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
        <uses-permission android:name="android.permission.READ_CONTACTS"/>
        <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
        <uses-permission android:name="android.permission.WAKE_LOCK"/>
        <uses-permission android:name="android.permission.INTERNET"/>
        <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
        <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
        <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>
        <uses-permission android:name="com.android.providers.MediaInfo.accessMediaInfo"/>
        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
        <uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
        <uses-permission android:name="com.android.vending.BILLING"/>
        <uses-permission android:name="android.permission.RECORD_AUDIO"/>
        <application android:allowClearUserData="true" android:debuggable="false" android:icon="@drawable/appicon" android:label="@string/app_name" android:name="com.navngo.igo.javaclient.Application" android:persistent="true" android:theme="@android:style/Theme.NoTitleBar">
            <receiver android:name="com.navngo.igo.javaclient.BootReceiver">
                <intent-filter>
                    <action android:name="jp.pioneer.ceam.EXTEND_ACTION_RESUME"/>
                </intent-filter>
            </receiver>
            <receiver android:name="com.navngo.igo.pioneer.DeleteRouteReceiver">
                <intent-filter>
                    <action android:name="com.navngo.igo.javaclient.DELETE_PLANNED_ROUTE"/>
                    <category android:name="android.intent.category.DEFAULT"/>
                </intent-filter>
            </receiver>
            <receiver android:name="com.navngo.igo.pioneer.ShowScreenReceiver">
                <intent-filter>
                    <action android:name="com.navngo.igo.javaclient.SHOW_SCREEN"/>
                    <category android:name="android.intent.category.DEFAULT"/>
                </intent-filter>
            </receiver>
            <activity android:configChanges="locale|mcc|mnc|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|layoutDirection|fontScale" android:label="@string/app_name" android:launchMode="singleTask" android:name="com.navngo.igo.javaclient.MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN"/>
                    <category android:name="android.intent.category.LAUNCHER"/>
                    <category android:name="android.intent.category.DEFAULT"/>
                </intent-filter>
                <intent-filter>
                    <action android:name="com.navngo.igo.javaclient.NAVIGATE_TO"/>
                    <category android:name="android.intent.category.DEFAULT"/>
                    <data android:mimeType="vnd.navngo.igo.item/address"/>
                </intent-filter>
            </activity>
            <service android:name="com.navngo.igo.pioneer.PioneerService">
                <intent-filter>
                    <action android:name="com.navngo.igo.javaclient.MAINSERVICE"/>
                </intent-filter>
            </service>
            <service android:name="com.navngo.igo.javaclient.SLAPIService">
                <intent-filter>
                    <action android:name="com.navngo.igo.javaclient.SLAPI_SERVER"/>
                </intent-filter>
            </service>
            <activity android:launchMode="singleInstance" android:name="com.navngo.igo.javaclient.InsertSDCard" android:theme="@android:style/Theme.Dialog">
                <intent-filter>
                    <action android:name="com.navngo.igo.javaclient.InsertSDCard.DEFAULT"/>
                    <action android:name="com.navngo.igo.javaclient.InsertSDCard.CLEAR"/>
                    <category android:name="android.intent.category.DEFAULT"/>
                </intent-filter>
            </activity>
            <activity android:excludeFromRecents="true" android:launchMode="singleInstance" android:name="com.navngo.igo.javaclient.WarnerBrothers" android:theme="@android:style/Theme.Dialog">
                <intent-filter>
                    <action android:name="com.navngo.igo.javaclient.WarnerBrothers.DEFAULT"/>
                    <action android:name="com.navngo.igo.javaclient.WarnerBrothers.CLEAR"/>
                    <category android:name="android.intent.category.DEFAULT"/>
                </intent-filter>
            </activity>
            <activity android:configChanges="orientation|screenSize" android:name="com.navngo.igo.javaclient.browser.BrowserActivity"/>
        </application>
        <supports-screens android:anyDensity="true"/>
    </manifest>
    
    

    btw.. If I post something you think I shouldn't let me know and I will remove it.

  5. I think the next phase is getting someone involved that is familiar with Android ROMs, since that is essentially what this is. Its basically a ROM we need to decompile and modify to suit our needs and sadly that ain't me.

     

    I'm no ROM expert but I've been looking at the .apks decrypted with apktool and think repackaging an app should work. I'm going to try on my 6000 tomorrow afternoon.

     

    Screenshot%202015-06-27%2001.44.10.png

×
×
  • Create New...