Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context.
Fixed #issue
Please delete options that are not relevant.
| # Overall config | |
| dist: xenial | |
| language: android | |
| # Android version config | |
| android: | |
| components: | |
| - build-tools-28.0.3 | |
| - android-28 |
| private rule Macho | |
| { | |
| meta: | |
| description = "private rule to match Mach-O binaries (copied from Apple's XProtect)" | |
| condition: | |
| uint32(0) == 0xfeedface or uint32(0) == 0xcefaedfe or uint32(0) == 0xfeedfacf or uint32(0) == 0xcffaedfe or uint32(0) == 0xcafebabe or uint32(0) == 0xbebafeca | |
| } | |
| rule ZoomDaemon | |
| { |
| #!/usr/bin/env bash | |
| # Accept licenses | |
| ${ANDROID_HOME}/tools/bin/sdkmanager --licenses | |
| # Install dependencies | |
| ./gradlew androidDependencies || true |
| # Customise this file, documentation can be found here: | |
| # https://github.com/fastlane/fastlane/tree/master/fastlane/docs | |
| # All available actions: https://docs.fastlane.tools/actions | |
| # can also be listed using the `fastlane actions` command | |
| # Change the syntax highlighting to Ruby | |
| # All lines starting with a # are ignored when running `fastlane` | |
| # If you want to automatically update fastlane if a new version is available: | |
| # update_fastlane |
| def versionPropsFile = file('version.properties') | |
| if (versionPropsFile.canRead()) { | |
| Properties versionProps = new Properties() | |
| versionProps.load(new FileInputStream(versionPropsFile)) | |
| def code = versionProps['VERSION_CODE'].toInteger() + 1 | |
| def name = versionProps['VERSION_NAME'] |
| /* | |
| * Copyright (c) 2018. Uber Technologies | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| #!/usr/bin/env NODE_NO_WARNINGS=1 node | |
| const { google } = require('googleapis'); | |
| const Promise = require('bluebird'); | |
| const fs = require('fs'); | |
| const settings = require('./config/settings.json'); | |
| const { version } = require('./package.json'); | |
| // Enable API access into the Developer Console: https://play.google.com/apps/publish/?account=7639196906174529268#ApiAccessPlace |
| version: 2 | |
| reference: | |
| ## Constants | |
| gradle_cache_path: &gradle_cache_path | |
| gradle_cache-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} | |
| workspace: &workspace | |
| ~/src | |
| ## Configurations | |
| android_config: &android_config | |
| working_directory: *workspace |
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context.
Fixed #issue
Please delete options that are not relevant.
| <?xml version="1.0" encoding="utf-8"?> | |
| <shape android:shape="rectangle" | |
| xmlns:android="http://schemas.android.com/apk/res/android" > | |
| <gradient android:angle="0" | |
| android:startColor="#3d98ff" | |
| android:endColor="#005ec9"/> | |
| </shape> |