This file contains 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
ANACONDA WITH PYTHON3.7 -> JUBITER NOTE | |
-Default Path : C:/User |
This file contains 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
1.Download Nuget exe | |
2.nuget spec -> generate .unspec file | |
3.nuget pack -> generate .unpkg file | |
4.nuget push -Source "tfs url" -ApiKey VSTS your_package.unpkg | |
tfs strategy -> | |
upload package -> builder -> build success -> assemble update -> nuget push |
This file contains 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
react -> | |
react-native init [專案名稱] //建立專案 | |
react-native run-android/ios //啟用專案 | |
android-emulator-> | |
> C:\Users\motx2152000\AppData\Local\Android\Sdk\tools //到指定目錄 | |
android create avd -n "[模擬器名稱]" -k "[system-image]" //建立模擬器 | |
emulator -list-avds //列出模擬器清單 | |
emulator @[模擬器名稱] //開啟模擬器 |