- Close Android File Transfer
- Open Activity Monitor and kill “Android File Transfer Agent”
- Go to where you installed “Android File Transfer.app” (I have it under /Applications)
- Ctrl+click –> “Show package contents”
- Go to Contents/Resources
- Rename “Android File Transfer Agent” to e.g. “Android File Transfer Agent_DISABLED”
- Then go to “/Users/username/Library/Application Support/Google/Android File Transfer” and again rename the Agent app.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if (isset($_GET['hub_challenge'])) { | |
| $data = ['hub.challenge' => $_GET['hub_challenge']]; | |
| header("HTTP/1.1 200 OK"); | |
| header('Content-Type: application/json; charset=utf-8'); | |
| echo json_encode($data); | |
| exit; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| Fetch installs and ratings reports from Google Play | |
| for specific app for the current month. | |
| Filter the CSV's and produce a combined report for | |
| active users on specific Android version along with | |
| total avarage rating for the OS version. | |
| 'active_installs_and_ratings.ps1' by | |
| Vladimir Paskov (vpaskov@vmsoft-bg.com) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://stackoverflow.com/questions/37063267/high-cpu-usage-with-android-emulator-qemu-system-i386-exe | |
| The cause of the constant CPU usage is the sound. If you do not need sound in your emulator you can disable it by editing the AVD's config file. | |
| Change/add those two lines | |
| hw.audioInput=no | |
| hw.audioOutput=no | |
| On Linux/Mac the file is located at ~/.android/avd/<AVD_Name>.avd/config.ini | |
| On Windows the file is located at C:\Users\<username>\.android\avd\<AVD_Name>.avd\config.ini |