Last active
November 15, 2016 00:21
-
-
Save michael-martinez/12aa29658f0ca80a48669a5639baf919 to your computer and use it in GitHub Desktop.
Memento Android
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
Android Debugger : | |
%LOCALAPPDATA%\Android\android-sdk\platform-tools\adb.exe devices | |
%LOCALAPPDATA%\Android\android-sdk\platform-tools\adb.exe -c | |
%LOCALAPPDATA%\Android\android-sdk\platform-tools\adb.exe -s Filter | |
%LOCALAPPDATA%\Android\android-sdk\platform-tools\adb.exe -s Filter -d > logcat.txt | |
type logcat.txt | findstr "pattern" | |
Unity 3D log messages filtering : | |
adb logcat -s Unity ActivityManager PackageManager dalvikvm DEBUG | findstr /V UnityEngine | findstr /V Filename | |
Facebook Unity SDK for Android integration steps : | |
- Download last SDKs version | |
- Setup : Facebook > Settings, Player Settings, developers.facebook.com, Min version 15 | |
- Android Manifest under Plugins\Android | |
- default permissions { "email", "public_profile", "user_friends" } | |
- Vérify Android Settings (hash key) | |
Troubleshooting : | |
- OpenSSL issue : See http://eim-games.com/how-to-openssl-for-unity-5/2015/05/31 | |
"C:\Program Files\Java\jdk1.7.0_79\bin\keytool.exe" -exportcert -alias androiddebugkey -keystore "C:\Users\utilisateur.android\debug.keystore" | "C:\Program Files\OpenSSL\bin\openssl.exe" sha1 -binary | "C:\Program Files\OpenSSL\bin\openssl.exe" base64 | |
- Remove Duplicate JAR Files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment