1. spatel19's Avatar
    How about BMW my remote

    Posted via CB10
    acschnitzersport likes this.
    10-22-13 10:14 PM
  2. Pluto is a planet's Avatar
    if someone can do this to the tinder app for me that would be awesome, i can't seem to get the gmap removal to work
    Worked for me w/debug. Got it from the grindr thread.

    Tinder-signed (1)
    10-22-13 11:26 PM
  3. moneytoo's Avatar
    @jmcmanus26: Sure

    Code:
    .method public setAndroidSignature(Ljava/lang/String;)V
        .locals 3
        .parameter "signature"
    
        .prologue
        .line 1332
        iget-object v0, p0, Landroid_maps_conflict_avoidance/com/google/googlenav/datarequest/DataRequestDispatcher;->properties:Landroid_maps_conflict_avoidance/com/google/common/io/protocol/ProtoBuf;
    
        const/16 v1, 0x12
    
        const-string v2, "2878691fb70c1076bf76b803e15d904a"
    	
        invoke-virtual {v0, v1, v2}, Landroid_maps_conflict_avoidance/com/google/common/io/protocol/ProtoBuf;->setString(ILjava/lang/String;)V
    
        .line 1334
        return-void
    .end method
    ATV_Hightower likes this.
    10-23-13 12:11 AM
  4. ATV_Hightower's Avatar
    same to me. maybe someone can make a pictured How-To ?
    10-23-13 02:51 AM
  5. ATV_Hightower's Avatar
    So, After an hour of try & error I was able to modify an app so it runs on my Z10. The only thing I miss is that the app doesnt find my position nor can guide me to a position. Did I made a mistake or is this a normal limitation?
    10-23-13 04:44 AM
  6. moneytoo's Avatar
    @ATV_Hightower
    Positioning works for me in all apps. Make sure it works for you in other Android apps (Osmand or something else).
    10-23-13 04:48 AM
  7. ATV_Hightower's Avatar
    second time I opened the app everything is fine! many thanks for this method!! I was looking a way like this for a long time!!
    10-23-13 04:55 AM
  8. noelito4three's Avatar
    Subscribed to this thread and hoping for a automated script. =)

    Posted via CB10
    10-23-13 06:43 AM
  9. jmcmanus26's Avatar
    @moneytoo your awesome man works great!!
    10-23-13 07:40 AM
  10. kratzer999's Avatar
    So maybe one of you guys that got it to work can tell us more detail info. So we shouldn't run into the trouble you guys did.



    Posted via CB10
    10-23-13 02:37 PM
  11. ATV_Hightower's Avatar
    Ok, here is a small How-To of the way I did id.


    First: you need a bunch of tools:

    • apkTool Link (I used the windows version)
    • gapps Link (I used Android 4.2.2. Version)
    • openSSL Link
    • SignAPK Link (Password: SanketN8 ) -> Credits go to YouTube User Sanket Naik


    Second:
    • unpack apktool
    • move the app you want to convert in the apkTool folder (let's call "app.apk")
    • open cmd in apkTool folder (shift + rightclick)
    • enter
      Code:
      apktool d app.apk app
    • a new folder is created with the name of your app
    • ​go into this folder and open "AndroidManifest.xml" with editor
    • delete line
      Code:
      <uses-libraryandroid:name=“com.google.android.maps”/>
    • save & exit


    Third:

    • unpack com.google.android.maps.jar from gapps-jb-20130812-signed.zip /system/framework
    • move it in your apkTool folder
    • open cmd in apkTool folder
    • enter
      Code:
      apktool d com.google.android.maps.jar
    • a new com.google.android.maps -folder is created
    • copy and paste the "smali" folder from com.google.android.maps into your app folder


    Fourth:

    • install openssl
    • open app.apk with 7zip or winrar, go to folder META-INF and extract "Cert.RSA" into your openssl bin folder (C:\OpenSSL-Win32\bin)
    • open cmd in c:\OpenSSL-Win32\bin folder
    • enter
      Code:
      openssl.exe pkcs7 -inform DER -in *.RSA -print_certs -out cert
    • enter
      Code:
      openssl.exe x509 -noout -in cert -fingerprint -md5
    • copy the MD5 fingerprint
    • go to you apkTool\app\smali\android_maps_conflict_avoidance\ com\google\googlenav\datarequest folder, open DataRequestDispatcher.smali with editor
    • find the method setAndroidSignature()
    • Code:
       .method public setAndroidSignature(Ljava/lang/String;)V
    • modify as followed:

    Code:
        .locals 3
        .parameter "signature"
    
        .prologue
        .line 1332
        iget-object v0, p0, Landroid_maps_conflict_avoidance/com/google/googlenav/datarequest/DataRequestDispatcher;->properties:Landroid_maps_conflict_avoidance/com/google/common/io/protocol/ProtoBuf;
    
        const/16 v1, 0x12
    
        const-string v2, "2878691fb70c1076bf76b803e15d904a"       <-- this is were you place your MD5 Hash without colons, lower case!
        
        invoke-virtual {v0, v1, v2}, Landroid_maps_conflict_avoidance/com/google/common/io/protocol/ProtoBuf;->setString(ILjava/lang/String;)V
    
        .line 1334
        return-void 
    .end method
    • save and exit
    • go back to your main apkTool folder, open CMD and enter:
      Code:
      apktool b App App2.apk


    • App2.apk is created


    sixth:

    • unzip signAPK files into new folder
    • move App2.apk into the same folder
    • add a batch file, SignAPK.bat with the following code:
      Code:
      java -jar signapk.jar certificate.pem key.pk8  %1 %~n1-signed.apk
    • place app2.apk on SignApp.bat and app2_signed.apk is created.
    • You can now convert app2_signed.apk to a bar file and install it on your device
    Last edited by ATV_Hightower; 10-25-13 at 12:46 PM.
    10-24-13 04:25 AM
  12. akusnowo's Avatar
    Can you please help all of us who wants the golflogix free version?

    Posted via CB10
    10-24-13 08:22 AM
  13. ATV_Hightower's Avatar
    If you could post a Link to the *.apk file I can try after it when I�m back home after work
    10-24-13 08:28 AM
  14. kratzer999's Avatar
    Tnx @ATV for detailing the process. I'll try it once I get home on some apps.

    Now if only we can get a fix for apps that depend on bluetooth.

    Posted via CB10
    10-24-13 02:44 PM
  15. danielnfletcher's Avatar
    Hi, would someone be able to try this with the Natwest Banking app and Quidco app?

    Natwest: https://play.google.com/store/apps/d...ndroid.natwest
    Quidco: https://play.google.com/store/apps/d...?id=com.quidco

    Thanks

    Daniel
    10-24-13 02:55 PM
  16. akusnowo's Avatar
    here's the apk for the golflogix...hope you could do your magic and make this work..

    APK Downloads.ws - GolfLogix #1 Free Golf GPS App 6.9 APK
    10-24-13 03:11 PM
  17. kratzer999's Avatar
    Ok, here is a small How-To of the way I did id.



    Third:

    • unpack com.google.android.maps.jar from gapps-jb-20130812-signed.zip /system/framework
    • move it in your apkTool folder
    • open cmd in apkTool folder
    • enter
      Code:
      apktool b com.google.android.maps.jar
    • a new com.google.android.maps -folder is created
    • copy and paste the "smali" folder from com.google.android.maps into your app folder


    [/LIST]
    the code should be "d" com.android...
    Last edited by kratzer999; 10-24-13 at 10:32 PM. Reason: typo
    ATV_Hightower likes this.
    10-24-13 10:30 PM
  18. kratzer999's Avatar
    copy and replace the whole smali folder?
    10-24-13 10:38 PM
  19. kratzer999's Avatar
    tnx soooo much OP and a big tnx to ATV for the detailed instructions. got viper smart start to work even better!

    and btw the following peace off code should be edited or deleted to avoid error

    <-- this is were you place your MD5 Hash without colons, lower case! "-->"
    ATV_Hightower likes this.
    10-25-13 12:01 AM
  20. Willeonabe's Avatar
    A HUGE thanks to the OP for sharing the original method and to ATV for the detailed steps. I've been sitting here trying out ones that have given me the -9 error. Got 3 to install with success (1 doesn't work properly but does come up before it says that it stopped) . Tried to do Starbucks but that one gives errors on the initial decode and the recompile and doesn't create a new APK. Maybe others will be able to figure it out.
    10-25-13 01:07 AM
  21. ATV_Hightower's Avatar
    here's the apk for the golflogix...hope you could do your magic and make this work..

    APK Downloads.ws - GolfLogix #1 Free Golf GPS App 6.9 APK
    So what exactly is your problem with golflogix? I sideloaded it to my Z10 and it worked out of the box. Only on the start page it say�s "Youtube Player could not be loaded" (or something like this).
    It recognises my postal zip code, shows a list of the nearest courses, downloads all courses and everything works fine. I`m using 10.2.0.1791 and sys.android 10.2.1.20 & sys.android.shell 10.2.1.13

    How to fix any Android app dependent on Google Maps API and make maps working-img_00000001.png
    How to fix any Android app dependent on Google Maps API and make maps working-img_00000002.png
    How to fix any Android app dependent on Google Maps API and make maps working-img_00000006.png
    Last edited by ATV_Hightower; 10-25-13 at 09:05 AM.
    10-25-13 08:45 AM
  22. akusnowo's Avatar
    When I installed it, it looks for gps satellite and can't locked....let me try to reinstall it and let you know exactly the error message. Thanks for trying this for me though. Let you know.

    Posted via CB10
    10-25-13 07:58 PM
  23. JBezeau's Avatar
    Can this work for tinder?

    Posted via CB10
    blackberry519 likes this.
    10-25-13 08:58 PM
  24. mikedolo's Avatar
    Tinder 1.5.2 | APKDAD Can u do this for tinder pls?
    Last edited by mikedolorean; 10-25-13 at 09:38 PM.
    10-25-13 09:26 PM
  25. ATV_Hightower's Avatar
    Tinder 1.5.2 | APKDAD Can u do this for tinder pls?
    Here you are Tinder.apk You have to convert it by yourself (use xsacha's Method)
    BUT. because I�m far away from beeing something like a developer or even programmer I cannot do anything else then going the way that is described in this thread. It seems to work but I can not test it because I dont have a facebook account. Good Luck!
    spiculated likes this.
    10-26-13 09:41 AM
733 1234 ...

Similar Threads

  1. Best Leak to Run on T-Mobile Network?
    By AfroZepher in forum BlackBerry 10 OS
    Replies: 16
    Last Post: 01-21-15, 07:29 AM
  2. Manually program BB10 device to set MDN and MSID?
    By onlinespending in forum BlackBerry 10 OS
    Replies: 3
    Last Post: 10-20-13, 12:26 PM
  3. My Z10 updated now I can't hook up to wifi
    By Tony Stashuk in forum BlackBerry Z10
    Replies: 5
    Last Post: 10-19-13, 11:44 PM
  4. Used sachesi and SR version still says 4181??
    By sinnar in forum BlackBerry 10 OS
    Replies: 4
    Last Post: 10-19-13, 08:18 PM
LINK TO POST COPIED TO CLIPBOARD