一覧性、検索性をあげるために前方から絞り込みやすくしたい
- 小文字アルファベット +
_で。
| FROM ubuntu:16.04 | |
| RUN apt-get update -y && apt-get upgrade -y && \ | |
| apt-get install -y openjdk-8-jre openjdk-8-jdk lib32stdc++6 lib32z1 wget git | |
| RUN cd && wget https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz && tar -zxvf android-sdk_r24.4.1-linux.tgz && \ | |
| /root/android-sdk-linux/tools/android list sdk -a -e && \ | |
| echo y | /root/android-sdk-linux/tools/android update sdk -a -u -t build-tools-23.0.1,build-tools-22.0.1,build-tools-19.1.0,android-16,android-19,android-21,android-22,android-23,extra-android-support,extra-android-m2repository,extra-google-m2repository,extra-google-google_play_services | |
| ENV ANDROID_HOME /root/android-sdk-linux | |
| COPY app-build.sh /root/ | |
| COPY netrc /root/.netrc |
| ### Build Configuration | |
| WORKSPACE=**** | |
| PROJECT_WORKSPACE=**** | |
| BUILD_NUMBER=**** | |
| SCHEME=**** | |
| CONFIGURATION=**** | |
| PROVISIONING_NAME=**** | |
| IPA_FILE_NAME=****.ipa | |
| iOS_SDK=**** | |
| PASS=**** |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="/bootstrap/dist/css/bootstrap.min.css"> | |
| <link rel="stylesheet" href="/bootstrap/dist/css/bootstrap-theme.min.css"> | |
| </head> | |
| <header> |
| import json | |
| import os.path | |
| import sys | |
| import os | |
| # boto3のバージョンが古いためカレントディレクトリにインストールしたboto3を利用する | |
| # pip install -t boto3 . | |
| root = os.environ["LAMBDA_TASK_ROOT"] | |
| sys.path.insert(0, root) | |
| import boto3 |
| - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { | |
| return 1; | |
| } | |
| - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { | |
| return [self.items count]; | |
| } | |
| - (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath { |