I hereby claim:
- I am keyboardsurfer on github.
- I am keyboardsurfer (https://keybase.io/keyboardsurfer) on keybase.
- I have a public key whose fingerprint is 815B F952 DCFC C8F8 59C2 E6C1 8424 F9C1 E763 A74C
To claim this, I am signing this object:
| { | |
| "Use Non-ASCII Font" : false, | |
| "Tags" : [ | |
| ], | |
| "Ansi 12 Color" : { | |
| "Red Component" : 0.32549019607843138, | |
| "Color Space" : "sRGB", | |
| "Blue Component" : 1, | |
| "Alpha Component" : 1, |
| /* Copyright 2020 Google LLC. | |
| SPDX-License-Identifier: Apache-2.0 */ | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:dist="http://schemas.android.com/apk/distribution" | |
| package="com.google.android.samples.playcore.picture"> | |
| <uses-feature android:name="android.hardware.camera" android:required="true" /> | |
| <dist:module dist:title="@string/module_feature_picture"> |
| #!/bin/sh | |
| # Build & extract a set of apk from an aab for a specific device and install the results on it. | |
| # | |
| # This needs https://github.com/google/bundletool to be available as `bundletool`. | |
| # Also **exactly** one device needs to be connected to adb. | |
| # Usage: installFromBundle bundle.aab | |
| # optional `--extract-apks` to keep the set on your workstation as well. | |
| basename=${1%%.*} | |
| keystore="~/.android/debug.keystore" |
| git rm -r --cached && git add . |
| -Xms1G | |
| -Xmx8G | |
| -XX:MaxPermSize=4G | |
| -XX:ReservedCodeCacheSize=512m | |
| -ea | |
| -Dsun.io.useCanonCaches=false | |
| -Djava.net.preferIPv4Stack=true | |
| -Djna.nosys=true | |
| -Djna.boot.library.path= |
| # Simply add this to your .bashrc, .zshrc or .whateverrc and re-source it. | |
| # Afterwards you can use `gw` to invoke your local gradle wrapper if it exists. | |
| function gw { | |
| if [ -x "gradlew" ]; then | |
| ./gradlew $@ | |
| else | |
| gradle $@ | |
| fi | |
| } |
| android { | |
| applicationVariants.all { variant -> | |
| def flavor = variant.mergedFlavor | |
| def name = flavor.getVersionName() | |
| def versionName = name + '-' + variant.properties.get('flavorName') | |
| if (variant.buildType.isDebuggable()) { | |
| versionName += '-debug'; | |
| } | |
| flavor.versionName = versionName; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| apply plugin: "android-library" | |
| buildscript { | |
| repositories { | |
| mavenLocal() | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath 'com.android.tools.build:gradle:0.5+' |
| apply plugin: "android-library" | |
| buildscript { | |
| repositories { | |
| mavenLocal() | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath 'com.android.tools.build:gradle:0.5+' |