The crash log is auto-catched on iOS device:
阅读全文
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
Steps:1. Pair your Huawei watch 2 to any of your android phone (You can install Android Wear app to pair it )2. Be in the Chinese locale on your Phone and watch3. Go to watch settings and select about4. In about, Tap 7 times on the build number (Developer options will be enabled)5. Now go to Developer options in the settings on Watch and turn on options for ADB debugging , Debug over Bluetooth6. Open Android Wear app on your phone and select settings gear icon on upper right hand corner.7. Scroll through the menu until you get to “Device over Bluetooth” section.8. If you have multiple devices paired to same phone, select the wearable to connect to “Device to Debug.”"9. Enable Debugging over Bluetooth.10. You should see “Host:disconnected, Target: connected” text.11. Now on your terminal type following commands:./adb forward tcp:4444 localabstract:/adb-hub./adb connect localhost:4444./adb devices12. The text on the phone should change to “Host: connected, Target: connected.”"13. When you run the adb devices command, two devices should appear in the list."14. Now install apk file using the below commandadb -s localhost:4444 install {path of apk}15. It will take 5-10mins after you enter step 14 command and it will success if you are able install the build successfullyIn step 11: we should type cmd commands:adb forward tcp:4444 localabstract:/adb-hubadb connect 127.0.0.1:4444adb devicesIn step 14: the commandsshould be:adb -s 127.0.0.1:4444 install D:\Nike\NRC\NRCWear\NRC-Wear-1801000400-172-RC-Signed.apkIf we occurred to some error, please try below methods:adb kill-serveradb start-server
12345678910
{ "user_id": "78388364-eb6c-4a6b-bb69-fff6842077ed", "access_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImU3OWQ4ZjU1LTExN2ItNGUxMy04OTU3LTc5YzQ2Y2FmNjY2ZHNpZyJ9.eyJpYXQiOjE0OTgwMTQyMDksImV4cCI6MTQ5ODAxNzgwOSwiaXNzIjoib2F1dGgyYWNjIiwianRpIjoiM2FmYzU2NGEtZDNjYy00NDRiLTljYTctOTVmZmY4OWIyZmY5IiwibGF0IjoxNDk4MDE0MjA5LCJhdWQiOiJjb20ubmlrZS5kaWdpdGFsIiwic3ViIjoiY29tLm5pa2UubnRjLmJyYW5kLmRyb2lkIiwic2J0IjoibmlrZTphcHAiLCJvcmciOiJwcm9kIiwic2NwIjpbIm5pa2UuZGlnaXRhbCJdLCJwcm4iOiI3ODM4ODM2NC1lYjZjLTRhNmItYmI2OS1mZmY2ODQyMDc3ZWQiLCJwcnQiOiJuaWtlOnBsdXMifQ.EqYnbKaGyTSZLK-4TpZ2rHDqPDtFooV6o7yTzKAhpqAfUfcNc2rZR5Rmty12DJYIJPTo8LFefO-Y5SbO5E7gXV9vf88MoEXnUcxmSQg2GTSILZrN3uF_aV_-DMu12gVvEvARVT6q58eGV-RmJ8R3lkwOUHTNO7-vjwHMAQe7nPvjWropqawVQZy2kylpI4XtytxmdMlpjLhI7yTeJKSFsF5Eex71p-2koxH73Puyj6hxQAcpUFJfvlO3PfTB1mpJQcxQ2WvS3Tiz9UcpUsF8TJaCuNb29DOmZk6pZaahCoanAtCT_M8rL0D-8uA7ErnUkDyHy0lJRhKYMOijm7jllQ", "refresh_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjdkMWQ4MjE4LWUwMDEtNGE0Ny04ODBjLTg0MzE1MDg5Njg4MnNpZyJ9.eyJpYXQiOjE0OTgwMTQyMDksImV4cCI6MTUyOTU1MDIwOSwiaXNzIjoib2F1dGgyaWR0IiwianRpIjoiZmUzNjhiOWMtNmFiNC00NzJkLTliOWYtNjEyZTJmOTc4NWMzIiwibGF0IjoxNDk4MDE0MjA4LCJhdWQiOiJvYXV0aDJpZHQiLCJjbGkiOiJyMFBEc1V4VmlyQXBIQXZQYWl3WUtYQTBSc1U3SU9zZiIsIm9yZyI6InByb2QiLCJzdWIiOiI3ODM4ODM2NC1lYjZjLTRhNmItYmI2OS1mZmY2ODQyMDc3ZWQiLCJzYnQiOiJuaWtlOnBsdXMifQ.Ma1OB9SoV6w3PUSnBeaKt6vP_19bKlG-NUVBnJw5Hk4tmW8nEb4Iloq_nXSXJhAV7S_9b7hJ9kADHjitTNaCu4XTof-vrcPrkPFlITcxz-VlTQp6yAoIc1QwCs9xvJjDAYQCEnN6YZsvFSZ9ECs6Zz5ms08LXqH0P8SQPxXetKfAQNrjZnzWGdSULLxVnT9V0EMN0iSryn9eJwqqLkt7gR_tR1KhyURb6x8oeAmeaBmNidBiKJ0vRlLFqv8xDYsgwZU4xAlcjdePl1KTDWjlAH954DXBwz3J_V7-bZQQdswIUzWaMCxVff9VocfRqJM9ArmKmbXrmSQ3VxXzfprtoA", "expires_in": "3600", "token_type": "bearer"}
12345678910111213
git init //在当前目录新建一个Git代码库git add . // 添加改动文件到暂存区git rm --cached [file] //停止追踪指定文件,但该文件会保留在工作区(如果添加ignorance文件无效的话)git commit -m [message] //提交暂存区到仓库区git checkout . // 恢复暂存区的所有文件到工作区// 暂时将未提交的变化移除,稍后再移入git stashgit stash pop
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.