-
Notifications
You must be signed in to change notification settings - Fork 64
How to construct the App'.
Sylvek edited this page Oct 10, 2016
·
5 revisions
Jenkins construct deploy and store sensitive files
$> docker build . -t sylvek/jenkins
$> docker run --rm --privileged --name jenkins -p 8080:8080 -u 0 -v /Users/sylvek/Documents/docker-folder/jenkins:/var/jenkins_home sylvek/jenkins
$> echo "create a job that points to https://github.com/sylvek/itracing2.git and use the Jenkinsfile"
Fastlane construct and deploy the app'
$> fastlane android deploy keystore:${KEYSTORE_PATH} password:${KEYSTORE_PASSWORD}
$> echo "you have to deliver a keystore file and a json key file"
Gradle construct the app'
$> ./gradlew assembleRelease -Pkeystore=${KEYSTORE_PATH} -Ppassword=${KEYSTORE_PASSWORD}