This test rule is now in the 'test-rules' support repository. Use that one!
https://developer.android.com/reference/android/support/test/rule/ActivityTestRule.html
| /** | |
| * Google Spreadsheet向けBigQuery取り込みスクリプト | |
| * http://toreta.blog.jp/archives/20649904.html | |
| * License: MIT 2014- Toreta, Inc. | |
| * | |
| * runAllQueries() をトリガーで毎日実行してください | |
| * Queries, Single row queries, Dataの三つのシートを作って下さい | |
| * Queries, Single row queriesのシートには実行するクエリを書きます | |
| * A列にクエリ名、B列にクエリです。 | |
| * conuntなどの集約関数で1行しか返らないクエリは「Single row queries」、それ以外は「Queries」に書いて下さい |
This test rule is now in the 'test-rules' support repository. Use that one!
https://developer.android.com/reference/android/support/test/rule/ActivityTestRule.html
おことわり:これはコミュニティから来た任意の人によって作られた非公式なコメントです。私はio.jsの公式な代表ではありません。何か質問がある人はnode-forward discussionsリポジトリのissueを開いて下さい
| http://qiita.com/advent-calendar/2014/adobe/feed | |
| http://qiita.com/advent-calendar/2014/agile_casual/feed | |
| http://qiita.com/advent-calendar/2014/android/feed | |
| http://qiita.com/advent-calendar/2014/angularjs/feed | |
| http://qiita.com/advent-calendar/2014/ansible/feed | |
| http://qiita.com/advent-calendar/2014/ar/feed | |
| http://qiita.com/advent-calendar/2014/aspnet/feed | |
| http://qiita.com/advent-calendar/2014/atom/feed | |
| http://qiita.com/advent-calendar/2014/avx512/feed | |
| http://qiita.com/advent-calendar/2014/aws/feed |
| brew install homebrew/dupes/apple-gcc42 | |
| rbenv install 1.9.3-p484 | |
| rbenv global 1.9.3-p484 | |
| git clone https://github.com/cowboyd/libv8.git | |
| cd libv8 | |
| git checkout 3.11 | |
| export CC=/usr/local/Cellar/apple-gcc42/4.2.1-5666.3/bin/gcc-4.2 | |
| export CXX=/usr/local/Cellar/apple-gcc42/4.2.1-5666.3/bin/g++-4.2 | |
| export CPP=/usr/local/Cellar/apple-gcc42/4.2.1-5666.3/bin/cpp-4.2 | |
| bundle install |
| verifyCmd() { | |
| for cmd in ${@}; do | |
| if [ -z "$(which $cmd)" ]; then | |
| echo "$cmd not found in PATH: $PATH" | |
| return 1 | |
| fi | |
| done | |
| } | |
| : ${GOOGLE_BUCKET_ID?"Need to set GOOGLE_BUCKET_ID"} |
| // Android app | |
| private void setupParse(Context context) { | |
| Parse.initialize(this, <PARSE_APP_ID>, <PARSE_CLIENT_KEY>); | |
| ParseInstallation.getCurrentInstallation().put("uniqueId", getWifiMacAddress(context)); | |
| ParseInstallation.getCurrentInstallation().saveInBackground(); | |
| } | |
| private String getWifiMacAddress(Context context) { | |
| WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); | |
| if (wifiManager != null && wifiManager.getConnectionInfo() != null) { |
| var originalHref = document.querySelector(".articles-show-click").href; | |
| if (originalHref != null) { | |
| location.href = originalHref; | |
| } |
| <key>UILaunchImages</key> | |
| <array> | |
| <dict> | |
| <key>UILaunchImageName</key> | |
| <string>Default</string> | |
| <key>UILaunchImageMinimumOSVersion</key> | |
| <string>7.0</string> | |
| <key>UILaunchImageOrientation</key> | |
| <string>Portrait</string> | |
| <key>UILaunchImageSize</key> |