OFFICIAL Mokee MK71.2

jaimeh12

Member
Mar 28, 2011
18
3
0
Bilbao
I can't get to work Google Play Music app. Every thing else works so great... But this app is a must-use for me. I tried voodoo just in case but it didn't help. Just tested on 09/23 build.
When I play the music it freezes a little and electric noise is made out of the speaker, audioFX app also frezes if I open it while playing.
 
Last edited:
  • Like
Reactions: sayerofurname

hugito00

Member
Sep 12, 2014
20
1
0
That's cool, just made a simple script to help find out the changelogs that matters. (TamperMonkey)
Code:
// ==UserScript==
// @name         Mokee Changelog Finder
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Find changes that matters.
// @author       Hugo José Gonçalves
// @match        http://changelog.mokeedev.com/index.php?mk_version=MK71
// @require      http://code.jquery.com/jquery-1.12.4.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $(document).find("tbody a").each(function() {
        var changelog = $(this);
        $.get(changelog[0].href, function(data) {
            if (data.indexOf("xiaomi/markw") !== -1) {
                changelog.append("<i style=\"margin-left: 10px;\">✋</i>");
            }
        });
    });
})();
 
  • Like
Reactions: N1ck474

Azoset

Senior Member
May 7, 2014
97
24
28
Dublin
That's one of the many very obvious bugs that has remained with every build since experimental.
It's a good rom and will go back when they sort out the issues.